From 80df25b640ffe91425f3af6b2197552bda7b1739 Mon Sep 17 00:00:00 2001 From: propelluo Date: Mon, 21 Jul 2025 15:38:01 +0800 Subject: [PATCH 1/9] add submodule tst-open-ltp Signed-off-by: propelluo --- .gitmodules | 3 +++ testcase/Makefile | 3 +++ tst-open-ltp | 1 + 3 files changed, 7 insertions(+) create mode 160000 tst-open-ltp diff --git a/.gitmodules b/.gitmodules index dbfb31c..30e5a56 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "common"] path = common url = https://gitee.com/opencloudos-testing/tsuite.git +[submodule "tst-open-ltp"] + path = tst-open-ltp + url = https://gitee.com/opencloudos-testing/tst-open-ltp.git diff --git a/testcase/Makefile b/testcase/Makefile index 1b4db5b..871d440 100644 --- a/testcase/Makefile +++ b/testcase/Makefile @@ -8,6 +8,7 @@ LDFLAGS += LDFLAGS += all: $(ALL_BIN) + ../tst-open-ltp/ltp/tst_build.sh $(ALL_BIN):%.test:%.o $(CC) $^ -o $@ $(LDFLAGS) @@ -17,5 +18,7 @@ $(ALL_OBJ):%.o:%.c clean: rm -rfv $(ALL_OBJ) $(ALL_BIN) + make -C ../tst-open-ltp/ltp clean + rm -rfv ../tst-open-ltp/ltp.install cleanall: clean diff --git a/tst-open-ltp b/tst-open-ltp new file mode 160000 index 0000000..612788d --- /dev/null +++ b/tst-open-ltp @@ -0,0 +1 @@ +Subproject commit 612788d7c6c7744cb57274133a38dc20f312421e -- Gitee From 1d438dcc318ed9d7416cbcec6b2db3addb70bf60 Mon Sep 17 00:00:00 2001 From: propelluo Date: Mon, 21 Jul 2025 16:54:35 +0800 Subject: [PATCH 2/9] update ts_commom.sh Signed-off-by: propelluo --- lib/ts_common.sh | 136 +++++++++++++++++++++++++++++++++++++++++++++- testcase/Makefile | 1 + 2 files changed, 136 insertions(+), 1 deletion(-) diff --git a/lib/ts_common.sh b/lib/ts_common.sh index 6ef4aa8..1c83669 100644 --- a/lib/ts_common.sh +++ b/lib/ts_common.sh @@ -4,13 +4,147 @@ # 1、以下划线"_"开头的函数和变量用例不能直接调用 # 2、环境变量全大写,全局变量加上"g_"前置,局部变量统一加"local"修饰 +g_test_dir="${TST_TS_TOPDIR}/ltp.test" +g_install_dir="${TST_TS_TOPDIR}/tst-open-ltp/ltp.install" + +ts_setup() { + msg "this is ts_setup" + + # 安装测试所需但缺失的软件包 + yum -y install libaio* + yum -y install libcap* + yum -y install genisoimage + yum -y install iproute-tc* + yum -y install dnsmasq* + yum -y install rpcbind nfs-utils bind + yum -y install httpd* + yum -y install vsftpd + yum -y install libmnl* + yum -y install dhcp* + yum -y install telnet* + yum -y install libcap* + yum -y install acl-debugsource libacl-devel + yum -y install git + yum -y install gcc cmake automake autoconf + yum -y install vim + + # 启动测试所需的服务 + systemctl start nfs-server.service + systemctl enable nfs-server.service + + # 设置机器超时时间 + setup_env_var LTP_TIMEOUT_MUL "300" + + # 创建scsi用例所需路径 + mkdir -p /test/growfiles + return 0 +} + tc_setup_common() { - msg "this is tc_setup_common" + msg "this is tc_setup_common" + echo "===== env start =====" + env + echo "===== env end =====" return 0 } tc_teardown_common() { msg "this is tc_teardown_common" + echo 100 > /proc/sys/vm/vfs_cache_pressure return 0 } +# 判断ltp用例执行结果是否skip +# $1 -- 执行结果路径 +# 返回值:0 -- skip,1 -- 非skip +is_test_skip(){ + local run_path="$1" + + grep -A 5 "^Summary:" "$run_path/testcase.log" | grep "^failed[[:blank:]]*[1-9]$" && return 1 +} + +# 执行ltp用例 +# $1 -- 用例所在文件 +# $2 -- 用例名称 +ltp_run_testcase(){ + local ret=0 + local ltp_ret=0 + local run_flag=0 + local case_file=$1 + local case_name=$2 + + local tst_block=/dev/vdb + if [ -n "$TST_DEVICE_BLOCK" ] && [ -b "$TST_DEVICE_BLOCK" ]; then + tst_block="$TST_DEVICE_BLOCK" + elif [ ! -b "$tst_block" ]; then + for b in $(lsblk -f | grep -v NAME | grep -v "/" | grep "^nvme\|^vd\|^sd" | awk '{print $1}'); do + fdisk -l "/dev/$b" | grep -i "Start[[:blank:]]*End" && continue + tst_block="/dev/$b" + break + done + if [ ! -b "$tst_block" ]; then + dd if=/dev/zero of="${g_test_dir}/floppy.img" bs=1M count=1024 + losetup /dev/loop1 "${g_test_dir}/floppy.img" + tst_block="/dev/loop1" + fi + fi + msg "tst_block=$tst_block" + skip_if_false [ -b "$tst_block" ] + + rm -rf "${g_test_dir}/run" + mkdir -p "${g_test_dir}/run/tmp" + cd "${g_install_dir}" + # 将用例对应的命令写入文件 + if ! cat "${g_install_dir}"/runtest/$case_file | grep "^$case_name[[:blank:]]"; then + echo "get command for testcase $case_name fail" + return 1 + fi + cat "${g_install_dir}"/runtest/* | grep -w "^$case_name" > "${g_test_dir}/run/testcase.run" + echo "testcase.run >>>>" + cat "${g_test_dir}/run/testcase.run" + echo "<<<< testcase.run" + + # 执行用例 + ./runltp -p \ + -C "${g_test_dir}/run/testcase.fail" \ + -T "${g_test_dir}/run/testcase.nofully" \ + -d "${g_test_dir}/run/tmp" \ + -f "${g_test_dir}/run/testcase.run" \ + -l "${g_test_dir}/run/testcase.result" \ + -o "${g_test_dir}/run/testcase.log" \ + -B "ext4" \ + -z "$tst_block" -Z ext4 + ltp_ret=$? + msg "runltp exit with code $ltp_ret" + if [ $ltp_ret -ne 0 ]; then + ret=1 + fi + + # 打印测试日志 + for f in testcase.fail testcase.nofully testcase.run testcase.result testcase.log; do + echo "=====[ show ${g_test_dir}/run/$f ]=====" + [ -f "${g_test_dir}/run/$f" ] && cat "${g_test_dir}/run/$f" + echo "=====[ show ${g_test_dir}/run/$f ]=====" + done + + if [ $ret -ne 0 ]; then + # 用例如果失败了,就把内核日志也一起打印出来 + echo "====[ show ${g_test_dir}/run/dmesg.lasg.log ]====" + [ -f "${g_test_dir}/run/dmesg.lasg.log" ] && cat "${g_test_dir}/run/dmesg.lasg.log" + echo "====[ dmesg -c ]====" + dmesg -c + fi + + # 检查执行结果 + echo "check ${g_test_dir}/run/testcase.fail" + [ $(cat "${g_test_dir}/run/testcase.fail" | wc -l) -ne 0 ] && { echo "some testcase fail"; ret=1; } + + local ltp_total=$(grep "Total Tests:" "${g_test_dir}/run/testcase.result" | awk '{print $NF}') + local ltp_skip=$(grep "Total Skipped Tests:" "${g_test_dir}/run/testcase.result" | awk '{print $NF}') + if [ "$ltp_total" == "$ltp_skip" ]; then + skip_test "all test skip" + fi + + return $ret +} + diff --git a/testcase/Makefile b/testcase/Makefile index 871d440..8d80216 100644 --- a/testcase/Makefile +++ b/testcase/Makefile @@ -20,5 +20,6 @@ clean: rm -rfv $(ALL_OBJ) $(ALL_BIN) make -C ../tst-open-ltp/ltp clean rm -rfv ../tst-open-ltp/ltp.install + rm -rfv ../ltp.test cleanall: clean -- Gitee From c442990df3e0346ee46adfc93849f1cdca04cca5 Mon Sep 17 00:00:00 2001 From: propelluo Date: Mon, 21 Jul 2025 17:22:30 +0800 Subject: [PATCH 3/9] add old version testcase Signed-off-by: propelluo --- testcase/Makefile | 2 +- testcase/can/ltp.can.can_bcm01.sh | 41 +++++++++++++++ testcase/can/ltp.can.can_filter.sh | 41 +++++++++++++++ testcase/can/ltp.can.can_rcv_own_msgs.sh | 41 +++++++++++++++ .../capability/ltp.capability.cap_bounds.sh | 52 +++++++++++++++++++ .../ltp.capability.check_keepcaps01.sh | 52 +++++++++++++++++++ .../ltp.capability.check_keepcaps02.sh | 52 +++++++++++++++++++ .../ltp.capability.check_keepcaps03.sh | 52 +++++++++++++++++++ .../capability/ltp.capability.filecaps.sh | 52 +++++++++++++++++++ testcase/commands/ltp.commands.ar_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.cp01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.cpio01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.df01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.du01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.file01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.gdb01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.gzip01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.insmod01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.keyctl01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.ld01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.ldd01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.ln01_sh.sh | 41 +++++++++++++++ .../commands/ltp.commands.logrotate_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.lsmod01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.mkdir01_sh.sh | 41 +++++++++++++++ .../commands/ltp.commands.mkfs01_btrfs_sh.sh | 41 +++++++++++++++ .../commands/ltp.commands.mkfs01_ext2_sh.sh | 41 +++++++++++++++ .../commands/ltp.commands.mkfs01_ext3_sh.sh | 41 +++++++++++++++ .../commands/ltp.commands.mkfs01_ext4_sh.sh | 41 +++++++++++++++ .../commands/ltp.commands.mkfs01_minix_sh.sh | 41 +++++++++++++++ .../commands/ltp.commands.mkfs01_msdos_sh.sh | 41 +++++++++++++++ .../commands/ltp.commands.mkfs01_ntfs_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.mkfs01_sh.sh | 41 +++++++++++++++ .../commands/ltp.commands.mkfs01_vfat_sh.sh | 41 +++++++++++++++ .../commands/ltp.commands.mkfs01_xfs_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.mkswap01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.mv01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.nm01_sh.sh | 41 +++++++++++++++ .../commands/ltp.commands.shell_test01.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.sysctl01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.sysctl02_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.tar01_sh.sh | 41 +++++++++++++++ .../commands/ltp.commands.unshare01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.unzip01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.wc01_sh.sh | 41 +++++++++++++++ testcase/commands/ltp.commands.which01_sh.sh | 41 +++++++++++++++ .../ltp.containers.clock_gettime03.sh | 41 +++++++++++++++ .../ltp.containers.clock_nanosleep03.sh | 41 +++++++++++++++ .../ltp.containers.mesgq_nstest_clone.sh | 41 +++++++++++++++ .../ltp.containers.mesgq_nstest_none.sh | 41 +++++++++++++++ .../ltp.containers.mesgq_nstest_unshare.sh | 41 +++++++++++++++ .../containers/ltp.containers.mountns01.sh | 41 +++++++++++++++ .../containers/ltp.containers.mountns02.sh | 41 +++++++++++++++ .../containers/ltp.containers.mountns03.sh | 41 +++++++++++++++ .../containers/ltp.containers.mountns04.sh | 41 +++++++++++++++ testcase/containers/ltp.containers.mqns_01.sh | 41 +++++++++++++++ .../ltp.containers.mqns_01_clone.sh | 41 +++++++++++++++ .../ltp.containers.mqns_01_unshare.sh | 52 +++++++++++++++++++ testcase/containers/ltp.containers.mqns_02.sh | 41 +++++++++++++++ .../ltp.containers.mqns_02_clone.sh | 41 +++++++++++++++ .../ltp.containers.mqns_02_unshare.sh | 52 +++++++++++++++++++ .../ltp.containers.mqns_03_clone.sh | 41 +++++++++++++++ .../ltp.containers.mqns_03_unshare.sh | 52 +++++++++++++++++++ .../ltp.containers.mqns_04_clone.sh | 41 +++++++++++++++ .../ltp.containers.mqns_04_unshare.sh | 52 +++++++++++++++++++ .../containers/ltp.containers.msg_comm.sh | 41 +++++++++++++++ ....containers.netns_breakns_ip_ipv4_ioctl.sh | 41 +++++++++++++++ ...ontainers.netns_breakns_ip_ipv4_netlink.sh | 41 +++++++++++++++ ....containers.netns_breakns_ip_ipv6_ioctl.sh | 41 +++++++++++++++ ...ontainers.netns_breakns_ip_ipv6_netlink.sh | 41 +++++++++++++++ ...ainers.netns_breakns_ns_exec_ipv4_ioctl.sh | 41 +++++++++++++++ ...ners.netns_breakns_ns_exec_ipv4_netlink.sh | 41 +++++++++++++++ ...ainers.netns_breakns_ns_exec_ipv6_ioctl.sh | 41 +++++++++++++++ ...ners.netns_breakns_ns_exec_ipv6_netlink.sh | 41 +++++++++++++++ ...ltp.containers.netns_comm_ip_ipv4_ioctl.sh | 41 +++++++++++++++ ...p.containers.netns_comm_ip_ipv4_netlink.sh | 41 +++++++++++++++ ...ltp.containers.netns_comm_ip_ipv6_ioctl.sh | 41 +++++++++++++++ ...p.containers.netns_comm_ip_ipv6_netlink.sh | 41 +++++++++++++++ ...ontainers.netns_comm_ns_exec_ipv4_ioctl.sh | 41 +++++++++++++++ ...tainers.netns_comm_ns_exec_ipv4_netlink.sh | 41 +++++++++++++++ ...ontainers.netns_comm_ns_exec_ipv6_ioctl.sh | 41 +++++++++++++++ ...tainers.netns_comm_ns_exec_ipv6_netlink.sh | 41 +++++++++++++++ .../ltp.containers.netns_netlink.sh | 41 +++++++++++++++ .../containers/ltp.containers.netns_sysfs.sh | 41 +++++++++++++++ testcase/containers/ltp.containers.pidns01.sh | 41 +++++++++++++++ testcase/containers/ltp.containers.pidns02.sh | 41 +++++++++++++++ testcase/containers/ltp.containers.pidns03.sh | 41 +++++++++++++++ testcase/containers/ltp.containers.pidns04.sh | 41 +++++++++++++++ testcase/containers/ltp.containers.pidns05.sh | 41 +++++++++++++++ testcase/containers/ltp.containers.pidns06.sh | 41 +++++++++++++++ testcase/containers/ltp.containers.pidns10.sh | 41 +++++++++++++++ testcase/containers/ltp.containers.pidns12.sh | 41 +++++++++++++++ testcase/containers/ltp.containers.pidns13.sh | 41 +++++++++++++++ testcase/containers/ltp.containers.pidns16.sh | 41 +++++++++++++++ testcase/containers/ltp.containers.pidns17.sh | 41 +++++++++++++++ testcase/containers/ltp.containers.pidns20.sh | 41 +++++++++++++++ testcase/containers/ltp.containers.pidns30.sh | 41 +++++++++++++++ testcase/containers/ltp.containers.pidns31.sh | 41 +++++++++++++++ testcase/containers/ltp.containers.pidns32.sh | 41 +++++++++++++++ .../containers/ltp.containers.sem_comm.sh | 41 +++++++++++++++ .../ltp.containers.sem_nstest_clone.sh | 41 +++++++++++++++ .../ltp.containers.sem_nstest_none.sh | 41 +++++++++++++++ .../ltp.containers.sem_nstest_unshare.sh | 41 +++++++++++++++ .../ltp.containers.semtest_2ns_clone.sh | 41 +++++++++++++++ .../ltp.containers.semtest_2ns_none.sh | 41 +++++++++++++++ .../ltp.containers.semtest_2ns_unshare.sh | 41 +++++++++++++++ .../containers/ltp.containers.shm_comm.sh | 41 +++++++++++++++ .../ltp.containers.shmem_2nstest_clone.sh | 41 +++++++++++++++ .../ltp.containers.shmem_2nstest_none.sh | 41 +++++++++++++++ .../ltp.containers.shmem_2nstest_unshare.sh | 41 +++++++++++++++ .../ltp.containers.shmnstest_clone.sh | 41 +++++++++++++++ .../ltp.containers.shmnstest_none.sh | 41 +++++++++++++++ .../ltp.containers.shmnstest_unshare.sh | 41 +++++++++++++++ .../containers/ltp.containers.sysinfo03.sh | 41 +++++++++++++++ .../containers/ltp.containers.timens01.sh | 41 +++++++++++++++ .../containers/ltp.containers.timerfd04.sh | 41 +++++++++++++++ .../containers/ltp.containers.userns01.sh | 41 +++++++++++++++ .../containers/ltp.containers.userns02.sh | 41 +++++++++++++++ .../containers/ltp.containers.userns03.sh | 41 +++++++++++++++ .../containers/ltp.containers.userns04.sh | 41 +++++++++++++++ .../containers/ltp.containers.userns05.sh | 41 +++++++++++++++ .../containers/ltp.containers.userns06.sh | 41 +++++++++++++++ .../containers/ltp.containers.userns07.sh | 41 +++++++++++++++ .../containers/ltp.containers.userns08.sh | 41 +++++++++++++++ .../containers/ltp.containers.utsname01.sh | 41 +++++++++++++++ .../containers/ltp.containers.utsname02.sh | 41 +++++++++++++++ .../ltp.containers.utsname03_clone.sh | 41 +++++++++++++++ .../ltp.containers.utsname03_unshare.sh | 41 +++++++++++++++ .../ltp.containers.utsname04_clone.sh | 41 +++++++++++++++ .../ltp.containers.utsname04_unshare.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.cgroup.sh | 42 +++++++++++++++ .../ltp.controllers.cgroup_core01.sh | 41 +++++++++++++++ .../ltp.controllers.cgroup_core02.sh | 41 +++++++++++++++ .../ltp.controllers.cgroup_core03.sh | 41 +++++++++++++++ ...tp.controllers.cgroup_fj_function_blkio.sh | 41 +++++++++++++++ .../ltp.controllers.cgroup_fj_function_cpu.sh | 41 +++++++++++++++ ....controllers.cgroup_fj_function_cpuacct.sh | 41 +++++++++++++++ ...p.controllers.cgroup_fj_function_cpuset.sh | 41 +++++++++++++++ ...tp.controllers.cgroup_fj_function_debug.sh | 41 +++++++++++++++ ....controllers.cgroup_fj_function_devices.sh | 41 +++++++++++++++ ....controllers.cgroup_fj_function_freezer.sh | 41 +++++++++++++++ ....controllers.cgroup_fj_function_hugetlb.sh | 41 +++++++++++++++ ...p.controllers.cgroup_fj_function_memory.sh | 41 +++++++++++++++ ....controllers.cgroup_fj_function_net_cls.sh | 41 +++++++++++++++ ...controllers.cgroup_fj_function_net_prio.sh | 41 +++++++++++++++ ...ntrollers.cgroup_fj_function_perf_event.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_blkio_10_3_each.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_blkio_10_3_none.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_blkio_10_3_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_blkio_1_200_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_blkio_1_200_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_blkio_1_200_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_blkio_200_1_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_blkio_200_1_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_blkio_200_1_one.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_blkio_2_2_each.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_blkio_2_2_none.sh | 41 +++++++++++++++ ...trollers.cgroup_fj_stress_blkio_2_2_one.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_blkio_2_9_each.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_blkio_2_9_none.sh | 41 +++++++++++++++ ...trollers.cgroup_fj_stress_blkio_2_9_one.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_blkio_3_3_each.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_blkio_3_3_none.sh | 41 +++++++++++++++ ...trollers.cgroup_fj_stress_blkio_3_3_one.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_blkio_4_4_each.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_blkio_4_4_none.sh | 41 +++++++++++++++ ...trollers.cgroup_fj_stress_blkio_4_4_one.sh | 41 +++++++++++++++ ...trollers.cgroup_fj_stress_cpu_10_3_each.sh | 41 +++++++++++++++ ...trollers.cgroup_fj_stress_cpu_10_3_none.sh | 41 +++++++++++++++ ...ntrollers.cgroup_fj_stress_cpu_10_3_one.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_cpu_1_200_each.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_cpu_1_200_none.sh | 41 +++++++++++++++ ...trollers.cgroup_fj_stress_cpu_1_200_one.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_cpu_200_1_each.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_cpu_200_1_none.sh | 41 +++++++++++++++ ...trollers.cgroup_fj_stress_cpu_200_1_one.sh | 41 +++++++++++++++ ...ntrollers.cgroup_fj_stress_cpu_2_2_each.sh | 41 +++++++++++++++ ...ntrollers.cgroup_fj_stress_cpu_2_2_none.sh | 41 +++++++++++++++ ...ontrollers.cgroup_fj_stress_cpu_2_2_one.sh | 41 +++++++++++++++ ...ntrollers.cgroup_fj_stress_cpu_2_9_each.sh | 41 +++++++++++++++ ...ntrollers.cgroup_fj_stress_cpu_2_9_none.sh | 41 +++++++++++++++ ...ontrollers.cgroup_fj_stress_cpu_2_9_one.sh | 41 +++++++++++++++ ...ntrollers.cgroup_fj_stress_cpu_3_3_each.sh | 41 +++++++++++++++ ...ntrollers.cgroup_fj_stress_cpu_3_3_none.sh | 41 +++++++++++++++ ...ontrollers.cgroup_fj_stress_cpu_3_3_one.sh | 41 +++++++++++++++ ...ntrollers.cgroup_fj_stress_cpu_4_4_each.sh | 41 +++++++++++++++ ...ntrollers.cgroup_fj_stress_cpu_4_4_none.sh | 41 +++++++++++++++ ...ontrollers.cgroup_fj_stress_cpu_4_4_one.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_cpuacct_10_3_each.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_cpuacct_10_3_none.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_cpuacct_10_3_one.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_cpuacct_1_200_each.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_cpuacct_1_200_none.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_cpuacct_1_200_one.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_cpuacct_200_1_each.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_cpuacct_200_1_none.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_cpuacct_200_1_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_cpuacct_2_2_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_cpuacct_2_2_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_cpuacct_2_2_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_cpuacct_2_9_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_cpuacct_2_9_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_cpuacct_2_9_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_cpuacct_3_3_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_cpuacct_3_3_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_cpuacct_3_3_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_cpuacct_4_4_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_cpuacct_4_4_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_cpuacct_4_4_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_cpuset_10_3_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_cpuset_10_3_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_cpuset_10_3_one.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_cpuset_1_200_each.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_cpuset_1_200_none.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_cpuset_1_200_one.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_cpuset_200_1_each.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_cpuset_200_1_none.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_cpuset_200_1_one.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_cpuset_2_2_each.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_cpuset_2_2_none.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_cpuset_2_2_one.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_cpuset_2_9_each.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_cpuset_2_9_none.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_cpuset_2_9_one.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_cpuset_3_3_each.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_cpuset_3_3_none.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_cpuset_3_3_one.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_cpuset_4_4_each.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_cpuset_4_4_none.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_cpuset_4_4_one.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_debug_10_3_each.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_debug_10_3_none.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_debug_10_3_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_debug_1_200_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_debug_1_200_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_debug_1_200_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_debug_200_1_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_debug_200_1_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_debug_200_1_one.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_debug_2_2_each.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_debug_2_2_none.sh | 41 +++++++++++++++ ...trollers.cgroup_fj_stress_debug_2_2_one.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_debug_2_9_each.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_debug_2_9_none.sh | 41 +++++++++++++++ ...trollers.cgroup_fj_stress_debug_2_9_one.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_debug_3_3_each.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_debug_3_3_none.sh | 41 +++++++++++++++ ...trollers.cgroup_fj_stress_debug_3_3_one.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_debug_4_4_each.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_debug_4_4_none.sh | 41 +++++++++++++++ ...trollers.cgroup_fj_stress_debug_4_4_one.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_devices_10_3_each.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_devices_10_3_none.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_devices_10_3_one.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_devices_1_200_each.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_devices_1_200_none.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_devices_1_200_one.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_devices_200_1_each.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_devices_200_1_none.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_devices_200_1_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_devices_2_2_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_devices_2_2_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_devices_2_2_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_devices_2_9_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_devices_2_9_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_devices_2_9_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_devices_3_3_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_devices_3_3_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_devices_3_3_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_devices_4_4_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_devices_4_4_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_devices_4_4_one.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_freezer_10_3_each.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_freezer_10_3_none.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_freezer_10_3_one.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_freezer_1_200_each.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_freezer_1_200_none.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_freezer_1_200_one.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_freezer_200_1_each.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_freezer_200_1_none.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_freezer_200_1_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_freezer_2_2_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_freezer_2_2_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_freezer_2_2_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_freezer_2_9_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_freezer_2_9_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_freezer_2_9_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_freezer_3_3_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_freezer_3_3_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_freezer_3_3_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_freezer_4_4_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_freezer_4_4_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_freezer_4_4_one.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_hugetlb_10_3_each.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_hugetlb_10_3_none.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_hugetlb_10_3_one.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_hugetlb_1_200_each.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_hugetlb_1_200_none.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_hugetlb_1_200_one.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_hugetlb_200_1_each.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_hugetlb_200_1_none.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_hugetlb_200_1_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_hugetlb_2_2_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_hugetlb_2_2_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_hugetlb_2_2_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_hugetlb_2_9_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_hugetlb_2_9_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_hugetlb_2_9_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_hugetlb_3_3_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_hugetlb_3_3_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_hugetlb_3_3_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_hugetlb_4_4_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_hugetlb_4_4_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_hugetlb_4_4_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_memory_10_3_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_memory_10_3_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_memory_10_3_one.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_memory_1_200_each.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_memory_1_200_none.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_memory_1_200_one.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_memory_200_1_each.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_memory_200_1_none.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_memory_200_1_one.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_memory_2_2_each.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_memory_2_2_none.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_memory_2_2_one.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_memory_2_9_each.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_memory_2_9_none.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_memory_2_9_one.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_memory_3_3_each.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_memory_3_3_none.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_memory_3_3_one.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_memory_4_4_each.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_memory_4_4_none.sh | 41 +++++++++++++++ ...rollers.cgroup_fj_stress_memory_4_4_one.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_net_cls_10_3_each.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_net_cls_10_3_none.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_net_cls_10_3_one.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_net_cls_1_200_each.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_net_cls_1_200_none.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_net_cls_1_200_one.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_net_cls_200_1_each.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_net_cls_200_1_none.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_net_cls_200_1_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_net_cls_2_2_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_net_cls_2_2_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_net_cls_2_2_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_net_cls_2_9_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_net_cls_2_9_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_net_cls_2_9_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_net_cls_3_3_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_net_cls_3_3_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_net_cls_3_3_one.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_net_cls_4_4_each.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_net_cls_4_4_none.sh | 41 +++++++++++++++ ...ollers.cgroup_fj_stress_net_cls_4_4_one.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_net_prio_10_3_each.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_net_prio_10_3_none.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_net_prio_10_3_one.sh | 41 +++++++++++++++ ...rs.cgroup_fj_stress_net_prio_1_200_each.sh | 41 +++++++++++++++ ...rs.cgroup_fj_stress_net_prio_1_200_none.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_net_prio_1_200_one.sh | 41 +++++++++++++++ ...rs.cgroup_fj_stress_net_prio_200_1_each.sh | 41 +++++++++++++++ ...rs.cgroup_fj_stress_net_prio_200_1_none.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_net_prio_200_1_one.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_net_prio_2_2_each.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_net_prio_2_2_none.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_net_prio_2_2_one.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_net_prio_2_9_each.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_net_prio_2_9_none.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_net_prio_2_9_one.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_net_prio_3_3_each.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_net_prio_3_3_none.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_net_prio_3_3_one.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_net_prio_4_4_each.sh | 41 +++++++++++++++ ...lers.cgroup_fj_stress_net_prio_4_4_none.sh | 41 +++++++++++++++ ...llers.cgroup_fj_stress_net_prio_4_4_one.sh | 41 +++++++++++++++ ...s.cgroup_fj_stress_perf_event_10_3_each.sh | 41 +++++++++++++++ ...s.cgroup_fj_stress_perf_event_10_3_none.sh | 41 +++++++++++++++ ...rs.cgroup_fj_stress_perf_event_10_3_one.sh | 41 +++++++++++++++ ....cgroup_fj_stress_perf_event_1_200_each.sh | 41 +++++++++++++++ ....cgroup_fj_stress_perf_event_1_200_none.sh | 41 +++++++++++++++ ...s.cgroup_fj_stress_perf_event_1_200_one.sh | 41 +++++++++++++++ ....cgroup_fj_stress_perf_event_200_1_each.sh | 41 +++++++++++++++ ....cgroup_fj_stress_perf_event_200_1_none.sh | 41 +++++++++++++++ ...s.cgroup_fj_stress_perf_event_200_1_one.sh | 41 +++++++++++++++ ...rs.cgroup_fj_stress_perf_event_2_2_each.sh | 41 +++++++++++++++ ...rs.cgroup_fj_stress_perf_event_2_2_none.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_perf_event_2_2_one.sh | 41 +++++++++++++++ ...rs.cgroup_fj_stress_perf_event_2_9_each.sh | 41 +++++++++++++++ ...rs.cgroup_fj_stress_perf_event_2_9_none.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_perf_event_2_9_one.sh | 41 +++++++++++++++ ...rs.cgroup_fj_stress_perf_event_3_3_each.sh | 41 +++++++++++++++ ...rs.cgroup_fj_stress_perf_event_3_3_none.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_perf_event_3_3_one.sh | 41 +++++++++++++++ ...rs.cgroup_fj_stress_perf_event_4_4_each.sh | 41 +++++++++++++++ ...rs.cgroup_fj_stress_perf_event_4_4_none.sh | 41 +++++++++++++++ ...ers.cgroup_fj_stress_perf_event_4_4_one.sh | 41 +++++++++++++++ .../ltp.controllers.cgroup_xattr.sh | 41 +++++++++++++++ .../ltp.controllers.controllers.sh | 41 +++++++++++++++ .../ltp.controllers.cpuacct_100_1.sh | 41 +++++++++++++++ .../ltp.controllers.cpuacct_100_100.sh | 42 +++++++++++++++ .../ltp.controllers.cpuacct_10_10.sh | 41 +++++++++++++++ .../ltp.controllers.cpuacct_1_1.sh | 41 +++++++++++++++ .../ltp.controllers.cpuacct_1_10.sh | 41 +++++++++++++++ .../ltp.controllers.cpuacct_1_100.sh | 41 +++++++++++++++ .../ltp.controllers.cpuset_base_ops.sh | 41 +++++++++++++++ .../ltp.controllers.cpuset_exclusive.sh | 41 +++++++++++++++ .../ltp.controllers.cpuset_hierarchy.sh | 41 +++++++++++++++ .../ltp.controllers.cpuset_hotplug.sh | 41 +++++++++++++++ .../ltp.controllers.cpuset_inherit.sh | 41 +++++++++++++++ .../ltp.controllers.cpuset_load_balance.sh | 41 +++++++++++++++ .../ltp.controllers.cpuset_memory.sh | 41 +++++++++++++++ .../ltp.controllers.cpuset_memory_pressure.sh | 41 +++++++++++++++ .../ltp.controllers.cpuset_memory_spread.sh | 41 +++++++++++++++ .../ltp.controllers.cpuset_regression_test.sh | 41 +++++++++++++++ .../ltp.controllers.cpuset_sched_domains.sh | 41 +++++++++++++++ .../ltp.controllers.cpuset_syscall.sh | 41 +++++++++++++++ .../ltp.controllers.io_control01.sh | 41 +++++++++++++++ .../ltp.controllers.memcg_control.sh | 41 +++++++++++++++ .../ltp.controllers.memcg_failcnt.sh | 41 +++++++++++++++ .../ltp.controllers.memcg_force_empty.sh | 41 +++++++++++++++ .../ltp.controllers.memcg_limit_in_bytes.sh | 42 +++++++++++++++ ...tp.controllers.memcg_max_usage_in_bytes.sh | 41 +++++++++++++++ ....controllers.memcg_memsw_limit_in_bytes.sh | 41 +++++++++++++++ ...trollers.memcg_move_charge_at_immigrate.sh | 41 +++++++++++++++ .../ltp.controllers.memcg_regression.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.memcg_stat.sh | 41 +++++++++++++++ .../ltp.controllers.memcg_stat_rss.sh | 41 +++++++++++++++ .../ltp.controllers.memcg_stress.sh | 42 +++++++++++++++ .../ltp.controllers.memcg_subgroup_charge.sh | 41 +++++++++++++++ .../ltp.controllers.memcg_test_3.sh | 41 +++++++++++++++ .../ltp.controllers.memcg_usage_in_bytes.sh | 41 +++++++++++++++ .../ltp.controllers.memcg_use_hierarchy.sh | 41 +++++++++++++++ .../ltp.controllers.memcontrol01.sh | 41 +++++++++++++++ .../ltp.controllers.memcontrol02.sh | 41 +++++++++++++++ .../ltp.controllers.memcontrol03.sh | 41 +++++++++++++++ .../ltp.controllers.memcontrol04.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_1_1.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_1_10.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_1_100.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_1_2.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_1_50.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_2_1.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_2_10.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_2_100.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_2_2.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_2_50.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_3_0.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_3_1.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_3_10.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_3_100.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_3_50.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_4_1.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_4_10.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_4_100.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_4_2.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_4_50.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_5_1.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_6_1.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_6_10.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_6_100.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_6_2.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_6_50.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_7_10.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_7_100.sh | 41 +++++++++++++++ .../ltp.controllers.pids_7_1000.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_7_50.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_7_500.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_8_10.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_8_100.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_8_2.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_8_50.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_9_10.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_9_100.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_9_2.sh | 41 +++++++++++++++ .../controllers/ltp.controllers.pids_9_50.sh | 41 +++++++++++++++ .../cpuhotplug/ltp.cpuhotplug.cpuhotplug02.sh | 41 +++++++++++++++ .../cpuhotplug/ltp.cpuhotplug.cpuhotplug03.sh | 41 +++++++++++++++ .../cpuhotplug/ltp.cpuhotplug.cpuhotplug04.sh | 41 +++++++++++++++ .../cpuhotplug/ltp.cpuhotplug.cpuhotplug05.sh | 41 +++++++++++++++ .../cpuhotplug/ltp.cpuhotplug.cpuhotplug06.sh | 41 +++++++++++++++ .../cpuhotplug/ltp.cpuhotplug.cpuhotplug07.sh | 41 +++++++++++++++ testcase/crashme/ltp.crashme.crash01.sh | 41 +++++++++++++++ testcase/crashme/ltp.crashme.crash02.sh | 41 +++++++++++++++ testcase/crashme/ltp.crashme.f00f.sh | 41 +++++++++++++++ testcase/crypto/ltp.crypto.af_alg01.sh | 41 +++++++++++++++ testcase/crypto/ltp.crypto.af_alg02.sh | 41 +++++++++++++++ testcase/crypto/ltp.crypto.af_alg03.sh | 41 +++++++++++++++ testcase/crypto/ltp.crypto.af_alg04.sh | 41 +++++++++++++++ testcase/crypto/ltp.crypto.af_alg05.sh | 41 +++++++++++++++ testcase/crypto/ltp.crypto.af_alg06.sh | 41 +++++++++++++++ testcase/crypto/ltp.crypto.af_alg07.sh | 41 +++++++++++++++ testcase/crypto/ltp.crypto.crypto_user01.sh | 41 +++++++++++++++ testcase/crypto/ltp.crypto.crypto_user02.sh | 41 +++++++++++++++ testcase/crypto/ltp.crypto.pcrypt_aead01.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2011-0999.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2011-2183.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2011-2496.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2012-0957.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2014-0196.sh | 42 +++++++++++++++ testcase/cve/ltp.cve.cve-2015-0235.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2015-3290.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2015-7550.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2016-10044.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2016-4470.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2016-4997.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2016-5195.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2016-7042.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2016-7117.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2016-8655.sh | 42 +++++++++++++++ testcase/cve/ltp.cve.cve-2016-9604.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2016-9793.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-1000111.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-1000112.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-1000364.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-1000380.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-1000405.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-10661.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-12192.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-12193.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-15274.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-15299.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-15537.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-15649.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-15951.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-16939.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-16995.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-17052.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-17053.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-17712.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-17805.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-17806.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-17807.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-18075.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-18344.sh | 52 +++++++++++++++++++ testcase/cve/ltp.cve.cve-2017-2618.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-2636.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-2671.sh | 42 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-5754.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-6951.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-7308.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-7472.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-7616.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2017-8890.sh | 52 +++++++++++++++++++ testcase/cve/ltp.cve.cve-2018-1000001.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2018-1000199.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2018-1000204.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2018-10124.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2018-11508.sh | 52 +++++++++++++++++++ testcase/cve/ltp.cve.cve-2018-12896.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2018-13405.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2018-18445.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2018-18559.sh | 42 +++++++++++++++ testcase/cve/ltp.cve.cve-2018-18955.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2018-19854.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2018-5803.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2018-6927.sh | 52 +++++++++++++++++++ testcase/cve/ltp.cve.cve-2018-7566.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2018-8897.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2018-9568.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2019-8912.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2020-11494.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2020-14386.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2020-14416.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2020-25704.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2020-25705.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2020-29373.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2020-36557.sh | 52 +++++++++++++++++++ testcase/cve/ltp.cve.cve-2021-22555.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2021-22600.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2021-26708.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2021-3444.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2021-3609.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2021-38604.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2021-4034.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2021-4197_1.sh | 52 +++++++++++++++++++ testcase/cve/ltp.cve.cve-2021-4197_2.sh | 52 +++++++++++++++++++ testcase/cve/ltp.cve.cve-2021-4204.sh | 52 +++++++++++++++++++ testcase/cve/ltp.cve.cve-2022-0185.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2022-0847.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2022-23222.sh | 52 +++++++++++++++++++ testcase/cve/ltp.cve.cve-2022-2590.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2022-4378.sh | 41 +++++++++++++++ testcase/cve/ltp.cve.cve-2023-0461.sh | 52 +++++++++++++++++++ testcase/cve/ltp.cve.cve-2023-1829.sh | 52 +++++++++++++++++++ testcase/cve/ltp.cve.cve-2023-31248.sh | 52 +++++++++++++++++++ testcase/dio/ltp.dio.dio01.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio02.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio03.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio04.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio05.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio06.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio07.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio08.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio09.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio10.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio11.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio12.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio13.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio14.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio15.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio16.sh | 42 +++++++++++++++ testcase/dio/ltp.dio.dio17.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio18.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio19.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio20.sh | 42 +++++++++++++++ testcase/dio/ltp.dio.dio21.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio22.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio23.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio24.sh | 42 +++++++++++++++ testcase/dio/ltp.dio.dio25.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio26.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio27.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio28.sh | 42 +++++++++++++++ testcase/dio/ltp.dio.dio29.sh | 41 +++++++++++++++ testcase/dio/ltp.dio.dio30.sh | 42 +++++++++++++++ ....dma_thread_diotest.dma_thread_diotest1.sh | 41 +++++++++++++++ ....dma_thread_diotest.dma_thread_diotest2.sh | 41 +++++++++++++++ ....dma_thread_diotest.dma_thread_diotest3.sh | 41 +++++++++++++++ ....dma_thread_diotest.dma_thread_diotest4.sh | 41 +++++++++++++++ ....dma_thread_diotest.dma_thread_diotest5.sh | 41 +++++++++++++++ ....dma_thread_diotest.dma_thread_diotest6.sh | 41 +++++++++++++++ ....dma_thread_diotest.dma_thread_diotest7.sh | 41 +++++++++++++++ .../ltp.fcntl-locktests.FCNTL_LOCKTESTS.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.binfmt_misc01.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.binfmt_misc02.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.fs_di.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.fs_fill.sh | 42 +++++++++++++++ testcase/fs/ltp.fs.fs_inod01.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.fs_racer.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.ftest01.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.ftest02.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.ftest03.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.ftest04.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.ftest05.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.ftest06.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.ftest07.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.ftest08.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf01.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf02.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf03.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf04.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf05.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf06.sh | 42 +++++++++++++++ testcase/fs/ltp.fs.gf07.sh | 42 +++++++++++++++ testcase/fs/ltp.fs.gf08.sh | 42 +++++++++++++++ testcase/fs/ltp.fs.gf09.sh | 42 +++++++++++++++ testcase/fs/ltp.fs.gf10.sh | 42 +++++++++++++++ testcase/fs/ltp.fs.gf11.sh | 42 +++++++++++++++ testcase/fs/ltp.fs.gf12.sh | 42 +++++++++++++++ testcase/fs/ltp.fs.gf13.sh | 42 +++++++++++++++ testcase/fs/ltp.fs.gf14.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf15.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf16.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf17.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf18.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf19.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf20.sh | 42 +++++++++++++++ testcase/fs/ltp.fs.gf21.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf22.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf23.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf24.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf25.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf26.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf27.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf28.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.gf29.sh | 42 +++++++++++++++ testcase/fs/ltp.fs.gf30.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.inode01.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.inode02.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.iogen01.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.isofs.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.lftest01.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.linker01.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.openfile01.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.proc01.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.quota_remount_test01.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.read_all_dev.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.read_all_proc.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.read_all_sys.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.rwtest01.sh | 42 +++++++++++++++ testcase/fs/ltp.fs.rwtest02.sh | 42 +++++++++++++++ testcase/fs/ltp.fs.rwtest03.sh | 42 +++++++++++++++ testcase/fs/ltp.fs.rwtest04.sh | 42 +++++++++++++++ testcase/fs/ltp.fs.rwtest05.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.squashfs01.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.stream01.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.stream02.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.stream03.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.stream04.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.stream05.sh | 41 +++++++++++++++ testcase/fs/ltp.fs.writetest01.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind01_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind02_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind03_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind04_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind05_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind06_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind07-2_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind07_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind08_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind09_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind10_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind11_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind12_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind13_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind14_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind15_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind16_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind17_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind18_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind19_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind20_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind21_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind22_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind23_sh.sh | 41 +++++++++++++++ testcase/fs_bind/ltp.fs_bind.fs_bind24_sh.sh | 41 +++++++++++++++ .../ltp.fs_bind.fs_bind_cloneNS01_sh.sh | 41 +++++++++++++++ .../ltp.fs_bind.fs_bind_cloneNS02_sh.sh | 41 +++++++++++++++ .../ltp.fs_bind.fs_bind_cloneNS03_sh.sh | 41 +++++++++++++++ .../ltp.fs_bind.fs_bind_cloneNS04_sh.sh | 41 +++++++++++++++ .../ltp.fs_bind.fs_bind_cloneNS05_sh.sh | 41 +++++++++++++++ .../ltp.fs_bind.fs_bind_cloneNS06_sh.sh | 41 +++++++++++++++ .../ltp.fs_bind.fs_bind_cloneNS07_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move01_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move02_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move03_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move04_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move05_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move06_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move07_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move08_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move09_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move10_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move11_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move12_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move13_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move14_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move15_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move16_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move17_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move18_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move19_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move20_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move21_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_move22_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind01_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind02_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind03_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind04_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind05_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind06_sh.sh | 41 +++++++++++++++ .../ltp.fs_bind.fs_bind_rbind07-2_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind07_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind08_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind09_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind10_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind11_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind12_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind13_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind14_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind15_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind16_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind17_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind18_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind19_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind20_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind21_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind22_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind23_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind24_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind25_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind26_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind27_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind28_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind29_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind30_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind31_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind32_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind33_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind34_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind35_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind36_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind37_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind38_sh.sh | 41 +++++++++++++++ .../fs_bind/ltp.fs_bind.fs_bind_rbind39_sh.sh | 41 +++++++++++++++ .../ltp.fs_bind.fs_bind_regression_sh.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms01.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms02.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms03.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms04.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms05.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms06.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms07.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms08.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms09.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms10.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms11.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms12.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms13.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms14.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms15.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms16.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms17.sh | 41 +++++++++++++++ .../ltp.fs_perms_simple.fs_perms18.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind01.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind02.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind03.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind04.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind05.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind06.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind07.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind08.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind09.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind10.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind11.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind12.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind13.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind14.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind15.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind16.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind17.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind18.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind19.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind20.sh | 42 +++++++++++++++ .../ltp.fs_readonly.test_robind21.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind22.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind23.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind24.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind25.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind26.sh | 42 +++++++++++++++ .../ltp.fs_readonly.test_robind27.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind28.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind29.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind30.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind31.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind32.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind33.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind34.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind35.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind36.sh | 42 +++++++++++++++ .../ltp.fs_readonly.test_robind37.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind38.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind39.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind40.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind41.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind42.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind43.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind44.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind45.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind46.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind47.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind48.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind49.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind50.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind51.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind52.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind53.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind54.sh | 41 +++++++++++++++ .../ltp.fs_readonly.test_robind55.sh | 41 +++++++++++++++ .../hugetlb/ltp.hugetlb.hugefallocate01.sh | 41 +++++++++++++++ .../hugetlb/ltp.hugetlb.hugefallocate02.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugefork01.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugefork02.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap01.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap02.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap04.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap05.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap05_1.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap05_2.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap05_3.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap06.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap07.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap08.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap09.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap10.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap11.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap12.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap13.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap14.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap15.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap16.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap17.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap18.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap19.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap20.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap21.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap22.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap23.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap24.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap25.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap26.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap27.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap28.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap29.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap30.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap31.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugemmap32.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugeshmat01.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugeshmat02.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugeshmat03.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugeshmat04.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugeshmat05.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugeshmctl01.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugeshmctl02.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugeshmctl03.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugeshmdt01.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugeshmget01.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugeshmget02.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugeshmget03.sh | 41 +++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugeshmget05.sh | 41 +++++++++++++++ .../ltp.hyperthreading.smt_smp_affinity.sh | 41 +++++++++++++++ .../ltp.hyperthreading.smt_smp_enabled.sh | 41 +++++++++++++++ testcase/ima/ltp.ima.evm_overlay.sh | 41 +++++++++++++++ testcase/ima/ltp.ima.ima_conditionals.sh | 41 +++++++++++++++ testcase/ima/ltp.ima.ima_kexec.sh | 41 +++++++++++++++ testcase/ima/ltp.ima.ima_keys.sh | 41 +++++++++++++++ testcase/ima/ltp.ima.ima_measurements.sh | 41 +++++++++++++++ testcase/ima/ltp.ima.ima_policy.sh | 41 +++++++++++++++ testcase/ima/ltp.ima.ima_selinux.sh | 41 +++++++++++++++ testcase/ima/ltp.ima.ima_tpm.sh | 41 +++++++++++++++ testcase/ima/ltp.ima.ima_violations.sh | 41 +++++++++++++++ testcase/input/ltp.input.input01.sh | 41 +++++++++++++++ testcase/input/ltp.input.input02.sh | 41 +++++++++++++++ testcase/input/ltp.input.input03.sh | 41 +++++++++++++++ testcase/input/ltp.input.input04.sh | 41 +++++++++++++++ testcase/input/ltp.input.input05.sh | 41 +++++++++++++++ testcase/input/ltp.input.input06.sh | 41 +++++++++++++++ testcase/ipc/ltp.ipc.pipeio_1.sh | 41 +++++++++++++++ testcase/ipc/ltp.ipc.pipeio_3.sh | 41 +++++++++++++++ testcase/ipc/ltp.ipc.pipeio_4.sh | 41 +++++++++++++++ testcase/ipc/ltp.ipc.pipeio_5.sh | 41 +++++++++++++++ testcase/ipc/ltp.ipc.pipeio_6.sh | 41 +++++++++++++++ testcase/ipc/ltp.ipc.pipeio_8.sh | 41 +++++++++++++++ testcase/irq/ltp.irq.irqbalance01.sh | 41 +++++++++++++++ .../kernel_misc/ltp.kernel_misc.aslr01.sh | 52 +++++++++++++++++++ .../kernel_misc/ltp.kernel_misc.block_dev.sh | 41 +++++++++++++++ .../kernel_misc/ltp.kernel_misc.cn_pec_sh.sh | 52 +++++++++++++++++++ .../ltp.kernel_misc.cpufreq_boost.sh | 41 +++++++++++++++ .../kernel_misc/ltp.kernel_misc.fw_load.sh | 41 +++++++++++++++ .../kernel_misc/ltp.kernel_misc.kmsg01.sh | 41 +++++++++++++++ .../ltp.kernel_misc.lock_torture.sh | 41 +++++++++++++++ .../kernel_misc/ltp.kernel_misc.ltp_acpi.sh | 41 +++++++++++++++ .../ltp.kernel_misc.rcu_torture.sh | 41 +++++++++++++++ testcase/kernel_misc/ltp.kernel_misc.rtc01.sh | 41 +++++++++++++++ testcase/kernel_misc/ltp.kernel_misc.rtc02.sh | 41 +++++++++++++++ testcase/kernel_misc/ltp.kernel_misc.tbio.sh | 41 +++++++++++++++ testcase/kernel_misc/ltp.kernel_misc.tpci.sh | 41 +++++++++++++++ .../kernel_misc/ltp.kernel_misc.uaccess.sh | 41 +++++++++++++++ .../ltp.kernel_misc.umip_basic_test.sh | 41 +++++++++++++++ .../kernel_misc/ltp.kernel_misc.zram01.sh | 41 +++++++++++++++ .../kernel_misc/ltp.kernel_misc.zram02.sh | 41 +++++++++++++++ .../kernel_misc/ltp.kernel_misc.zram03.sh | 41 +++++++++++++++ testcase/kvm/ltp.kvm.kvm_pagefault01.sh | 41 +++++++++++++++ testcase/kvm/ltp.kvm.kvm_svm01.sh | 41 +++++++++++++++ testcase/kvm/ltp.kvm.kvm_svm02.sh | 52 +++++++++++++++++++ testcase/kvm/ltp.kvm.kvm_svm03.sh | 52 +++++++++++++++++++ testcase/kvm/ltp.kvm.kvm_svm04.sh | 52 +++++++++++++++++++ .../ltp.ltp-aio-stress.ADS1000.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1001.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1002.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1003.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1004.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1005.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1006.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1007.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1008.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1009.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1010.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1011.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1012.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1013.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1014.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1015.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1016.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1017.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1018.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1019.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1020.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1021.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1022.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1023.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1024.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1025.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1026.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1027.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1028.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1029.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1030.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1031.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1032.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1033.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1034.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1035.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1036.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1037.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1038.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1039.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1040.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1041.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1042.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1043.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1044.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1045.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1046.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1047.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1048.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1049.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1050.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1051.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1052.sh | 41 +++++++++++++++ .../ltp.ltp-aio-stress.ADS1053.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD001.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD002.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD003.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD004.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD005.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD006.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD007.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD008.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD009.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD010.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD011.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD012.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD013.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD014.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD015.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD016.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD017.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD018.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD019.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD020.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD021.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD022.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD023.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD024.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD025.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD026.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD027.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD028.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD029.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD030.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD031.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD032.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD033.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD034.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD035.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD036.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD037.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD038.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD039.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD040.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD041.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD042.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD043.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD044.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD045.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD046.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD047.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD048.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD049.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD050.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD051.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD052.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD053.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD054.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD055.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD056.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD057.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD058.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD059.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD060.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD061.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD062.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD063.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD064.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD065.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD066.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD067.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD068.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD069.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD070.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD071.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD072.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD073.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD074.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD075.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD076.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD077.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD078.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD079.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD080.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD081.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD082.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD083.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD084.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD085.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD086.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD087.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD088.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD089.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD090.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD091.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD092.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD093.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD094.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD095.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD096.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD097.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD098.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD099.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD100.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD101.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD102.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD103.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD104.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD105.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD106.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD107.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD108.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD109.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD110.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD111.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD112.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD113.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD114.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD115.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD116.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD117.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD118.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD119.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD120.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD121.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD122.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD123.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD124.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD125.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD126.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD127.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD128.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD129.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD130.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD131.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD132.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD133.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD134.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD135.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD136.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD137.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD138.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD139.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part1.AD140.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP000.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP001.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP002.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP003.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP004.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP005.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP006.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP007.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP008.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP009.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP010.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP011.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP012.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP013.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP014.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP015.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP016.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP017.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP018.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP019.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP020.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP021.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP022.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP023.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP024.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP025.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP026.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP027.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP028.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP029.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP030.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP031.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP032.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP033.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP034.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP035.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP036.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP037.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP038.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP039.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP040.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP041.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP042.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP043.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP044.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP045.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP046.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP047.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP048.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP049.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP050.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP051.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP052.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP053.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP054.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP055.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP056.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP057.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP058.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP059.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP060.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP061.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP062.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP063.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP064.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP065.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP066.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP067.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP068.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP069.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP070.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP071.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP072.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP073.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP074.sh | 42 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP075.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP076.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP077.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP078.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP079.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP080.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP081.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part2.ADSP082.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part3.fsx01.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx02.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx03.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx04.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx05.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx06.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx07.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx08.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx09.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx10.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx12.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx13.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx14.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx15.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx16.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx17.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx18.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx19.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx20.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx21.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part3.fsx22.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part4.AD000.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.AD001.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.AD002.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.AD003.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.AD004.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.AD005.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.AD006.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.AD007.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.AD008.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.AD009.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.ADI000.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.ADI001.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.ADI002.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.ADI003.sh | 42 +++++++++++++++ .../ltp.ltp-aiodio.part4.ADI004.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.ADI005.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.ADI006.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.ADI007.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.ADI008.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.ADI009.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DI000.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DI001.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DI002.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DI003.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DI004.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DI005.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DI006.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DI007.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DI008.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DI009.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DIO00.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DIO01.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DIO02.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DIO03.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DIO04.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DIO05.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DIO06.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DIO07.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DIO08.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DIO09.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DIT000.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DIT001.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DIT002.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DOR000.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DOR001.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DOR002.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DOR003.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DS000.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DS001.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DS002.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DS003.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DS004.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DS005.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DS006.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DS007.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DS008.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.DS009.sh | 41 +++++++++++++++ .../ltp.ltp-aiodio.part4.aio01.sh | 52 +++++++++++++++++++ .../ltp.ltp-aiodio.part4.aio02.sh | 52 +++++++++++++++++++ testcase/math/ltp.math.abs01.sh | 41 +++++++++++++++ testcase/math/ltp.math.atof01.sh | 41 +++++++++++++++ testcase/math/ltp.math.float_bessel.sh | 41 +++++++++++++++ testcase/math/ltp.math.float_exp_log.sh | 41 +++++++++++++++ testcase/math/ltp.math.float_iperb.sh | 41 +++++++++++++++ testcase/math/ltp.math.float_power.sh | 41 +++++++++++++++ testcase/math/ltp.math.float_trigo.sh | 41 +++++++++++++++ testcase/math/ltp.math.fptest01.sh | 41 +++++++++++++++ testcase/math/ltp.math.fptest02.sh | 41 +++++++++++++++ testcase/math/ltp.math.nextafter01.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.cpuset01.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.data_space.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.kallsyms.sh | 52 +++++++++++++++++++ testcase/mm/ltp.mm.ksm01.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.ksm01_1.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.ksm02.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.ksm02_1.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.ksm03.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.ksm03_1.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.ksm04.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.ksm04_1.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.ksm05.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.ksm06.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.ksm06_1.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.ksm06_2.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.ksm07.sh | 52 +++++++++++++++++++ testcase/mm/ltp.mm.mallocstress01.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.max_map_count.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mem02.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.min_free_kbytes.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mm01.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mm02.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mmap10.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mmap10_1.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mmap10_2.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mmap10_3.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mmap10_4.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mmapstress01.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mmapstress02.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mmapstress03.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mmapstress04.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mmapstress05.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mmapstress06.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mmapstress07.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mmapstress08.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mmapstress09.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mmapstress10.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mtest01.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mtest01w.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mtest05.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mtest06.sh | 42 +++++++++++++++ testcase/mm/ltp.mm.mtest06_2.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.mtest06_3.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.oom01.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.oom02.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.oom03.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.oom04.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.oom05.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.overcommit_memory01.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.overcommit_memory02.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.overcommit_memory03.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.overcommit_memory04.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.overcommit_memory05.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.overcommit_memory06.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.page01.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.page02.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.shm_test01.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.shmt02.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.shmt03.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.shmt04.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.shmt05.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.shmt06.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.shmt07.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.shmt08.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.shmt09.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.shmt10.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.stack_space.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.swapping01.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.thp01.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.thp02.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.thp03.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.thp04.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.vma01.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.vma02.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.vma03.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.vma04.sh | 41 +++++++++++++++ testcase/mm/ltp.mm.vma05.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.bbr01.sh | 41 +++++++++++++++ .../ltp.net.features.bbr01_ipv6.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.bbr02.sh | 42 +++++++++++++++ .../ltp.net.features.bbr02_ipv6.sh | 42 +++++++++++++++ .../ltp.net.features.bind_noport01.sh | 41 +++++++++++++++ .../ltp.net.features.bind_noport01_ipv6.sh | 41 +++++++++++++++ .../ltp.net.features.busy_poll01.sh | 41 +++++++++++++++ .../ltp.net.features.busy_poll01_ipv6.sh | 41 +++++++++++++++ .../ltp.net.features.busy_poll02.sh | 41 +++++++++++++++ .../ltp.net.features.busy_poll02_ipv6.sh | 41 +++++++++++++++ .../ltp.net.features.busy_poll03.sh | 41 +++++++++++++++ .../ltp.net.features.busy_poll03_ipv6.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.dccp01.sh | 41 +++++++++++++++ .../ltp.net.features.dccp01_ipv6.sh | 41 +++++++++++++++ .../ltp.net.features.dctcp_ipv4_01.sh | 41 +++++++++++++++ .../ltp.net.features.dctcp_ipv6_01.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.fanout01.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.fou01.sh | 41 +++++++++++++++ .../ltp.net.features.fou01_ipv6.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.geneve01.sh | 41 +++++++++++++++ .../ltp.net.features.geneve01_ipv6.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.geneve02.sh | 41 +++++++++++++++ .../ltp.net.features.geneve02_ipv6.sh | 41 +++++++++++++++ .../ltp.net.features.gre_ipv4_01.sh | 41 +++++++++++++++ .../ltp.net.features.gre_ipv4_02.sh | 41 +++++++++++++++ .../ltp.net.features.gre_ipv6_01.sh | 41 +++++++++++++++ .../ltp.net.features.gre_ipv6_02.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.gue01.sh | 41 +++++++++++++++ .../ltp.net.features.gue01_ipv6.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.ipvlan01.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.macsec01.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.macsec02.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.macsec03.sh | 41 +++++++++++++++ .../ltp.net.features.macvlan01.sh | 41 +++++++++++++++ .../ltp.net.features.macvtap01.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.mpls01.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.mpls02.sh | 41 +++++++++++++++ .../ltp.net.features.mpls02_ipv6.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.mpls03.sh | 41 +++++++++++++++ .../ltp.net.features.mpls03_ipv6.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.mpls04.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.sctp01.sh | 41 +++++++++++++++ .../ltp.net.features.sctp01_ipv6.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.sit01.sh | 41 +++++++++++++++ .../ltp.net.features.tcp_fastopen.sh | 41 +++++++++++++++ .../ltp.net.features.tcp_fastopen6.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.vlan01.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.vlan02.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.vlan03.sh | 42 +++++++++++++++ .../net.features/ltp.net.features.vxlan01.sh | 41 +++++++++++++++ .../net.features/ltp.net.features.vxlan02.sh | 41 +++++++++++++++ .../ltp.net.features.vxlan02_ipv6.sh | 41 +++++++++++++++ .../ltp.net.features.vxlan_ipv6_multi_03.sh | 41 +++++++++++++++ .../ltp.net.features.vxlan_ipv6_uni_03.sh | 41 +++++++++++++++ .../ltp.net.features.vxlan_ipv6_uni_04.sh | 41 +++++++++++++++ .../ltp.net.features.vxlan_multi_03.sh | 41 +++++++++++++++ .../ltp.net.features.vxlan_uni_03.sh | 41 +++++++++++++++ .../ltp.net.features.vxlan_uni_04.sh | 41 +++++++++++++++ .../ltp.net.features.wireguard01.sh | 41 +++++++++++++++ .../ltp.net.features.wireguard01_ipv6.sh | 41 +++++++++++++++ .../ltp.net.features.wireguard02.sh | 41 +++++++++++++++ .../ltp.net.features.wireguard02_ipv6.sh | 41 +++++++++++++++ testcase/net.ipv6/ltp.net.ipv6.dhcpd6.sh | 41 +++++++++++++++ testcase/net.ipv6/ltp.net.ipv6.dnsmasq6.sh | 41 +++++++++++++++ testcase/net.ipv6/ltp.net.ipv6.ip6tables.sh | 41 +++++++++++++++ testcase/net.ipv6/ltp.net.ipv6.ipneigh6_ip.sh | 41 +++++++++++++++ testcase/net.ipv6/ltp.net.ipv6.nft6.sh | 41 +++++++++++++++ testcase/net.ipv6/ltp.net.ipv6.ping601.sh | 41 +++++++++++++++ testcase/net.ipv6/ltp.net.ipv6.ping602.sh | 41 +++++++++++++++ testcase/net.ipv6/ltp.net.ipv6.sendfile601.sh | 41 +++++++++++++++ testcase/net.ipv6/ltp.net.ipv6.tcpdump601.sh | 41 +++++++++++++++ .../net.ipv6/ltp.net.ipv6.tracepath601.sh | 41 +++++++++++++++ .../net.ipv6/ltp.net.ipv6.traceroute601.sh | 41 +++++++++++++++ .../net.ipv6_lib/ltp.net.ipv6_lib.asapi_01.sh | 41 +++++++++++++++ .../net.ipv6_lib/ltp.net.ipv6_lib.asapi_02.sh | 41 +++++++++++++++ .../net.ipv6_lib/ltp.net.ipv6_lib.asapi_03.sh | 41 +++++++++++++++ .../ltp.net.ipv6_lib.getaddrinfo_01.sh | 41 +++++++++++++++ .../net.ipv6_lib/ltp.net.ipv6_lib.in6_01.sh | 41 +++++++++++++++ .../net.ipv6_lib/ltp.net.ipv6_lib.in6_02.sh | 41 +++++++++++++++ .../ltp.net.multicast.mc_cmds.sh | 41 +++++++++++++++ .../ltp.net.multicast.mc_commo.sh | 42 +++++++++++++++ .../ltp.net.multicast.mc_member.sh | 42 +++++++++++++++ .../ltp.net.multicast.mc_opts.sh | 41 +++++++++++++++ testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4t.sh | 52 +++++++++++++++++++ testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4u.sh | 52 +++++++++++++++++++ testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6t.sh | 52 +++++++++++++++++++ testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6u.sh | 52 +++++++++++++++++++ testcase/net.nfs/ltp.net.nfs.fsx_v40_ip4t.sh | 52 +++++++++++++++++++ testcase/net.nfs/ltp.net.nfs.fsx_v40_ip6t.sh | 52 +++++++++++++++++++ testcase/net.nfs/ltp.net.nfs.fsx_v41_ip4t.sh | 52 +++++++++++++++++++ testcase/net.nfs/ltp.net.nfs.fsx_v41_ip6t.sh | 52 +++++++++++++++++++ testcase/net.nfs/ltp.net.nfs.fsx_v42_ip4t.sh | 52 +++++++++++++++++++ testcase/net.nfs/ltp.net.nfs.fsx_v42_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs01_v30_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs01_v30_ip4u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs01_v30_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs01_v30_ip6u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs01_v40_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs01_v40_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs01_v41_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs01_v41_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs01_v42_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs01_v42_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs02_v30_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs02_v30_ip4u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs02_v30_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs02_v30_ip6u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs02_v40_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs02_v40_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs02_v41_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs02_v41_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs02_v42_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs02_v42_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs03_v30_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs03_v30_ip4u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs03_v30_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs03_v30_ip6u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs03_v40_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs03_v40_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs03_v41_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs03_v41_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs03_v42_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs03_v42_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs04_v30_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs04_v30_ip4u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs04_v30_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs04_v30_ip6u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs04_v40_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs04_v40_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs04_v41_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs04_v41_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs04_v42_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs04_v42_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs05_v30_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs05_v30_ip4u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs05_v30_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs05_v30_ip6u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs05_v40_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs05_v40_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs05_v41_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs05_v41_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs05_v42_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs05_v42_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs06_v30_v40_ip4.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs06_v4x_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs06_vall_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs07_v30_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs07_v30_ip4u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs07_v30_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs07_v30_ip6u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs07_v40_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs07_v40_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs07_v41_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs07_v41_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs07_v42_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs07_v42_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs08_v30_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs08_v30_ip4u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs08_v30_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs08_v30_ip6u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs08_v40_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs08_v40_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs08_v41_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs08_v41_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs08_v42_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs08_v42_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs09_v30_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs09_v30_ip4u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs09_v30_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs09_v30_ip6u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs09_v40_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs09_v40_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs09_v41_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs09_v41_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs09_v42_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs09_v42_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfslock01_v30_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfslock01_v30_ip4u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfslock01_v30_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfslock01_v30_ip6u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfslock01_v40_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfslock01_v40_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfslock01_v41_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfslock01_v41_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfslock01_v42_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfslock01_v42_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfsstat01_v30_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfsstat01_v30_ip4u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfsstat01_v30_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfsstat01_v30_ip6u.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfsstat01_v40_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfsstat01_v40_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfsstat01_v41_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfsstat01_v41_ip6t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfsstat01_v42_ip4t.sh | 52 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfsstat01_v42_ip6t.sh | 52 +++++++++++++++++++ .../net.rpc_tests/ltp.net.rpc_tests.rpc01.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_auth_destroy.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_authnone_create.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_authunix_create.sh | 41 +++++++++++++++ ...t.rpc_tests.rpc_authunix_create_default.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_callrpc.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_clnt_broadcast.sh | 42 +++++++++++++++ .../ltp.net.rpc_tests.rpc_clnt_call.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_clnt_control.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_clnt_create.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_clnt_destroy.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_clnt_freeres.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_clnt_geterr.sh | 41 +++++++++++++++ ...ltp.net.rpc_tests.rpc_clnt_pcreateerror.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_clnt_perrno.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_clnt_perror.sh | 41 +++++++++++++++ ...tp.net.rpc_tests.rpc_clnt_spcreateerror.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_clnt_sperrno.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_clnt_sperror.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_clntraw_create.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_clnttcp_create.sh | 41 +++++++++++++++ ...ltp.net.rpc_tests.rpc_clntudp_bufcreate.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_clntudp_create.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_get_myaddress.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_pmap_getmaps.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_pmap_getport.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_pmap_rmtcall.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_pmap_set.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_pmap_unset.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_registerrpc.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svc_destroy.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svc_freeargs.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svc_getargs.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svc_getcaller.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svc_register.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svc_sendreply.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svc_unregister.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svcerr_auth.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svcerr_noproc.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svcerr_noprog.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svcerr_progvers.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svcerr_systemerr.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svcerr_weakauth.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svcfd_create.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svcraw_create.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svctcp_create.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svcudp_bufcreate.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_svcudp_create.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_xprt_register.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpc_xprt_unregister.sh | 41 +++++++++++++++ .../ltp.net.rpc_tests.rpcinfo.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_1_to_1_accept_close.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_1_to_1_addrs.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_1_to_1_connect.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_1_to_1_connectx.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_1_to_1_events.sh | 41 +++++++++++++++ ...tp.net.sctp.test_1_to_1_initmsg_connect.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_1_to_1_nonblock.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_1_to_1_recvfrom.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_1_to_1_recvmsg.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_1_to_1_rtoinfo.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_1_to_1_send.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_1_to_1_sendmsg.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_1_to_1_sendto.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_1_to_1_shutdown.sh | 41 +++++++++++++++ ...net.sctp.test_1_to_1_socket_bind_listen.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_1_to_1_sockopt.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_1_to_1_threads.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_assoc_abort.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_assoc_shutdown.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_autoclose.sh | 41 +++++++++++++++ testcase/net.sctp/ltp.net.sctp.test_basic.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_basic_v6.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_connect.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_connectx.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_fragments.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_fragments_v6.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_getname.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_getname_v6.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_inaddr_any.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_inaddr_any_v6.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_peeloff.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_peeloff_v6.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_recvmsg.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_sctp_sendrecvmsg.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_sctp_sendrecvmsg_v6.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_sockopt.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_sockopt_v6.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_tcp_style.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_tcp_style_v6.sh | 41 +++++++++++++++ .../net.sctp/ltp.net.sctp.test_timetolive.sh | 41 +++++++++++++++ .../ltp.net.sctp.test_timetolive_v6.sh | 41 +++++++++++++++ .../net.tcp_cmds/ltp.net.tcp_cmds.arping01.sh | 41 +++++++++++++++ .../net.tcp_cmds/ltp.net.tcp_cmds.dhcpd.sh | 41 +++++++++++++++ .../net.tcp_cmds/ltp.net.tcp_cmds.dnsmasq.sh | 41 +++++++++++++++ testcase/net.tcp_cmds/ltp.net.tcp_cmds.ftp.sh | 42 +++++++++++++++ .../ltp.net.tcp_cmds.ipneigh01_arp.sh | 41 +++++++++++++++ .../ltp.net.tcp_cmds.ipneigh01_ip.sh | 41 +++++++++++++++ .../net.tcp_cmds/ltp.net.tcp_cmds.iproute.sh | 41 +++++++++++++++ .../net.tcp_cmds/ltp.net.tcp_cmds.iptables.sh | 41 +++++++++++++++ .../net.tcp_cmds/ltp.net.tcp_cmds.netstat.sh | 41 +++++++++++++++ testcase/net.tcp_cmds/ltp.net.tcp_cmds.nft.sh | 41 +++++++++++++++ .../net.tcp_cmds/ltp.net.tcp_cmds.ping01.sh | 41 +++++++++++++++ .../net.tcp_cmds/ltp.net.tcp_cmds.ping02.sh | 41 +++++++++++++++ .../net.tcp_cmds/ltp.net.tcp_cmds.sendfile.sh | 41 +++++++++++++++ .../net.tcp_cmds/ltp.net.tcp_cmds.tc01.sh | 41 +++++++++++++++ .../net.tcp_cmds/ltp.net.tcp_cmds.tcpdump.sh | 41 +++++++++++++++ .../ltp.net.tcp_cmds.tracepath01.sh | 41 +++++++++++++++ .../ltp.net.tcp_cmds.traceroute01.sh | 41 +++++++++++++++ ...p.net.tirpc_tests.tirpc_authnone_create.sh | 44 ++++++++++++++++ ...tp.net.tirpc_tests.tirpc_authsys_create.sh | 44 ++++++++++++++++ ...irpc_tests.tirpc_authsys_create_default.sh | 44 ++++++++++++++++ ...tirpc_tests.tirpc_bottomlevel_clnt_call.sh | 44 ++++++++++++++++ .../ltp.net.tirpc_tests.tirpc_clnt_control.sh | 44 ++++++++++++++++ .../ltp.net.tirpc_tests.tirpc_clnt_create.sh | 44 ++++++++++++++++ ...net.tirpc_tests.tirpc_clnt_create_timed.sh | 44 ++++++++++++++++ .../ltp.net.tirpc_tests.tirpc_clnt_destroy.sh | 44 ++++++++++++++++ ...tp.net.tirpc_tests.tirpc_clnt_dg_create.sh | 44 ++++++++++++++++ ...net.tirpc_tests.tirpc_clnt_pcreateerror.sh | 44 ++++++++++++++++ .../ltp.net.tirpc_tests.tirpc_clnt_perrno.sh | 44 ++++++++++++++++ .../ltp.net.tirpc_tests.tirpc_clnt_perror.sh | 44 ++++++++++++++++ ...p.net.tirpc_tests.tirpc_clnt_tli_create.sh | 44 ++++++++++++++++ ...tp.net.tirpc_tests.tirpc_clnt_tp_create.sh | 44 ++++++++++++++++ ....tirpc_tests.tirpc_clnt_tp_create_timed.sh | 44 ++++++++++++++++ ...tp.net.tirpc_tests.tirpc_clnt_vc_create.sh | 44 ++++++++++++++++ ...tirpc_tests.tirpc_expertlevel_clnt_call.sh | 44 ++++++++++++++++ ....tirpc_tests.tirpc_interlevel_clnt_call.sh | 44 ++++++++++++++++ ...ltp.net.tirpc_tests.tirpc_rpc_broadcast.sh | 44 ++++++++++++++++ ...net.tirpc_tests.tirpc_rpc_broadcast_exp.sh | 44 ++++++++++++++++ .../ltp.net.tirpc_tests.tirpc_rpc_call.sh | 44 ++++++++++++++++ .../ltp.net.tirpc_tests.tirpc_rpc_reg.sh | 44 ++++++++++++++++ .../ltp.net.tirpc_tests.tirpc_rpcb_getaddr.sh | 44 ++++++++++++++++ .../ltp.net.tirpc_tests.tirpc_rpcb_getmaps.sh | 44 ++++++++++++++++ .../ltp.net.tirpc_tests.tirpc_rpcb_rmtcall.sh | 44 ++++++++++++++++ .../ltp.net.tirpc_tests.tirpc_rpcb_set.sh | 44 ++++++++++++++++ .../ltp.net.tirpc_tests.tirpc_rpcb_unset.sh | 44 ++++++++++++++++ .../ltp.net.tirpc_tests.tirpc_svc_create.sh | 44 ++++++++++++++++ .../ltp.net.tirpc_tests.tirpc_svc_destroy.sh | 44 ++++++++++++++++ ...ltp.net.tirpc_tests.tirpc_svc_dg_create.sh | 44 ++++++++++++++++ .../ltp.net.tirpc_tests.tirpc_svc_reg.sh | 44 ++++++++++++++++ ...tp.net.tirpc_tests.tirpc_svc_tli_create.sh | 44 ++++++++++++++++ ...ltp.net.tirpc_tests.tirpc_svc_tp_create.sh | 44 ++++++++++++++++ .../ltp.net.tirpc_tests.tirpc_svc_unreg.sh | 44 ++++++++++++++++ ...ltp.net.tirpc_tests.tirpc_svc_vc_create.sh | 44 ++++++++++++++++ ...ltp.net.tirpc_tests.tirpc_svcerr_noproc.sh | 44 ++++++++++++++++ ...ltp.net.tirpc_tests.tirpc_svcerr_noprog.sh | 44 ++++++++++++++++ ...p.net.tirpc_tests.tirpc_svcerr_progvers.sh | 44 ++++++++++++++++ ....net.tirpc_tests.tirpc_svcerr_systemerr.sh | 44 ++++++++++++++++ ...p.net.tirpc_tests.tirpc_svcerr_weakauth.sh | 44 ++++++++++++++++ ...et.tirpc_tests.tirpc_toplevel_clnt_call.sh | 44 ++++++++++++++++ .../ltp.net_stress.appl.dns4-stress.sh | 41 +++++++++++++++ .../ltp.net_stress.appl.dns6-stress.sh | 41 +++++++++++++++ ...tp.net_stress.appl.ftp4-download-stress.sh | 41 +++++++++++++++ .../ltp.net_stress.appl.ftp4-upload-stress.sh | 41 +++++++++++++++ ...tp.net_stress.appl.ftp6-download-stress.sh | 41 +++++++++++++++ .../ltp.net_stress.appl.ftp6-upload-stress.sh | 41 +++++++++++++++ .../ltp.net_stress.appl.http4-stress.sh | 44 ++++++++++++++++ .../ltp.net_stress.appl.http6-stress.sh | 44 ++++++++++++++++ .../ltp.net_stress.appl.ssh4-stress.sh | 41 +++++++++++++++ .../ltp.net_stress.appl.ssh6-stress.sh | 41 +++++++++++++++ ...et_stress.broken_ip.broken_ip4-checksum.sh | 41 +++++++++++++++ ...net_stress.broken_ip.broken_ip4-dstaddr.sh | 41 +++++++++++++++ ...et_stress.broken_ip.broken_ip4-fragment.sh | 41 +++++++++++++++ ...ltp.net_stress.broken_ip.broken_ip4-ihl.sh | 41 +++++++++++++++ ...tp.net_stress.broken_ip.broken_ip4-plen.sh | 41 +++++++++++++++ ...net_stress.broken_ip.broken_ip4-protcol.sh | 41 +++++++++++++++ ...net_stress.broken_ip.broken_ip4-version.sh | 41 +++++++++++++++ ...net_stress.broken_ip.broken_ip6-dstaddr.sh | 41 +++++++++++++++ ...net_stress.broken_ip.broken_ip6-nexthdr.sh | 41 +++++++++++++++ ...tp.net_stress.broken_ip.broken_ip6-plen.sh | 41 +++++++++++++++ ...net_stress.broken_ip.broken_ip6-version.sh | 41 +++++++++++++++ ...ress.interface.if4-addr-adddel_ifconfig.sh | 41 +++++++++++++++ ...net_stress.interface.if4-addr-adddel_ip.sh | 41 +++++++++++++++ ...ss.interface.if4-addr-addlarge_ifconfig.sh | 41 +++++++++++++++ ...t_stress.interface.if4-addr-addlarge_ip.sh | 41 +++++++++++++++ ...ress.interface.if4-addr-change_ifconfig.sh | 41 +++++++++++++++ ...tress.interface.if4-mtu-change_ifconfig.sh | 42 +++++++++++++++ ....net_stress.interface.if4-mtu-change_ip.sh | 42 +++++++++++++++ ...et_stress.interface.if4-route-adddel_ip.sh | 41 +++++++++++++++ ...stress.interface.if4-route-adddel_route.sh | 41 +++++++++++++++ ..._stress.interface.if4-route-addlarge_ip.sh | 41 +++++++++++++++ ...ress.interface.if4-route-addlarge_route.sh | 41 +++++++++++++++ ...et_stress.interface.if4-updown_ifconfig.sh | 41 +++++++++++++++ .../ltp.net_stress.interface.if4-updown_ip.sh | 41 +++++++++++++++ ...ress.interface.if6-addr-adddel_ifconfig.sh | 41 +++++++++++++++ ...net_stress.interface.if6-addr-adddel_ip.sh | 41 +++++++++++++++ ...ss.interface.if6-addr-addlarge_ifconfig.sh | 41 +++++++++++++++ ...t_stress.interface.if6-addr-addlarge_ip.sh | 41 +++++++++++++++ ...tress.interface.if6-mtu-change_ifconfig.sh | 42 +++++++++++++++ ....net_stress.interface.if6-mtu-change_ip.sh | 42 +++++++++++++++ ...et_stress.interface.if6-route-adddel_ip.sh | 41 +++++++++++++++ ...stress.interface.if6-route-adddel_route.sh | 41 +++++++++++++++ ..._stress.interface.if6-route-addlarge_ip.sh | 41 +++++++++++++++ ...ress.interface.if6-route-addlarge_route.sh | 41 +++++++++++++++ ...et_stress.interface.if6-updown_ifconfig.sh | 41 +++++++++++++++ .../ltp.net_stress.interface.if6-updown_ip.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec01.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec02.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec03.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec04.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec05.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec06.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec07.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec08.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec09.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec10.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec11.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec12.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec13.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec14.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec15.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec16.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec17.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec18.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec19.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec20.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec21.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec22.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec23.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec24.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec25.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec26.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec27.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec28.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec29.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec30.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec31.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec32.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec33.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec34.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec35.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp4_ipsec36.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp4_ipsec_vti01.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp4_ipsec_vti02.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp4_ipsec_vti04.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp4_ipsec_vti05.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp4_ipsec_vti06.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp4_ipsec_vti07.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp4_ipsec_vti08.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp4_ipsec_vti09.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp4_ipsec_vti10.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp4_ipsec_vti11.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp4_ipsec_vti12.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp4_ipsec_vti13.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp4_ipsec_vti14.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp4_ipsec_vti15.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp4_ipsec_vti16.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp4_ipsec_vti17.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec01.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec02.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec03.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec04.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec05.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec06.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec07.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec08.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec09.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec10.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec11.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec12.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec13.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec14.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec15.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec16.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec17.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec18.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec19.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec20.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec21.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec22.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec23.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec24.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec25.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec26.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec27.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec28.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec29.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec30.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec31.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec32.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec33.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec34.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec35.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_dccp.dccp6_ipsec36.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp6_ipsec_vti01.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp6_ipsec_vti02.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp6_ipsec_vti04.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp6_ipsec_vti05.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp6_ipsec_vti06.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp6_ipsec_vti07.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp6_ipsec_vti08.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp6_ipsec_vti09.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp6_ipsec_vti10.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp6_ipsec_vti11.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp6_ipsec_vti12.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp6_ipsec_vti13.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp6_ipsec_vti14.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp6_ipsec_vti15.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp6_ipsec_vti16.sh | 41 +++++++++++++++ ...net_stress.ipsec_dccp.dccp6_ipsec_vti17.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic01.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic02.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic03.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic04.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic05.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic06.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic07.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic08.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic09.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic10.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic11.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic12.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic13.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic14.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic15.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic16.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic17.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic18.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic19.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic20.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic21.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic22.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic23.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic24.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic25.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp4-uni-basic26.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti01.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti02.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti03.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti04.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti05.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti06.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti07.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti08.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti09.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti10.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti11.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti12.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti13.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti14.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti15.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti16.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp4-uni-vti17.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic01.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic02.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic03.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic04.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic05.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic06.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic07.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic08.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic09.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic10.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic11.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic12.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic13.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic14.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic15.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic16.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic17.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic18.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic19.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic20.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic21.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic22.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic23.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic24.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic25.sh | 41 +++++++++++++++ ...net_stress.ipsec_icmp.icmp6-uni-basic26.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti01.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti02.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti03.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti04.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti05.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti06.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti07.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti08.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti09.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti10.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti11.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti12.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti13.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti14.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti15.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti16.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_icmp.icmp6-uni-vti17.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec01.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec02.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec03.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec04.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec05.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec06.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec07.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec08.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec09.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec10.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec11.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec12.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec13.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec14.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec15.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec16.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec17.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec18.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec19.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec20.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec21.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec22.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec23.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec24.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec25.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec26.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec27.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec28.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec29.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec30.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec31.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec32.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec33.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec34.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec35.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp4_ipsec36.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp4_ipsec_vti01.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp4_ipsec_vti02.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp4_ipsec_vti04.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp4_ipsec_vti05.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp4_ipsec_vti06.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp4_ipsec_vti07.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp4_ipsec_vti08.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp4_ipsec_vti09.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp4_ipsec_vti10.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp4_ipsec_vti11.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp4_ipsec_vti12.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp4_ipsec_vti13.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp4_ipsec_vti14.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp4_ipsec_vti15.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp4_ipsec_vti16.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp4_ipsec_vti17.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec01.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec02.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec03.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec04.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec05.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec06.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec07.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec08.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec09.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec10.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec11.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec12.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec13.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec14.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec15.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec16.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec17.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec18.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec19.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec20.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec21.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec22.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec23.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec24.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec25.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec26.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec27.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec28.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec29.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec30.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec31.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec32.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec33.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec34.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec35.sh | 41 +++++++++++++++ ...ltp.net_stress.ipsec_sctp.sctp6_ipsec36.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp6_ipsec_vti01.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp6_ipsec_vti02.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp6_ipsec_vti04.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp6_ipsec_vti05.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp6_ipsec_vti06.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp6_ipsec_vti07.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp6_ipsec_vti08.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp6_ipsec_vti09.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp6_ipsec_vti10.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp6_ipsec_vti11.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp6_ipsec_vti12.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp6_ipsec_vti13.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp6_ipsec_vti14.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp6_ipsec_vti15.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp6_ipsec_vti16.sh | 41 +++++++++++++++ ...net_stress.ipsec_sctp.sctp6_ipsec_vti17.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec01.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec02.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec03.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec04.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec05.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec06.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec07.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec08.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec09.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec10.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec11.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec12.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec13.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec14.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec15.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec16.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec17.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec18.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec19.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec20.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec21.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec22.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec23.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec24.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec25.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec26.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec27.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec28.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec29.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec30.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec31.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec32.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec33.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec34.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec35.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp4_ipsec36.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp4_ipsec_vti01.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp4_ipsec_vti02.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp4_ipsec_vti04.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp4_ipsec_vti05.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp4_ipsec_vti06.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp4_ipsec_vti07.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp4_ipsec_vti08.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp4_ipsec_vti09.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp4_ipsec_vti10.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp4_ipsec_vti11.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp4_ipsec_vti12.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp4_ipsec_vti13.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp4_ipsec_vti14.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp4_ipsec_vti15.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp4_ipsec_vti16.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp4_ipsec_vti17.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec01.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec02.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec03.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec04.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec05.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec06.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec07.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec08.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec09.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec10.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec11.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec12.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec13.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec14.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec15.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec16.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec17.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec18.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec19.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec20.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec21.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec22.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec23.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec24.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec25.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec26.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec27.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec28.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec29.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec30.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec31.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec32.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec33.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec34.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec35.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_tcp.tcp6_ipsec36.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp6_ipsec_vti01.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp6_ipsec_vti02.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp6_ipsec_vti04.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp6_ipsec_vti05.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp6_ipsec_vti06.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp6_ipsec_vti07.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp6_ipsec_vti08.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp6_ipsec_vti09.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp6_ipsec_vti10.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp6_ipsec_vti11.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp6_ipsec_vti12.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp6_ipsec_vti13.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp6_ipsec_vti14.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp6_ipsec_vti15.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp6_ipsec_vti16.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_tcp.tcp6_ipsec_vti17.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec01.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec02.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec03.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec04.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec05.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec06.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec07.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec08.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec09.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec10.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec11.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec12.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec13.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec14.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec15.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec16.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec17.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec18.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec19.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec20.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec21.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec22.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec23.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec24.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec25.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec26.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec27.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec28.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec29.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec30.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec31.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec32.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec33.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec34.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec35.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp4_ipsec36.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti01.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti02.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti03.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti04.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti05.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti06.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti07.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti08.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti09.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti10.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti11.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti12.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti13.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti14.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti15.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti16.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp4_ipsec_vti17.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec01.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec02.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec03.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec04.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec05.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec06.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec07.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec08.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec09.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec10.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec11.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec12.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec13.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec14.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec15.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec16.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec17.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec18.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec19.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec20.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec21.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec22.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec23.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec24.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec25.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec26.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec27.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec28.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec29.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec30.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec31.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec32.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec33.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec34.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec35.sh | 41 +++++++++++++++ .../ltp.net_stress.ipsec_udp.udp6_ipsec36.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti01.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti02.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti03.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti04.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti05.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti06.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti07.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti08.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti09.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti10.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti11.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti12.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti13.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti14.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti15.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti16.sh | 41 +++++++++++++++ ...p.net_stress.ipsec_udp.udp6_ipsec_vti17.sh | 41 +++++++++++++++ ....multicast.mcast4-group-multiple-socket.sh | 41 +++++++++++++++ ...tress.multicast.mcast4-group-same-group.sh | 41 +++++++++++++++ ...ss.multicast.mcast4-group-single-socket.sh | 41 +++++++++++++++ ...ss.multicast.mcast4-group-source-filter.sh | 41 +++++++++++++++ ...tp.net_stress.multicast.mcast4-pktfld01.sh | 41 +++++++++++++++ ...tp.net_stress.multicast.mcast4-pktfld02.sh | 41 +++++++++++++++ ....net_stress.multicast.mcast4-queryfld01.sh | 41 +++++++++++++++ ....net_stress.multicast.mcast4-queryfld02.sh | 41 +++++++++++++++ ....net_stress.multicast.mcast4-queryfld03.sh | 41 +++++++++++++++ ....net_stress.multicast.mcast4-queryfld04.sh | 41 +++++++++++++++ ....net_stress.multicast.mcast4-queryfld05.sh | 41 +++++++++++++++ ....net_stress.multicast.mcast4-queryfld06.sh | 41 +++++++++++++++ ....multicast.mcast6-group-multiple-socket.sh | 41 +++++++++++++++ ...tress.multicast.mcast6-group-same-group.sh | 41 +++++++++++++++ ...ss.multicast.mcast6-group-single-socket.sh | 41 +++++++++++++++ ...ss.multicast.mcast6-group-source-filter.sh | 41 +++++++++++++++ ...tp.net_stress.multicast.mcast6-pktfld01.sh | 41 +++++++++++++++ ...tp.net_stress.multicast.mcast6-pktfld02.sh | 41 +++++++++++++++ ....net_stress.multicast.mcast6-queryfld01.sh | 41 +++++++++++++++ ....net_stress.multicast.mcast6-queryfld02.sh | 41 +++++++++++++++ ....net_stress.multicast.mcast6-queryfld03.sh | 41 +++++++++++++++ ....net_stress.multicast.mcast6-queryfld04.sh | 41 +++++++++++++++ ....net_stress.multicast.mcast6-queryfld05.sh | 41 +++++++++++++++ ....net_stress.multicast.mcast6-queryfld06.sh | 41 +++++++++++++++ .../ltp.net_stress.route.route4-change-dst.sh | 41 +++++++++++++++ .../ltp.net_stress.route.route4-change-gw.sh | 41 +++++++++++++++ .../ltp.net_stress.route.route4-change-if.sh | 41 +++++++++++++++ ..._stress.route.route4-change-netlink-dst.sh | 41 +++++++++++++++ ...t_stress.route.route4-change-netlink-gw.sh | 41 +++++++++++++++ ...t_stress.route.route4-change-netlink-if.sh | 41 +++++++++++++++ .../ltp.net_stress.route.route4-redirect.sh | 41 +++++++++++++++ .../ltp.net_stress.route.route6-change-dst.sh | 41 +++++++++++++++ .../ltp.net_stress.route.route6-change-gw.sh | 41 +++++++++++++++ .../ltp.net_stress.route.route6-change-if.sh | 41 +++++++++++++++ ..._stress.route.route6-change-netlink-dst.sh | 41 +++++++++++++++ ...t_stress.route.route6-change-netlink-gw.sh | 41 +++++++++++++++ ...t_stress.route.route6-change-netlink-if.sh | 41 +++++++++++++++ .../ltp.net_stress.route.route6-redirect.sh | 41 +++++++++++++++ testcase/nptl/ltp.nptl.nptl01.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.migrate_pages01.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.migrate_pages02.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.migrate_pages03.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.move_pages01.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.move_pages02.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.move_pages03.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.move_pages04.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.move_pages05.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.move_pages06.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.move_pages07.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.move_pages09.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.move_pages10.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.move_pages11.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.move_pages12.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.numa_testcases.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.set_mempolicy01.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.set_mempolicy02.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.set_mempolicy03.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.set_mempolicy04.sh | 41 +++++++++++++++ testcase/numa/ltp.numa.set_mempolicy05.sh | 41 +++++++++++++++ ...ltp.power_management_tests.runpwtests01.sh | 41 +++++++++++++++ ...ltp.power_management_tests.runpwtests02.sh | 41 +++++++++++++++ ...ltp.power_management_tests.runpwtests03.sh | 41 +++++++++++++++ ...ltp.power_management_tests.runpwtests04.sh | 41 +++++++++++++++ ...ltp.power_management_tests.runpwtests06.sh | 41 +++++++++++++++ ..._tests_exclusive.runpwtests_exclusive01.sh | 41 +++++++++++++++ ..._tests_exclusive.runpwtests_exclusive02.sh | 41 +++++++++++++++ ..._tests_exclusive.runpwtests_exclusive03.sh | 41 +++++++++++++++ ..._tests_exclusive.runpwtests_exclusive04.sh | 41 +++++++++++++++ ..._tests_exclusive.runpwtests_exclusive05.sh | 41 +++++++++++++++ testcase/pty/ltp.pty.hangup01.sh | 41 +++++++++++++++ testcase/pty/ltp.pty.ptem01.sh | 41 +++++++++++++++ testcase/pty/ltp.pty.pty01.sh | 41 +++++++++++++++ testcase/pty/ltp.pty.pty02.sh | 41 +++++++++++++++ testcase/pty/ltp.pty.pty03.sh | 41 +++++++++++++++ testcase/pty/ltp.pty.pty04.sh | 41 +++++++++++++++ testcase/pty/ltp.pty.pty05.sh | 41 +++++++++++++++ testcase/pty/ltp.pty.pty06.sh | 41 +++++++++++++++ testcase/pty/ltp.pty.pty07.sh | 41 +++++++++++++++ testcase/s390x_tests/ltp.s390x_tests.vmcp.sh | 41 +++++++++++++++ testcase/sched/ltp.sched.autogroup01.sh | 41 +++++++++++++++ testcase/sched/ltp.sched.cfs_bandwidth01.sh | 41 +++++++++++++++ testcase/sched/ltp.sched.hackbench01.sh | 41 +++++++++++++++ testcase/sched/ltp.sched.hackbench02.sh | 41 +++++++++++++++ testcase/sched/ltp.sched.proc_sched_rt01.sh | 52 +++++++++++++++++++ testcase/sched/ltp.sched.pth_str01.sh | 41 +++++++++++++++ testcase/sched/ltp.sched.pth_str02.sh | 41 +++++++++++++++ testcase/sched/ltp.sched.pth_str03.sh | 41 +++++++++++++++ testcase/sched/ltp.sched.sched_cli_serv.sh | 41 +++++++++++++++ testcase/sched/ltp.sched.sched_stress.sh | 42 +++++++++++++++ testcase/sched/ltp.sched.starvation.sh | 52 +++++++++++++++++++ testcase/sched/ltp.sched.time-schedule01.sh | 41 +++++++++++++++ testcase/sched/ltp.sched.trace_sched01.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf101.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf102.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf103.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf104.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf105.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf106.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf107.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf108.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf109.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf110.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf111.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf112.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf113.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf114.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf115.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf116.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf117.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf118.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf119.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf120.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf121.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf122.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf123.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf124.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf125.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf126.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf127.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf128.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf129.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf130.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf201.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf202.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf203.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf204.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf205.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf206.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf207.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf208.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf209.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf210.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf211.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf212.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf213.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf214.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf215.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf216.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf217.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf218.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf219.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf220.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf221.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf222.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf223.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf224.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf225.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf226.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf227.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf228.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf229.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf230.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf301.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf302.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf303.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf304.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf305.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf306.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf307.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf308.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf309.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf310.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf311.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf312.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf313.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf314.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf315.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf316.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf317.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf318.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf319.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf320.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf321.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf322.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf323.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf324.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf325.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf326.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf327.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf328.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf329.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf330.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf701.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf702.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf703.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf704.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf705.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf706.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf707.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf708.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf709.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf710.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf711.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf712.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf713.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf714.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf715.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf716.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf717.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf718.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf719.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf720.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf721.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf722.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf723.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf724.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf725.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf726.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf727.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf728.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.gf729.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.gf730.sh | 41 +++++++++++++++ .../ltp.scsi_debug.part1.rwtest01.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.rwtest02.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.rwtest03.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.rwtest04.sh | 42 +++++++++++++++ .../ltp.scsi_debug.part1.rwtest05.sh | 41 +++++++++++++++ testcase/smack/ltp.smack.smack_file_access.sh | 41 +++++++++++++++ testcase/smack/ltp.smack.smack_set_ambient.sh | 41 +++++++++++++++ testcase/smack/ltp.smack.smack_set_cipso.sh | 41 +++++++++++++++ testcase/smack/ltp.smack.smack_set_current.sh | 41 +++++++++++++++ testcase/smack/ltp.smack.smack_set_direct.sh | 41 +++++++++++++++ testcase/smack/ltp.smack.smack_set_doi.sh | 41 +++++++++++++++ testcase/smack/ltp.smack.smack_set_load.sh | 41 +++++++++++++++ .../smack/ltp.smack.smack_set_netlabel.sh | 41 +++++++++++++++ testcase/smack/ltp.smack.smack_set_onlycap.sh | 41 +++++++++++++++ .../ltp.smack.smack_set_socket_labels.sh | 41 +++++++++++++++ testcase/smoketest/ltp.smoketest.access01.sh | 41 +++++++++++++++ testcase/smoketest/ltp.smoketest.chdir01.sh | 41 +++++++++++++++ testcase/smoketest/ltp.smoketest.df01_sh.sh | 41 +++++++++++++++ testcase/smoketest/ltp.smoketest.fork01.sh | 41 +++++++++++++++ testcase/smoketest/ltp.smoketest.macsec02.sh | 41 +++++++++++++++ testcase/smoketest/ltp.smoketest.ping602.sh | 41 +++++++++++++++ testcase/smoketest/ltp.smoketest.rename01A.sh | 41 +++++++++++++++ .../smoketest/ltp.smoketest.shell_test01.sh | 41 +++++++++++++++ testcase/smoketest/ltp.smoketest.splice02.sh | 41 +++++++++++++++ testcase/smoketest/ltp.smoketest.stat04.sh | 41 +++++++++++++++ testcase/smoketest/ltp.smoketest.symlink01.sh | 41 +++++++++++++++ testcase/smoketest/ltp.smoketest.time01.sh | 41 +++++++++++++++ testcase/smoketest/ltp.smoketest.utime07.sh | 52 +++++++++++++++++++ testcase/smoketest/ltp.smoketest.wait02.sh | 41 +++++++++++++++ testcase/smoketest/ltp.smoketest.write01.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgctl01.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgctl02.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgctl03.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgctl04.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgctl05.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgctl06.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgctl12.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgget01.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgget02.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgget03.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgget04.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgget05.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgrcv01.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgrcv02.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgrcv03.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgrcv05.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgrcv06.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgrcv07.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgrcv08.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgsnd01.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgsnd02.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgsnd05.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.msgsnd06.sh | 41 +++++++++++++++ .../ltp.syscalls-ipc.msgstress01.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.semctl01.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.semctl02.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.semctl03.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.semctl04.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.semctl05.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.semctl06.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.semctl07.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.semctl08.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.semctl09.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.semget01.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.semget02.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.semget05.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.semop01.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.semop02.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.semop03.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmat01.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmat02.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmat04.sh | 52 +++++++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmctl01.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmctl02.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmctl03.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmctl04.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmctl05.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmctl06.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmctl07.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmctl08.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmdt01.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmdt02.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmget02.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmget03.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmget04.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmget05.sh | 41 +++++++++++++++ .../syscalls-ipc/ltp.syscalls-ipc.shmget06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.abort01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.accept01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.accept02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.accept03.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.accept4_01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.access01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.access02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.access03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.access04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.acct01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.acct02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.add_key01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.add_key02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.add_key03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.add_key04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.add_key05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.adjtimex01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.adjtimex02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.adjtimex03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.alarm02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.alarm03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.alarm05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.alarm06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.alarm07.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.arch_prctl01.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.bind01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.bind02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.bind03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.bind04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.bind05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.bind06.sh | 42 +++++++++++++++ testcase/syscalls/ltp.syscalls.bpf_map01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.bpf_prog01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.bpf_prog02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.bpf_prog03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.bpf_prog04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.bpf_prog05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.bpf_prog06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.bpf_prog07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.brk01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.brk02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.cacheflush01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.capget01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.capget02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.capset01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.capset02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.capset03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.capset04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chdir01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chdir01A.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chdir04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chmod01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chmod01A.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chmod03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chmod05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chmod06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chmod07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chown01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chown01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chown02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chown02_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chown03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chown03_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chown04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chown04_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chown05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chown05_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chroot01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chroot02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chroot03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.chroot04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.clock_adjtime01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.clock_adjtime02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.clock_getres01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.clock_gettime01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.clock_gettime02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.clock_gettime03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.clock_gettime04.sh | 41 +++++++++++++++ .../ltp.syscalls.clock_nanosleep01.sh | 41 +++++++++++++++ .../ltp.syscalls.clock_nanosleep02.sh | 41 +++++++++++++++ .../ltp.syscalls.clock_nanosleep03.sh | 41 +++++++++++++++ .../ltp.syscalls.clock_nanosleep04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.clock_settime01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.clock_settime02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.clock_settime03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.clone01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.clone02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.clone03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.clone04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.clone05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.clone06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.clone07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.clone08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.clone09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.clone301.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.clone302.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.clone303.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.close01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.close02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.close_range01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.close_range02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.confstr01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.connect01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.connect02.sh | 41 +++++++++++++++ .../ltp.syscalls.copy_file_range01.sh | 41 +++++++++++++++ .../ltp.syscalls.copy_file_range02.sh | 41 +++++++++++++++ .../ltp.syscalls.copy_file_range03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.creat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.creat03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.creat04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.creat05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.creat06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.creat07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.creat08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.creat09.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.delete_module01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.delete_module02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.delete_module03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dirtyc0w.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.dirtyc0w_shmem.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dirtypipe.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dup01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dup02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dup03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dup04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dup05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dup06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dup07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dup201.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dup202.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dup203.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dup204.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dup205.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dup206.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dup207.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dup3_01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.dup3_02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.epoll01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.epoll_create01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.epoll_create02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.epoll_create1_01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.epoll_create1_02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.epoll_ctl01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.epoll_ctl02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.epoll_ctl03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.epoll_ctl04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.epoll_ctl05.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.epoll_pwait01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.epoll_pwait02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.epoll_pwait03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.epoll_pwait04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.epoll_pwait05.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.epoll_wait01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.epoll_wait02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.epoll_wait03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.epoll_wait04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.epoll_wait05.sh | 52 +++++++++++++++++++ .../syscalls/ltp.syscalls.epoll_wait06.sh | 52 +++++++++++++++++++ .../syscalls/ltp.syscalls.epoll_wait07.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.eventfd01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.eventfd02.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.eventfd03.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.eventfd04.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.eventfd05.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.eventfd06.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.eventfd2_01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.eventfd2_02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.eventfd2_03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.execl01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.execle01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.execlp01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.execv01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.execve01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.execve02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.execve03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.execve04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.execve05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.execve06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.execveat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.execveat02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.execveat03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.execvp01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.exit01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.exit02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.exit_group01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.faccessat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.faccessat02.sh | 52 +++++++++++++++++++ .../syscalls/ltp.syscalls.faccessat201.sh | 52 +++++++++++++++++++ .../syscalls/ltp.syscalls.faccessat202.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.fallocate01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fallocate02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fallocate03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fallocate04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fallocate05.sh | 42 +++++++++++++++ testcase/syscalls/ltp.syscalls.fallocate06.sh | 42 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify10.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify11.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify12.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify13.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify14.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify15.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify17.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify18.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify19.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify20.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify21.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify22.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify23.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.fchdir01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchdir02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchdir03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchmod01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchmod02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchmod03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchmod04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchmod05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchmod06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchmodat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchmodat02.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.fchown01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchown01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchown02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchown02_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchown03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchown03_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchown04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchown04_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchown05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchown05_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchownat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fchownat02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl01_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl02_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl03_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl04_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl05_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl07_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl08_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl09_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl10.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl10_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl11.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl11_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl12.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl12_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl13.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl13_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl14.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl14_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl15.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl15_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl16_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl17.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl17_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl18.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl18_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl19.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl19_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl20.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl20_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl21.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl21_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl22.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl22_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl23.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl23_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl24.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl24_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl25.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl25_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl26.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl26_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl27.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl27_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl29.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl29_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl30.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl30_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl31.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl31_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl32.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl32_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl33.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl33_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl34.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl34_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl35.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl35_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl36.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl36_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl37.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl37_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl38.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl38_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl39.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl39_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fdatasync01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fdatasync02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fdatasync03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fgetxattr01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fgetxattr02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fgetxattr03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.finit_module01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.finit_module02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.flistxattr01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.flistxattr02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.flistxattr03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.flock01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.flock02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.flock03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.flock04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.flock06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fmtmsg01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fork01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fork03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fork04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fork05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fork06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fork07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fork08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fork09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fork10.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fork11.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fork13.sh | 42 +++++++++++++++ testcase/syscalls/ltp.syscalls.fork14.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fpathconf01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.fremovexattr01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.fremovexattr02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fsconfig01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fsconfig02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fsconfig03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fsetxattr01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fsetxattr02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fsmount01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fsmount02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fsopen01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fsopen02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fspick01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fspick02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fstat02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fstat02_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fstat03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fstat03_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fstatat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fstatfs01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.fstatfs01_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fstatfs02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.fstatfs02_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fsync01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fsync02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fsync03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.fsync04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ftruncate01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.ftruncate01_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ftruncate03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.ftruncate03_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ftruncate04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.ftruncate04_64.sh | 41 +++++++++++++++ .../ltp.syscalls.futex_cmp_requeue01.sh | 41 +++++++++++++++ .../ltp.syscalls.futex_cmp_requeue02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.futex_wait01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.futex_wait02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.futex_wait03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.futex_wait04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.futex_wait05.sh | 41 +++++++++++++++ .../ltp.syscalls.futex_wait_bitset01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.futex_waitv01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.futex_waitv02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.futex_waitv03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.futex_wake01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.futex_wake02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.futex_wake03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.futex_wake04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.futimesat01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.get_mempolicy01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.get_mempolicy02.sh | 41 +++++++++++++++ .../ltp.syscalls.get_robust_list01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getcontext01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getcpu01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getcwd01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getcwd02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getcwd03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getcwd04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getdents01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getdents02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getdomainname01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getegid01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getegid01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getegid02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getegid02_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.geteuid01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.geteuid01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.geteuid02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.geteuid02_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getgid01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getgid01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getgid03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getgid03_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getgroups01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getgroups01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getgroups03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getgroups03_16.sh | 41 +++++++++++++++ .../ltp.syscalls.gethostbyname_r01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.gethostid01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.gethostname01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.gethostname02.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.getitimer01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getitimer02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getpagesize01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getpeername01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getpgid01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getpgid02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getpgrp01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getpid01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getpid02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getppid01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getppid02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getpriority01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getpriority02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getrandom01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getrandom02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getrandom03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getrandom04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getrandom05.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.getresgid01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getresgid01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getresgid02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getresgid02_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getresgid03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getresgid03_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getresuid01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getresuid01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getresuid02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getresuid02_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getresuid03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getresuid03_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getrlimit01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getrlimit02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getrlimit03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getrusage01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getrusage02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getrusage03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getrusage04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getsid01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getsid02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getsockname01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getsockopt01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.getsockopt02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.gettid01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.gettid02.sh | 52 +++++++++++++++++++ .../syscalls/ltp.syscalls.gettimeofday01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.gettimeofday02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getuid01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getuid01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getuid03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getuid03_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getxattr01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getxattr02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getxattr03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getxattr04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.getxattr05.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.init_module01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.init_module02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.inotify01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.inotify02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.inotify03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.inotify04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.inotify05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.inotify06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.inotify07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.inotify08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.inotify09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.inotify10.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.inotify11.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.inotify12.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.inotify_init1_01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.inotify_init1_02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.io_cancel01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.io_cancel02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.io_destroy01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.io_destroy02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.io_getevents01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.io_getevents02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.io_pgetevents01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.io_pgetevents02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.io_setup01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.io_setup02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.io_submit01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.io_submit02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.io_submit03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.io_uring01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.io_uring02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl01.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl02.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl09.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.ioctl_loop01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.ioctl_loop02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.ioctl_loop03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.ioctl_loop04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.ioctl_loop05.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.ioctl_loop06.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.ioctl_loop07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl_ns01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl_ns02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl_ns03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl_ns04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl_ns05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl_ns06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl_ns07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl_sg01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioperm01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ioperm02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.iopl01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.iopl02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.ioprio_get01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.ioprio_set01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.ioprio_set02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.ioprio_set03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.kcmp01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.kcmp02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.kcmp03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.keyctl01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.keyctl02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.keyctl03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.keyctl04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.keyctl05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.keyctl06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.keyctl07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.keyctl08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.keyctl09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.kill02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.kill03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.kill05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.kill06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.kill07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.kill08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.kill09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.kill10.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.kill11.sh | 42 +++++++++++++++ testcase/syscalls/ltp.syscalls.kill12.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.kill13.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lchown01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lchown01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lchown02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lchown02_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lchown03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lchown03_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.leapsec01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lgetxattr01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lgetxattr02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.link01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.link02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.link04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.link05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.link08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.linkat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.linkat02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.listen01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.listxattr01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.listxattr02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.listxattr03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.llistxattr01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.llistxattr02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.llistxattr03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.llseek01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.llseek02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.llseek03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.lremovexattr01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lseek01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lseek02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lseek07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lseek11.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lstat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lstat01A.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lstat01A_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lstat01_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lstat02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.lstat02_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.madvise01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.madvise02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.madvise03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.madvise05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.madvise06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.madvise07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.madvise08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.madvise09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.madvise10.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.madvise11.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mallinfo02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.mallinfo2_01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mallopt01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mbind01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mbind02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mbind03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mbind04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.membarrier01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.memcmp01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.memcpy01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.memfd_create01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.memfd_create02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.memfd_create03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.memfd_create04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.memset01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.migrate_pages01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.migrate_pages02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.migrate_pages03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mincore01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mincore02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mincore03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mincore04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mkdir02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mkdir03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mkdir04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mkdir05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mkdir09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mkdirat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mkdirat02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mknod01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mknod02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mknod03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mknod04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mknod05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mknod06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mknod07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mknod08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mknod09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mknodat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mknodat02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mlock01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mlock02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mlock03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mlock04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mlock05.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.mlock201.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mlock202.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mlock203.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mlockall01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mlockall02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mlockall03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap12.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap13.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap14.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap15.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap17.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap18.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap19.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mmap20.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.modify_ldt01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.modify_ldt02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.modify_ldt03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mount01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mount02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mount03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mount04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mount05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mount06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mount07.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.mount_setattr01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.move_mount01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.move_mount02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.move_pages01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.move_pages02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.move_pages03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.move_pages04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.move_pages05.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.move_pages06.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.move_pages07.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.move_pages09.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.move_pages10.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.move_pages11.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.move_pages12.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mprotect01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mprotect02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mprotect03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mprotect04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mprotect05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mq_notify01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mq_notify02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mq_notify03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mq_open01.sh | 41 +++++++++++++++ .../ltp.syscalls.mq_timedreceive01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.mq_timedsend01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mq_unlink01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mremap01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mremap02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mremap03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mremap04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mremap05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.mremap06.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.msgctl01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgctl02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgctl03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgctl04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgctl05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgctl06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgctl12.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgget01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgget02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgget03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgget04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgget05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgrcv01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgrcv02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgrcv03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgrcv05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgrcv06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgrcv07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgrcv08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgsnd01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgsnd02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgsnd05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgsnd06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msgstress01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msync01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msync02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msync03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.msync04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.munlock01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.munlock02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.munlockall01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.munmap01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.munmap02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.munmap03.sh | 41 +++++++++++++++ .../ltp.syscalls.name_to_handle_at01.sh | 41 +++++++++++++++ .../ltp.syscalls.name_to_handle_at02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.nanosleep01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.nanosleep02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.nanosleep04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.newuname01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.nftw01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.nftw6401.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.nice01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.nice02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.nice03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.nice04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.nice05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.open01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.open01A.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.open02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.open03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.open04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.open06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.open07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.open08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.open09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.open10.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.open11.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.open12.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.open13.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.open14.sh | 41 +++++++++++++++ .../ltp.syscalls.open_by_handle_at01.sh | 41 +++++++++++++++ .../ltp.syscalls.open_by_handle_at02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.open_tree01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.open_tree02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.openat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.openat02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.openat03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.openat04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.openat201.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.openat202.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.openat203.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pathconf01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pathconf02.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.pause01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pause02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pause03.sh | 41 +++++++++++++++ .../ltp.syscalls.perf_event_open01.sh | 41 +++++++++++++++ .../ltp.syscalls.perf_event_open02.sh | 41 +++++++++++++++ .../ltp.syscalls.perf_event_open03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.personality01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.personality02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.pidfd_getfd01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.pidfd_getfd02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.pidfd_open01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.pidfd_open02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.pidfd_open03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.pidfd_open04.sh | 41 +++++++++++++++ .../ltp.syscalls.pidfd_send_signal01.sh | 41 +++++++++++++++ .../ltp.syscalls.pidfd_send_signal02.sh | 41 +++++++++++++++ .../ltp.syscalls.pidfd_send_signal03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pipe01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pipe02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pipe03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pipe04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pipe05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pipe06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pipe07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pipe08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pipe09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pipe10.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pipe11.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pipe12.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pipe13.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pipe14.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.pipe15.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.pipe2_01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pipe2_02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pipe2_04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.pivot_root01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pkey01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.poll01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.poll02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.posix_fadvise01.sh | 41 +++++++++++++++ .../ltp.syscalls.posix_fadvise01_64.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.posix_fadvise02.sh | 41 +++++++++++++++ .../ltp.syscalls.posix_fadvise02_64.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.posix_fadvise03.sh | 41 +++++++++++++++ .../ltp.syscalls.posix_fadvise03_64.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.posix_fadvise04.sh | 41 +++++++++++++++ .../ltp.syscalls.posix_fadvise04_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ppoll01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.prctl01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.prctl02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.prctl03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.prctl04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.prctl05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.prctl06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.prctl07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.prctl08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.prctl09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.prctl10.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pread01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pread01_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pread02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pread02_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.preadv01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.preadv01_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.preadv02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.preadv02_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.preadv03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.preadv03_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.preadv201.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.preadv201_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.preadv202.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.preadv202_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.preadv203.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.preadv203_64.sh | 41 +++++++++++++++ .../ltp.syscalls.process_madvise01.sh | 52 +++++++++++++++++++ .../ltp.syscalls.process_vm_readv01.sh | 41 +++++++++++++++ .../ltp.syscalls.process_vm_readv02.sh | 41 +++++++++++++++ .../ltp.syscalls.process_vm_readv03.sh | 41 +++++++++++++++ .../ltp.syscalls.process_vm_writev01.sh | 41 +++++++++++++++ .../ltp.syscalls.process_vm_writev02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.profil01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.prot_hsymlinks.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pselect01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.pselect01_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pselect02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.pselect02_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pselect03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.pselect03_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ptrace01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ptrace02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ptrace03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ptrace04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ptrace05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ptrace06.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.ptrace07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ptrace08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ptrace09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ptrace10.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ptrace11.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pwrite01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pwrite01_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pwrite02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pwrite02_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pwrite03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pwrite03_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pwrite04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pwrite04_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pwritev01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.pwritev01_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pwritev02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.pwritev02_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pwritev03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.pwritev03_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pwritev201.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.pwritev201_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.pwritev202.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.pwritev202_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.qmm01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.quotactl01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.quotactl02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.quotactl03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.quotactl04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.quotactl05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.quotactl06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.quotactl07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.quotactl08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.quotactl09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.read01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.read02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.read03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.read04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.readahead01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.readahead02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.readdir01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.readdir21.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.readlink01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.readlink01A.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.readlink03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.readlinkat01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.readlinkat02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.readv01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.readv02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.realpath01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.reboot01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.reboot02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.recv01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.recvfrom01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.recvmmsg01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.recvmsg01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.recvmsg02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.recvmsg03.sh | 41 +++++++++++++++ .../ltp.syscalls.remap_file_pages01.sh | 41 +++++++++++++++ .../ltp.syscalls.remap_file_pages02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.removexattr01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.removexattr02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rename01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rename01A.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rename03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rename04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rename05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rename06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rename07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rename08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rename09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rename10.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rename11.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rename12.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rename13.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rename14.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.renameat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.renameat201.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.renameat202.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.request_key01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.request_key02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.request_key03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.request_key04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.request_key05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rmdir01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rmdir02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rmdir03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.rmdir03A.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.rt_sigaction01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.rt_sigaction02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.rt_sigaction03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.rt_sigprocmask01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.rt_sigprocmask02.sh | 41 +++++++++++++++ .../ltp.syscalls.rt_sigqueueinfo01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.rt_sigsuspend01.sh | 41 +++++++++++++++ .../ltp.syscalls.rt_sigtimedwait01.sh | 41 +++++++++++++++ .../ltp.syscalls.rt_tgsigqueueinfo01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sbrk01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sbrk02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sbrk03.sh | 41 +++++++++++++++ .../ltp.syscalls.sched_get_priority_max01.sh | 41 +++++++++++++++ .../ltp.syscalls.sched_get_priority_max02.sh | 41 +++++++++++++++ .../ltp.syscalls.sched_get_priority_min01.sh | 41 +++++++++++++++ .../ltp.syscalls.sched_get_priority_min02.sh | 41 +++++++++++++++ .../ltp.syscalls.sched_getaffinity01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sched_getattr01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sched_getattr02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sched_getparam01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sched_getparam03.sh | 41 +++++++++++++++ .../ltp.syscalls.sched_getscheduler01.sh | 41 +++++++++++++++ .../ltp.syscalls.sched_getscheduler02.sh | 41 +++++++++++++++ .../ltp.syscalls.sched_rr_get_interval01.sh | 41 +++++++++++++++ .../ltp.syscalls.sched_rr_get_interval02.sh | 41 +++++++++++++++ .../ltp.syscalls.sched_rr_get_interval03.sh | 41 +++++++++++++++ .../ltp.syscalls.sched_setaffinity01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sched_setattr01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sched_setparam01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sched_setparam02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sched_setparam03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sched_setparam04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sched_setparam05.sh | 41 +++++++++++++++ .../ltp.syscalls.sched_setscheduler01.sh | 41 +++++++++++++++ .../ltp.syscalls.sched_setscheduler02.sh | 41 +++++++++++++++ .../ltp.syscalls.sched_setscheduler03.sh | 41 +++++++++++++++ .../ltp.syscalls.sched_setscheduler04.sh | 52 +++++++++++++++++++ .../syscalls/ltp.syscalls.sched_yield01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.select01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.select02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.select03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.select04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semctl01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semctl02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semctl03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semctl04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semctl05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semctl06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semctl07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semctl08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semctl09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semget01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semget02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semget05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semop01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semop02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semop03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semop04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.semop05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.send01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.send02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sendfile02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sendfile02_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sendfile03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sendfile03_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sendfile04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sendfile04_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sendfile05.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sendfile05_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sendfile06.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sendfile06_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sendfile07.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sendfile07_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sendfile08.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sendfile08_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sendfile09.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sendfile09_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sendmmsg01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sendmmsg02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sendmsg01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sendmsg02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sendmsg03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sendto01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sendto02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sendto03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.set_mempolicy01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.set_mempolicy02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.set_mempolicy03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.set_mempolicy04.sh | 41 +++++++++++++++ .../ltp.syscalls.set_robust_list01.sh | 41 +++++++++++++++ .../ltp.syscalls.set_thread_area01.sh | 41 +++++++++++++++ .../ltp.syscalls.set_tid_address01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setdomainname01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setdomainname02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setdomainname03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setegid01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setegid02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setfsgid01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setfsgid01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setfsgid02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setfsgid02_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setfsgid03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setfsgid03_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setfsuid01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setfsuid01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setfsuid02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setfsuid02_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setfsuid03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setfsuid03_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setfsuid04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setfsuid04_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setgid01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setgid01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setgid02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setgid02_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setgid03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setgid03_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setgroups01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setgroups01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setgroups02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setgroups02_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setgroups03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setgroups03_16.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sethostname01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sethostname02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sethostname03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setitimer01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setitimer02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setns01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setns02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setpgid01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setpgid02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setpgid03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setpgrp01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setpgrp02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setpriority01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setpriority02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setregid01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setregid01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setregid02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setregid02_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setregid03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setregid03_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setregid04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setregid04_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setresgid01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setresgid01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setresgid02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setresgid02_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setresgid03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setresgid03_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setresgid04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setresgid04_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setresuid01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setresuid01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setresuid02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setresuid02_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setresuid03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setresuid03_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setresuid04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setresuid04_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setresuid05.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setresuid05_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setreuid01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setreuid01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setreuid02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setreuid02_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setreuid03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setreuid03_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setreuid04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setreuid04_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setreuid05.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setreuid05_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setreuid06.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setreuid06_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setreuid07.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setreuid07_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setrlimit01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setrlimit02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setrlimit03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setrlimit04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setrlimit05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setrlimit06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setsid01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setsockopt01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setsockopt02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setsockopt03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setsockopt04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setsockopt05.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setsockopt06.sh | 42 +++++++++++++++ .../syscalls/ltp.syscalls.setsockopt07.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setsockopt08.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setsockopt09.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.setsockopt10.sh | 52 +++++++++++++++++++ .../syscalls/ltp.syscalls.settimeofday01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.settimeofday02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setuid01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setuid01_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setuid03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setuid03_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setuid04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setuid04_16.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setxattr01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setxattr02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.setxattr03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sgetmask01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmat02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmat03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmat04.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.shmctl01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmctl02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmctl03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmctl04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmctl05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmctl06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmctl07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmctl08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmdt01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmdt02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmget02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmget03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmget04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmget05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.shmget06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sigaction01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sigaction02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sigaltstack01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sigaltstack02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sighold02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.signal01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.signal02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.signal03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.signal04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.signal05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.signal06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.signalfd01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.signalfd4_01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.signalfd4_02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sigpending02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sigprocmask01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sigrelse01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sigsuspend01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sigtimedwait01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sigwait01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.sigwaitinfo01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.socket01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.socket02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.socketcall01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.socketcall02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.socketcall03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.socketpair01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.socketpair02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sockioctl01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.splice01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.splice02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.splice03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.splice04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.splice05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.splice06.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.splice07.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.splice08.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.splice09.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.ssetmask01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.stat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.stat01_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.stat02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.stat02_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.stat03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.stat03_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.stat04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.stat04_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statfs01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statfs01_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statfs02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statfs02_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statfs03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statfs03_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statvfs01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statvfs02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statx01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statx02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statx03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statx04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statx05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statx06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statx07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statx08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statx09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.statx10.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.statx11.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.statx12.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.stime01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.stime02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.string01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.swapoff01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.swapoff02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.swapon01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.swapon02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.swapon03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.switch01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.symlink01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.symlink02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.symlink03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.symlink04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.symlinkat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sync01.sh | 41 +++++++++++++++ .../ltp.syscalls.sync_file_range01.sh | 41 +++++++++++++++ .../ltp.syscalls.sync_file_range02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.syncfs01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.syscall01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sysconf01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sysctl01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sysctl03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sysctl04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sysfs01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sysfs02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sysfs03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sysfs04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sysfs05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sysinfo01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sysinfo02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.sysinfo03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.syslog11.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.syslog12.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.tee01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.tee02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.tgkill01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.tgkill02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.tgkill03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.time01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.timer_create01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.timer_create02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.timer_create03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.timer_delete01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.timer_delete02.sh | 41 +++++++++++++++ .../ltp.syscalls.timer_getoverrun01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.timer_gettime01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.timer_settime01.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.timer_settime02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.timer_settime03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.timerfd01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.timerfd02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.timerfd04.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.timerfd_create01.sh | 41 +++++++++++++++ .../ltp.syscalls.timerfd_gettime01.sh | 41 +++++++++++++++ .../ltp.syscalls.timerfd_settime01.sh | 41 +++++++++++++++ .../ltp.syscalls.timerfd_settime02.sh | 42 +++++++++++++++ testcase/syscalls/ltp.syscalls.times01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.times03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.tkill01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.tkill02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.truncate02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.truncate02_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.truncate03.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.truncate03_64.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ulimit01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.umask01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.umount01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.umount02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.umount03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.umount2_01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.umount2_02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.uname01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.uname02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.uname04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.unlink01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.unlink05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.unlink07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.unlink08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.unlink09.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.unlinkat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.unshare01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.unshare02.sh | 41 +++++++++++++++ .../syscalls/ltp.syscalls.userfaultfd01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ustat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.ustat02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.utime01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.utime02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.utime03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.utime04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.utime05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.utime06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.utime07.sh | 52 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.utimensat01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.utimes01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.vfork01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.vfork02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.vhangup01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.vhangup02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.vmsplice01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.vmsplice02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.vmsplice03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.vmsplice04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.wait01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.wait02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.wait401.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.wait402.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.wait403.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitid01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitid02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitid03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitid04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitid05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitid06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitid07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitid08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitid09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitid10.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitid11.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitpid01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitpid03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitpid04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitpid06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitpid07.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitpid08.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitpid09.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitpid10.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitpid11.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitpid12.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.waitpid13.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.write01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.write02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.write03.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.write04.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.write05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.write06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.writev01.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.writev02.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.writev03.sh | 42 +++++++++++++++ testcase/syscalls/ltp.syscalls.writev05.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.writev06.sh | 41 +++++++++++++++ testcase/syscalls/ltp.syscalls.writev07.sh | 41 +++++++++++++++ testcase/tpm_tools/ltp.tpm_tools.tpm01.sh | 41 +++++++++++++++ testcase/tpm_tools/ltp.tpm_tools.tpm02.sh | 41 +++++++++++++++ testcase/tpm_tools/ltp.tpm_tools.tpm03.sh | 41 +++++++++++++++ testcase/tpm_tools/ltp.tpm_tools.tpm04.sh | 41 +++++++++++++++ testcase/tpm_tools/ltp.tpm_tools.tpm05.sh | 41 +++++++++++++++ testcase/tpm_tools/ltp.tpm_tools.tpm06.sh | 41 +++++++++++++++ testcase/tpm_tools/ltp.tpm_tools.tpm07.sh | 41 +++++++++++++++ .../tpm_tools/ltp.tpm_tools.tpmtoken01.sh | 41 +++++++++++++++ .../tpm_tools/ltp.tpm_tools.tpmtoken02.sh | 41 +++++++++++++++ .../tpm_tools/ltp.tpm_tools.tpmtoken03.sh | 41 +++++++++++++++ .../tpm_tools/ltp.tpm_tools.tpmtoken04.sh | 41 +++++++++++++++ .../tpm_tools/ltp.tpm_tools.tpmtoken05.sh | 41 +++++++++++++++ .../tracing/ltp.tracing.dynamic_debug01.sh | 41 +++++++++++++++ .../tracing/ltp.tracing.ftrace-stress-test.sh | 42 +++++++++++++++ .../ltp.tracing.ftrace_regression01.sh | 41 +++++++++++++++ .../ltp.tracing.ftrace_regression02.sh | 41 +++++++++++++++ .../tracing/ltp.tracing.pt_disable_branch.sh | 41 +++++++++++++++ testcase/tracing/ltp.tracing.pt_ex_kernel.sh | 41 +++++++++++++++ testcase/tracing/ltp.tracing.pt_ex_user.sh | 41 +++++++++++++++ .../ltp.tracing.pt_full_trace_basic.sh | 41 +++++++++++++++ .../ltp.tracing.pt_snapshot_trace_basic.sh | 41 +++++++++++++++ testcase/uevent/ltp.uevent.uevent01.sh | 41 +++++++++++++++ testcase/uevent/ltp.uevent.uevent02.sh | 41 +++++++++++++++ testcase/uevent/ltp.uevent.uevent03.sh | 41 +++++++++++++++ .../watchqueue/ltp.watchqueue.wqueue01.sh | 41 +++++++++++++++ .../watchqueue/ltp.watchqueue.wqueue02.sh | 41 +++++++++++++++ .../watchqueue/ltp.watchqueue.wqueue03.sh | 41 +++++++++++++++ .../watchqueue/ltp.watchqueue.wqueue04.sh | 41 +++++++++++++++ .../watchqueue/ltp.watchqueue.wqueue05.sh | 41 +++++++++++++++ .../watchqueue/ltp.watchqueue.wqueue06.sh | 41 +++++++++++++++ .../watchqueue/ltp.watchqueue.wqueue07.sh | 41 +++++++++++++++ .../watchqueue/ltp.watchqueue.wqueue08.sh | 41 +++++++++++++++ .../watchqueue/ltp.watchqueue.wqueue09.sh | 41 +++++++++++++++ 4042 files changed, 168198 insertions(+), 1 deletion(-) create mode 100755 testcase/can/ltp.can.can_bcm01.sh create mode 100755 testcase/can/ltp.can.can_filter.sh create mode 100755 testcase/can/ltp.can.can_rcv_own_msgs.sh create mode 100755 testcase/capability/ltp.capability.cap_bounds.sh create mode 100755 testcase/capability/ltp.capability.check_keepcaps01.sh create mode 100755 testcase/capability/ltp.capability.check_keepcaps02.sh create mode 100755 testcase/capability/ltp.capability.check_keepcaps03.sh create mode 100755 testcase/capability/ltp.capability.filecaps.sh create mode 100755 testcase/commands/ltp.commands.ar_sh.sh create mode 100755 testcase/commands/ltp.commands.cp01_sh.sh create mode 100755 testcase/commands/ltp.commands.cpio01_sh.sh create mode 100755 testcase/commands/ltp.commands.df01_sh.sh create mode 100755 testcase/commands/ltp.commands.du01_sh.sh create mode 100755 testcase/commands/ltp.commands.file01_sh.sh create mode 100755 testcase/commands/ltp.commands.gdb01_sh.sh create mode 100755 testcase/commands/ltp.commands.gzip01_sh.sh create mode 100755 testcase/commands/ltp.commands.insmod01_sh.sh create mode 100755 testcase/commands/ltp.commands.keyctl01_sh.sh create mode 100755 testcase/commands/ltp.commands.ld01_sh.sh create mode 100755 testcase/commands/ltp.commands.ldd01_sh.sh create mode 100755 testcase/commands/ltp.commands.ln01_sh.sh create mode 100755 testcase/commands/ltp.commands.logrotate_sh.sh create mode 100755 testcase/commands/ltp.commands.lsmod01_sh.sh create mode 100755 testcase/commands/ltp.commands.mkdir01_sh.sh create mode 100755 testcase/commands/ltp.commands.mkfs01_btrfs_sh.sh create mode 100755 testcase/commands/ltp.commands.mkfs01_ext2_sh.sh create mode 100755 testcase/commands/ltp.commands.mkfs01_ext3_sh.sh create mode 100755 testcase/commands/ltp.commands.mkfs01_ext4_sh.sh create mode 100755 testcase/commands/ltp.commands.mkfs01_minix_sh.sh create mode 100755 testcase/commands/ltp.commands.mkfs01_msdos_sh.sh create mode 100755 testcase/commands/ltp.commands.mkfs01_ntfs_sh.sh create mode 100755 testcase/commands/ltp.commands.mkfs01_sh.sh create mode 100755 testcase/commands/ltp.commands.mkfs01_vfat_sh.sh create mode 100755 testcase/commands/ltp.commands.mkfs01_xfs_sh.sh create mode 100755 testcase/commands/ltp.commands.mkswap01_sh.sh create mode 100755 testcase/commands/ltp.commands.mv01_sh.sh create mode 100755 testcase/commands/ltp.commands.nm01_sh.sh create mode 100755 testcase/commands/ltp.commands.shell_test01.sh create mode 100755 testcase/commands/ltp.commands.sysctl01_sh.sh create mode 100755 testcase/commands/ltp.commands.sysctl02_sh.sh create mode 100755 testcase/commands/ltp.commands.tar01_sh.sh create mode 100755 testcase/commands/ltp.commands.unshare01_sh.sh create mode 100755 testcase/commands/ltp.commands.unzip01_sh.sh create mode 100755 testcase/commands/ltp.commands.wc01_sh.sh create mode 100755 testcase/commands/ltp.commands.which01_sh.sh create mode 100755 testcase/containers/ltp.containers.clock_gettime03.sh create mode 100755 testcase/containers/ltp.containers.clock_nanosleep03.sh create mode 100755 testcase/containers/ltp.containers.mesgq_nstest_clone.sh create mode 100755 testcase/containers/ltp.containers.mesgq_nstest_none.sh create mode 100755 testcase/containers/ltp.containers.mesgq_nstest_unshare.sh create mode 100755 testcase/containers/ltp.containers.mountns01.sh create mode 100755 testcase/containers/ltp.containers.mountns02.sh create mode 100755 testcase/containers/ltp.containers.mountns03.sh create mode 100755 testcase/containers/ltp.containers.mountns04.sh create mode 100755 testcase/containers/ltp.containers.mqns_01.sh create mode 100755 testcase/containers/ltp.containers.mqns_01_clone.sh create mode 100755 testcase/containers/ltp.containers.mqns_01_unshare.sh create mode 100755 testcase/containers/ltp.containers.mqns_02.sh create mode 100755 testcase/containers/ltp.containers.mqns_02_clone.sh create mode 100755 testcase/containers/ltp.containers.mqns_02_unshare.sh create mode 100755 testcase/containers/ltp.containers.mqns_03_clone.sh create mode 100755 testcase/containers/ltp.containers.mqns_03_unshare.sh create mode 100755 testcase/containers/ltp.containers.mqns_04_clone.sh create mode 100755 testcase/containers/ltp.containers.mqns_04_unshare.sh create mode 100755 testcase/containers/ltp.containers.msg_comm.sh create mode 100755 testcase/containers/ltp.containers.netns_breakns_ip_ipv4_ioctl.sh create mode 100755 testcase/containers/ltp.containers.netns_breakns_ip_ipv4_netlink.sh create mode 100755 testcase/containers/ltp.containers.netns_breakns_ip_ipv6_ioctl.sh create mode 100755 testcase/containers/ltp.containers.netns_breakns_ip_ipv6_netlink.sh create mode 100755 testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv4_ioctl.sh create mode 100755 testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv4_netlink.sh create mode 100755 testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv6_ioctl.sh create mode 100755 testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv6_netlink.sh create mode 100755 testcase/containers/ltp.containers.netns_comm_ip_ipv4_ioctl.sh create mode 100755 testcase/containers/ltp.containers.netns_comm_ip_ipv4_netlink.sh create mode 100755 testcase/containers/ltp.containers.netns_comm_ip_ipv6_ioctl.sh create mode 100755 testcase/containers/ltp.containers.netns_comm_ip_ipv6_netlink.sh create mode 100755 testcase/containers/ltp.containers.netns_comm_ns_exec_ipv4_ioctl.sh create mode 100755 testcase/containers/ltp.containers.netns_comm_ns_exec_ipv4_netlink.sh create mode 100755 testcase/containers/ltp.containers.netns_comm_ns_exec_ipv6_ioctl.sh create mode 100755 testcase/containers/ltp.containers.netns_comm_ns_exec_ipv6_netlink.sh create mode 100755 testcase/containers/ltp.containers.netns_netlink.sh create mode 100755 testcase/containers/ltp.containers.netns_sysfs.sh create mode 100755 testcase/containers/ltp.containers.pidns01.sh create mode 100755 testcase/containers/ltp.containers.pidns02.sh create mode 100755 testcase/containers/ltp.containers.pidns03.sh create mode 100755 testcase/containers/ltp.containers.pidns04.sh create mode 100755 testcase/containers/ltp.containers.pidns05.sh create mode 100755 testcase/containers/ltp.containers.pidns06.sh create mode 100755 testcase/containers/ltp.containers.pidns10.sh create mode 100755 testcase/containers/ltp.containers.pidns12.sh create mode 100755 testcase/containers/ltp.containers.pidns13.sh create mode 100755 testcase/containers/ltp.containers.pidns16.sh create mode 100755 testcase/containers/ltp.containers.pidns17.sh create mode 100755 testcase/containers/ltp.containers.pidns20.sh create mode 100755 testcase/containers/ltp.containers.pidns30.sh create mode 100755 testcase/containers/ltp.containers.pidns31.sh create mode 100755 testcase/containers/ltp.containers.pidns32.sh create mode 100755 testcase/containers/ltp.containers.sem_comm.sh create mode 100755 testcase/containers/ltp.containers.sem_nstest_clone.sh create mode 100755 testcase/containers/ltp.containers.sem_nstest_none.sh create mode 100755 testcase/containers/ltp.containers.sem_nstest_unshare.sh create mode 100755 testcase/containers/ltp.containers.semtest_2ns_clone.sh create mode 100755 testcase/containers/ltp.containers.semtest_2ns_none.sh create mode 100755 testcase/containers/ltp.containers.semtest_2ns_unshare.sh create mode 100755 testcase/containers/ltp.containers.shm_comm.sh create mode 100755 testcase/containers/ltp.containers.shmem_2nstest_clone.sh create mode 100755 testcase/containers/ltp.containers.shmem_2nstest_none.sh create mode 100755 testcase/containers/ltp.containers.shmem_2nstest_unshare.sh create mode 100755 testcase/containers/ltp.containers.shmnstest_clone.sh create mode 100755 testcase/containers/ltp.containers.shmnstest_none.sh create mode 100755 testcase/containers/ltp.containers.shmnstest_unshare.sh create mode 100755 testcase/containers/ltp.containers.sysinfo03.sh create mode 100755 testcase/containers/ltp.containers.timens01.sh create mode 100755 testcase/containers/ltp.containers.timerfd04.sh create mode 100755 testcase/containers/ltp.containers.userns01.sh create mode 100755 testcase/containers/ltp.containers.userns02.sh create mode 100755 testcase/containers/ltp.containers.userns03.sh create mode 100755 testcase/containers/ltp.containers.userns04.sh create mode 100755 testcase/containers/ltp.containers.userns05.sh create mode 100755 testcase/containers/ltp.containers.userns06.sh create mode 100755 testcase/containers/ltp.containers.userns07.sh create mode 100755 testcase/containers/ltp.containers.userns08.sh create mode 100755 testcase/containers/ltp.containers.utsname01.sh create mode 100755 testcase/containers/ltp.containers.utsname02.sh create mode 100755 testcase/containers/ltp.containers.utsname03_clone.sh create mode 100755 testcase/containers/ltp.containers.utsname03_unshare.sh create mode 100755 testcase/containers/ltp.containers.utsname04_clone.sh create mode 100755 testcase/containers/ltp.containers.utsname04_unshare.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_core01.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_core02.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_core03.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_function_blkio.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_function_cpu.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_function_cpuacct.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_function_cpuset.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_function_debug.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_function_devices.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_function_freezer.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_function_hugetlb.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_function_memory.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_function_net_cls.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_function_net_prio.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_function_perf_event.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_each.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_none.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_one.sh create mode 100755 testcase/controllers/ltp.controllers.cgroup_xattr.sh create mode 100755 testcase/controllers/ltp.controllers.controllers.sh create mode 100755 testcase/controllers/ltp.controllers.cpuacct_100_1.sh create mode 100755 testcase/controllers/ltp.controllers.cpuacct_100_100.sh create mode 100755 testcase/controllers/ltp.controllers.cpuacct_10_10.sh create mode 100755 testcase/controllers/ltp.controllers.cpuacct_1_1.sh create mode 100755 testcase/controllers/ltp.controllers.cpuacct_1_10.sh create mode 100755 testcase/controllers/ltp.controllers.cpuacct_1_100.sh create mode 100755 testcase/controllers/ltp.controllers.cpuset_base_ops.sh create mode 100755 testcase/controllers/ltp.controllers.cpuset_exclusive.sh create mode 100755 testcase/controllers/ltp.controllers.cpuset_hierarchy.sh create mode 100755 testcase/controllers/ltp.controllers.cpuset_hotplug.sh create mode 100755 testcase/controllers/ltp.controllers.cpuset_inherit.sh create mode 100755 testcase/controllers/ltp.controllers.cpuset_load_balance.sh create mode 100755 testcase/controllers/ltp.controllers.cpuset_memory.sh create mode 100755 testcase/controllers/ltp.controllers.cpuset_memory_pressure.sh create mode 100755 testcase/controllers/ltp.controllers.cpuset_memory_spread.sh create mode 100755 testcase/controllers/ltp.controllers.cpuset_regression_test.sh create mode 100755 testcase/controllers/ltp.controllers.cpuset_sched_domains.sh create mode 100755 testcase/controllers/ltp.controllers.cpuset_syscall.sh create mode 100755 testcase/controllers/ltp.controllers.io_control01.sh create mode 100755 testcase/controllers/ltp.controllers.memcg_control.sh create mode 100755 testcase/controllers/ltp.controllers.memcg_failcnt.sh create mode 100755 testcase/controllers/ltp.controllers.memcg_force_empty.sh create mode 100755 testcase/controllers/ltp.controllers.memcg_limit_in_bytes.sh create mode 100755 testcase/controllers/ltp.controllers.memcg_max_usage_in_bytes.sh create mode 100755 testcase/controllers/ltp.controllers.memcg_memsw_limit_in_bytes.sh create mode 100755 testcase/controllers/ltp.controllers.memcg_move_charge_at_immigrate.sh create mode 100755 testcase/controllers/ltp.controllers.memcg_regression.sh create mode 100755 testcase/controllers/ltp.controllers.memcg_stat.sh create mode 100755 testcase/controllers/ltp.controllers.memcg_stat_rss.sh create mode 100755 testcase/controllers/ltp.controllers.memcg_stress.sh create mode 100755 testcase/controllers/ltp.controllers.memcg_subgroup_charge.sh create mode 100755 testcase/controllers/ltp.controllers.memcg_test_3.sh create mode 100755 testcase/controllers/ltp.controllers.memcg_usage_in_bytes.sh create mode 100755 testcase/controllers/ltp.controllers.memcg_use_hierarchy.sh create mode 100755 testcase/controllers/ltp.controllers.memcontrol01.sh create mode 100755 testcase/controllers/ltp.controllers.memcontrol02.sh create mode 100755 testcase/controllers/ltp.controllers.memcontrol03.sh create mode 100755 testcase/controllers/ltp.controllers.memcontrol04.sh create mode 100755 testcase/controllers/ltp.controllers.pids_1_1.sh create mode 100755 testcase/controllers/ltp.controllers.pids_1_10.sh create mode 100755 testcase/controllers/ltp.controllers.pids_1_100.sh create mode 100755 testcase/controllers/ltp.controllers.pids_1_2.sh create mode 100755 testcase/controllers/ltp.controllers.pids_1_50.sh create mode 100755 testcase/controllers/ltp.controllers.pids_2_1.sh create mode 100755 testcase/controllers/ltp.controllers.pids_2_10.sh create mode 100755 testcase/controllers/ltp.controllers.pids_2_100.sh create mode 100755 testcase/controllers/ltp.controllers.pids_2_2.sh create mode 100755 testcase/controllers/ltp.controllers.pids_2_50.sh create mode 100755 testcase/controllers/ltp.controllers.pids_3_0.sh create mode 100755 testcase/controllers/ltp.controllers.pids_3_1.sh create mode 100755 testcase/controllers/ltp.controllers.pids_3_10.sh create mode 100755 testcase/controllers/ltp.controllers.pids_3_100.sh create mode 100755 testcase/controllers/ltp.controllers.pids_3_50.sh create mode 100755 testcase/controllers/ltp.controllers.pids_4_1.sh create mode 100755 testcase/controllers/ltp.controllers.pids_4_10.sh create mode 100755 testcase/controllers/ltp.controllers.pids_4_100.sh create mode 100755 testcase/controllers/ltp.controllers.pids_4_2.sh create mode 100755 testcase/controllers/ltp.controllers.pids_4_50.sh create mode 100755 testcase/controllers/ltp.controllers.pids_5_1.sh create mode 100755 testcase/controllers/ltp.controllers.pids_6_1.sh create mode 100755 testcase/controllers/ltp.controllers.pids_6_10.sh create mode 100755 testcase/controllers/ltp.controllers.pids_6_100.sh create mode 100755 testcase/controllers/ltp.controllers.pids_6_2.sh create mode 100755 testcase/controllers/ltp.controllers.pids_6_50.sh create mode 100755 testcase/controllers/ltp.controllers.pids_7_10.sh create mode 100755 testcase/controllers/ltp.controllers.pids_7_100.sh create mode 100755 testcase/controllers/ltp.controllers.pids_7_1000.sh create mode 100755 testcase/controllers/ltp.controllers.pids_7_50.sh create mode 100755 testcase/controllers/ltp.controllers.pids_7_500.sh create mode 100755 testcase/controllers/ltp.controllers.pids_8_10.sh create mode 100755 testcase/controllers/ltp.controllers.pids_8_100.sh create mode 100755 testcase/controllers/ltp.controllers.pids_8_2.sh create mode 100755 testcase/controllers/ltp.controllers.pids_8_50.sh create mode 100755 testcase/controllers/ltp.controllers.pids_9_10.sh create mode 100755 testcase/controllers/ltp.controllers.pids_9_100.sh create mode 100755 testcase/controllers/ltp.controllers.pids_9_2.sh create mode 100755 testcase/controllers/ltp.controllers.pids_9_50.sh create mode 100755 testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug02.sh create mode 100755 testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug03.sh create mode 100755 testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug04.sh create mode 100755 testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug05.sh create mode 100755 testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug06.sh create mode 100755 testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug07.sh create mode 100755 testcase/crashme/ltp.crashme.crash01.sh create mode 100755 testcase/crashme/ltp.crashme.crash02.sh create mode 100755 testcase/crashme/ltp.crashme.f00f.sh create mode 100755 testcase/crypto/ltp.crypto.af_alg01.sh create mode 100755 testcase/crypto/ltp.crypto.af_alg02.sh create mode 100755 testcase/crypto/ltp.crypto.af_alg03.sh create mode 100755 testcase/crypto/ltp.crypto.af_alg04.sh create mode 100755 testcase/crypto/ltp.crypto.af_alg05.sh create mode 100755 testcase/crypto/ltp.crypto.af_alg06.sh create mode 100755 testcase/crypto/ltp.crypto.af_alg07.sh create mode 100755 testcase/crypto/ltp.crypto.crypto_user01.sh create mode 100755 testcase/crypto/ltp.crypto.crypto_user02.sh create mode 100755 testcase/crypto/ltp.crypto.pcrypt_aead01.sh create mode 100755 testcase/cve/ltp.cve.cve-2011-0999.sh create mode 100755 testcase/cve/ltp.cve.cve-2011-2183.sh create mode 100755 testcase/cve/ltp.cve.cve-2011-2496.sh create mode 100755 testcase/cve/ltp.cve.cve-2012-0957.sh create mode 100755 testcase/cve/ltp.cve.cve-2014-0196.sh create mode 100755 testcase/cve/ltp.cve.cve-2015-0235.sh create mode 100755 testcase/cve/ltp.cve.cve-2015-3290.sh create mode 100755 testcase/cve/ltp.cve.cve-2015-7550.sh create mode 100755 testcase/cve/ltp.cve.cve-2016-10044.sh create mode 100755 testcase/cve/ltp.cve.cve-2016-4470.sh create mode 100755 testcase/cve/ltp.cve.cve-2016-4997.sh create mode 100755 testcase/cve/ltp.cve.cve-2016-5195.sh create mode 100755 testcase/cve/ltp.cve.cve-2016-7042.sh create mode 100755 testcase/cve/ltp.cve.cve-2016-7117.sh create mode 100755 testcase/cve/ltp.cve.cve-2016-8655.sh create mode 100755 testcase/cve/ltp.cve.cve-2016-9604.sh create mode 100755 testcase/cve/ltp.cve.cve-2016-9793.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-1000111.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-1000112.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-1000364.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-1000380.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-1000405.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-10661.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-12192.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-12193.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-15274.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-15299.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-15537.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-15649.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-15951.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-16939.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-16995.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-17052.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-17053.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-17712.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-17805.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-17806.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-17807.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-18075.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-18344.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-2618.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-2636.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-2671.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-5754.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-6951.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-7308.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-7472.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-7616.sh create mode 100755 testcase/cve/ltp.cve.cve-2017-8890.sh create mode 100755 testcase/cve/ltp.cve.cve-2018-1000001.sh create mode 100755 testcase/cve/ltp.cve.cve-2018-1000199.sh create mode 100755 testcase/cve/ltp.cve.cve-2018-1000204.sh create mode 100755 testcase/cve/ltp.cve.cve-2018-10124.sh create mode 100755 testcase/cve/ltp.cve.cve-2018-11508.sh create mode 100755 testcase/cve/ltp.cve.cve-2018-12896.sh create mode 100755 testcase/cve/ltp.cve.cve-2018-13405.sh create mode 100755 testcase/cve/ltp.cve.cve-2018-18445.sh create mode 100755 testcase/cve/ltp.cve.cve-2018-18559.sh create mode 100755 testcase/cve/ltp.cve.cve-2018-18955.sh create mode 100755 testcase/cve/ltp.cve.cve-2018-19854.sh create mode 100755 testcase/cve/ltp.cve.cve-2018-5803.sh create mode 100755 testcase/cve/ltp.cve.cve-2018-6927.sh create mode 100755 testcase/cve/ltp.cve.cve-2018-7566.sh create mode 100755 testcase/cve/ltp.cve.cve-2018-8897.sh create mode 100755 testcase/cve/ltp.cve.cve-2018-9568.sh create mode 100755 testcase/cve/ltp.cve.cve-2019-8912.sh create mode 100755 testcase/cve/ltp.cve.cve-2020-11494.sh create mode 100755 testcase/cve/ltp.cve.cve-2020-14386.sh create mode 100755 testcase/cve/ltp.cve.cve-2020-14416.sh create mode 100755 testcase/cve/ltp.cve.cve-2020-25704.sh create mode 100755 testcase/cve/ltp.cve.cve-2020-25705.sh create mode 100755 testcase/cve/ltp.cve.cve-2020-29373.sh create mode 100755 testcase/cve/ltp.cve.cve-2020-36557.sh create mode 100755 testcase/cve/ltp.cve.cve-2021-22555.sh create mode 100755 testcase/cve/ltp.cve.cve-2021-22600.sh create mode 100755 testcase/cve/ltp.cve.cve-2021-26708.sh create mode 100755 testcase/cve/ltp.cve.cve-2021-3444.sh create mode 100755 testcase/cve/ltp.cve.cve-2021-3609.sh create mode 100755 testcase/cve/ltp.cve.cve-2021-38604.sh create mode 100755 testcase/cve/ltp.cve.cve-2021-4034.sh create mode 100755 testcase/cve/ltp.cve.cve-2021-4197_1.sh create mode 100755 testcase/cve/ltp.cve.cve-2021-4197_2.sh create mode 100755 testcase/cve/ltp.cve.cve-2021-4204.sh create mode 100755 testcase/cve/ltp.cve.cve-2022-0185.sh create mode 100755 testcase/cve/ltp.cve.cve-2022-0847.sh create mode 100755 testcase/cve/ltp.cve.cve-2022-23222.sh create mode 100755 testcase/cve/ltp.cve.cve-2022-2590.sh create mode 100755 testcase/cve/ltp.cve.cve-2022-4378.sh create mode 100755 testcase/cve/ltp.cve.cve-2023-0461.sh create mode 100755 testcase/cve/ltp.cve.cve-2023-1829.sh create mode 100755 testcase/cve/ltp.cve.cve-2023-31248.sh create mode 100755 testcase/dio/ltp.dio.dio01.sh create mode 100755 testcase/dio/ltp.dio.dio02.sh create mode 100755 testcase/dio/ltp.dio.dio03.sh create mode 100755 testcase/dio/ltp.dio.dio04.sh create mode 100755 testcase/dio/ltp.dio.dio05.sh create mode 100755 testcase/dio/ltp.dio.dio06.sh create mode 100755 testcase/dio/ltp.dio.dio07.sh create mode 100755 testcase/dio/ltp.dio.dio08.sh create mode 100755 testcase/dio/ltp.dio.dio09.sh create mode 100755 testcase/dio/ltp.dio.dio10.sh create mode 100755 testcase/dio/ltp.dio.dio11.sh create mode 100755 testcase/dio/ltp.dio.dio12.sh create mode 100755 testcase/dio/ltp.dio.dio13.sh create mode 100755 testcase/dio/ltp.dio.dio14.sh create mode 100755 testcase/dio/ltp.dio.dio15.sh create mode 100755 testcase/dio/ltp.dio.dio16.sh create mode 100755 testcase/dio/ltp.dio.dio17.sh create mode 100755 testcase/dio/ltp.dio.dio18.sh create mode 100755 testcase/dio/ltp.dio.dio19.sh create mode 100755 testcase/dio/ltp.dio.dio20.sh create mode 100755 testcase/dio/ltp.dio.dio21.sh create mode 100755 testcase/dio/ltp.dio.dio22.sh create mode 100755 testcase/dio/ltp.dio.dio23.sh create mode 100755 testcase/dio/ltp.dio.dio24.sh create mode 100755 testcase/dio/ltp.dio.dio25.sh create mode 100755 testcase/dio/ltp.dio.dio26.sh create mode 100755 testcase/dio/ltp.dio.dio27.sh create mode 100755 testcase/dio/ltp.dio.dio28.sh create mode 100755 testcase/dio/ltp.dio.dio29.sh create mode 100755 testcase/dio/ltp.dio.dio30.sh create mode 100755 testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest1.sh create mode 100755 testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest2.sh create mode 100755 testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest3.sh create mode 100755 testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest4.sh create mode 100755 testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest5.sh create mode 100755 testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest6.sh create mode 100755 testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest7.sh create mode 100755 testcase/fcntl-locktests/ltp.fcntl-locktests.FCNTL_LOCKTESTS.sh create mode 100755 testcase/fs/ltp.fs.binfmt_misc01.sh create mode 100755 testcase/fs/ltp.fs.binfmt_misc02.sh create mode 100755 testcase/fs/ltp.fs.fs_di.sh create mode 100755 testcase/fs/ltp.fs.fs_fill.sh create mode 100755 testcase/fs/ltp.fs.fs_inod01.sh create mode 100755 testcase/fs/ltp.fs.fs_racer.sh create mode 100755 testcase/fs/ltp.fs.ftest01.sh create mode 100755 testcase/fs/ltp.fs.ftest02.sh create mode 100755 testcase/fs/ltp.fs.ftest03.sh create mode 100755 testcase/fs/ltp.fs.ftest04.sh create mode 100755 testcase/fs/ltp.fs.ftest05.sh create mode 100755 testcase/fs/ltp.fs.ftest06.sh create mode 100755 testcase/fs/ltp.fs.ftest07.sh create mode 100755 testcase/fs/ltp.fs.ftest08.sh create mode 100755 testcase/fs/ltp.fs.gf01.sh create mode 100755 testcase/fs/ltp.fs.gf02.sh create mode 100755 testcase/fs/ltp.fs.gf03.sh create mode 100755 testcase/fs/ltp.fs.gf04.sh create mode 100755 testcase/fs/ltp.fs.gf05.sh create mode 100755 testcase/fs/ltp.fs.gf06.sh create mode 100755 testcase/fs/ltp.fs.gf07.sh create mode 100755 testcase/fs/ltp.fs.gf08.sh create mode 100755 testcase/fs/ltp.fs.gf09.sh create mode 100755 testcase/fs/ltp.fs.gf10.sh create mode 100755 testcase/fs/ltp.fs.gf11.sh create mode 100755 testcase/fs/ltp.fs.gf12.sh create mode 100755 testcase/fs/ltp.fs.gf13.sh create mode 100755 testcase/fs/ltp.fs.gf14.sh create mode 100755 testcase/fs/ltp.fs.gf15.sh create mode 100755 testcase/fs/ltp.fs.gf16.sh create mode 100755 testcase/fs/ltp.fs.gf17.sh create mode 100755 testcase/fs/ltp.fs.gf18.sh create mode 100755 testcase/fs/ltp.fs.gf19.sh create mode 100755 testcase/fs/ltp.fs.gf20.sh create mode 100755 testcase/fs/ltp.fs.gf21.sh create mode 100755 testcase/fs/ltp.fs.gf22.sh create mode 100755 testcase/fs/ltp.fs.gf23.sh create mode 100755 testcase/fs/ltp.fs.gf24.sh create mode 100755 testcase/fs/ltp.fs.gf25.sh create mode 100755 testcase/fs/ltp.fs.gf26.sh create mode 100755 testcase/fs/ltp.fs.gf27.sh create mode 100755 testcase/fs/ltp.fs.gf28.sh create mode 100755 testcase/fs/ltp.fs.gf29.sh create mode 100755 testcase/fs/ltp.fs.gf30.sh create mode 100755 testcase/fs/ltp.fs.inode01.sh create mode 100755 testcase/fs/ltp.fs.inode02.sh create mode 100755 testcase/fs/ltp.fs.iogen01.sh create mode 100755 testcase/fs/ltp.fs.isofs.sh create mode 100755 testcase/fs/ltp.fs.lftest01.sh create mode 100755 testcase/fs/ltp.fs.linker01.sh create mode 100755 testcase/fs/ltp.fs.openfile01.sh create mode 100755 testcase/fs/ltp.fs.proc01.sh create mode 100755 testcase/fs/ltp.fs.quota_remount_test01.sh create mode 100755 testcase/fs/ltp.fs.read_all_dev.sh create mode 100755 testcase/fs/ltp.fs.read_all_proc.sh create mode 100755 testcase/fs/ltp.fs.read_all_sys.sh create mode 100755 testcase/fs/ltp.fs.rwtest01.sh create mode 100755 testcase/fs/ltp.fs.rwtest02.sh create mode 100755 testcase/fs/ltp.fs.rwtest03.sh create mode 100755 testcase/fs/ltp.fs.rwtest04.sh create mode 100755 testcase/fs/ltp.fs.rwtest05.sh create mode 100755 testcase/fs/ltp.fs.squashfs01.sh create mode 100755 testcase/fs/ltp.fs.stream01.sh create mode 100755 testcase/fs/ltp.fs.stream02.sh create mode 100755 testcase/fs/ltp.fs.stream03.sh create mode 100755 testcase/fs/ltp.fs.stream04.sh create mode 100755 testcase/fs/ltp.fs.stream05.sh create mode 100755 testcase/fs/ltp.fs.writetest01.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind01_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind02_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind03_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind04_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind05_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind06_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind07-2_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind07_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind08_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind09_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind10_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind11_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind12_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind13_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind14_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind15_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind16_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind17_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind18_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind19_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind20_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind21_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind22_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind23_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind24_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS01_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS02_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS03_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS04_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS05_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS06_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS07_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move01_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move02_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move03_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move04_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move05_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move06_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move07_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move08_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move09_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move10_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move11_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move12_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move13_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move14_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move15_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move16_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move17_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move18_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move19_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move20_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move21_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_move22_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind01_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind02_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind03_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind04_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind05_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind06_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07-2_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind08_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind09_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind10_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind11_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind12_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind13_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind14_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind15_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind16_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind17_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind18_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind19_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind20_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind21_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind22_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind23_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind24_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind25_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind26_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind27_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind28_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind29_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind30_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind31_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind32_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind33_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind34_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind35_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind36_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind37_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind38_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_rbind39_sh.sh create mode 100755 testcase/fs_bind/ltp.fs_bind.fs_bind_regression_sh.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms01.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms02.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms03.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms04.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms05.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms06.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms07.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms08.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms09.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms10.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms11.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms12.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms13.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms14.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms15.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms16.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms17.sh create mode 100755 testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms18.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind01.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind02.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind03.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind04.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind05.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind06.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind07.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind08.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind09.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind10.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind11.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind12.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind13.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind14.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind15.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind16.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind17.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind18.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind19.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind20.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind21.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind22.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind23.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind24.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind25.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind26.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind27.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind28.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind29.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind30.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind31.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind32.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind33.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind34.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind35.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind36.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind37.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind38.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind39.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind40.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind41.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind42.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind43.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind44.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind45.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind46.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind47.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind48.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind49.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind50.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind51.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind52.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind53.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind54.sh create mode 100755 testcase/fs_readonly/ltp.fs_readonly.test_robind55.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugefallocate01.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugefallocate02.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugefork01.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugefork02.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap01.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap02.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap04.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap05.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap05_1.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap05_2.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap05_3.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap06.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap07.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap08.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap09.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap10.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap11.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap12.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap13.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap14.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap15.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap16.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap17.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap18.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap19.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap20.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap21.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap22.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap23.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap24.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap25.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap26.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap27.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap28.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap29.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap30.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap31.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugemmap32.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugeshmat01.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugeshmat02.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugeshmat03.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugeshmat04.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugeshmat05.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugeshmctl01.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugeshmctl02.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugeshmctl03.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugeshmdt01.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugeshmget01.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugeshmget02.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugeshmget03.sh create mode 100755 testcase/hugetlb/ltp.hugetlb.hugeshmget05.sh create mode 100755 testcase/hyperthreading/ltp.hyperthreading.smt_smp_affinity.sh create mode 100755 testcase/hyperthreading/ltp.hyperthreading.smt_smp_enabled.sh create mode 100755 testcase/ima/ltp.ima.evm_overlay.sh create mode 100755 testcase/ima/ltp.ima.ima_conditionals.sh create mode 100755 testcase/ima/ltp.ima.ima_kexec.sh create mode 100755 testcase/ima/ltp.ima.ima_keys.sh create mode 100755 testcase/ima/ltp.ima.ima_measurements.sh create mode 100755 testcase/ima/ltp.ima.ima_policy.sh create mode 100755 testcase/ima/ltp.ima.ima_selinux.sh create mode 100755 testcase/ima/ltp.ima.ima_tpm.sh create mode 100755 testcase/ima/ltp.ima.ima_violations.sh create mode 100755 testcase/input/ltp.input.input01.sh create mode 100755 testcase/input/ltp.input.input02.sh create mode 100755 testcase/input/ltp.input.input03.sh create mode 100755 testcase/input/ltp.input.input04.sh create mode 100755 testcase/input/ltp.input.input05.sh create mode 100755 testcase/input/ltp.input.input06.sh create mode 100755 testcase/ipc/ltp.ipc.pipeio_1.sh create mode 100755 testcase/ipc/ltp.ipc.pipeio_3.sh create mode 100755 testcase/ipc/ltp.ipc.pipeio_4.sh create mode 100755 testcase/ipc/ltp.ipc.pipeio_5.sh create mode 100755 testcase/ipc/ltp.ipc.pipeio_6.sh create mode 100755 testcase/ipc/ltp.ipc.pipeio_8.sh create mode 100755 testcase/irq/ltp.irq.irqbalance01.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.aslr01.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.block_dev.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.cn_pec_sh.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.cpufreq_boost.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.fw_load.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.kmsg01.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.lock_torture.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.ltp_acpi.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.rcu_torture.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.rtc01.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.rtc02.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.tbio.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.tpci.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.uaccess.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.umip_basic_test.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.zram01.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.zram02.sh create mode 100755 testcase/kernel_misc/ltp.kernel_misc.zram03.sh create mode 100755 testcase/kvm/ltp.kvm.kvm_pagefault01.sh create mode 100755 testcase/kvm/ltp.kvm.kvm_svm01.sh create mode 100755 testcase/kvm/ltp.kvm.kvm_svm02.sh create mode 100755 testcase/kvm/ltp.kvm.kvm_svm03.sh create mode 100755 testcase/kvm/ltp.kvm.kvm_svm04.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1000.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1001.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1002.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1003.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1004.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1005.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1006.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1007.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1008.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1009.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1010.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1011.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1012.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1013.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1014.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1015.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1016.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1017.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1018.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1019.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1020.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1021.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1022.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1023.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1024.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1025.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1026.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1027.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1028.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1029.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1030.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1031.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1032.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1033.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1034.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1035.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1036.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1037.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1038.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1039.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1040.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1041.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1042.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1043.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1044.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1045.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1046.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1047.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1048.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1049.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1050.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1051.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1052.sh create mode 100755 testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1053.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD001.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD002.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD003.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD004.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD005.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD006.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD007.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD008.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD009.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD010.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD011.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD012.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD013.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD014.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD015.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD016.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD017.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD018.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD019.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD020.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD021.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD022.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD023.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD024.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD025.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD026.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD027.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD028.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD029.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD030.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD031.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD032.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD033.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD034.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD035.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD036.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD037.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD038.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD039.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD040.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD041.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD042.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD043.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD044.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD045.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD046.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD047.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD048.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD049.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD050.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD051.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD052.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD053.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD054.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD055.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD056.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD057.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD058.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD059.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD060.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD061.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD062.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD063.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD064.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD065.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD066.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD067.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD068.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD069.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD070.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD071.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD072.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD073.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD074.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD075.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD076.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD077.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD078.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD079.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD080.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD081.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD082.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD083.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD084.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD085.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD086.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD087.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD088.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD089.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD090.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD091.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD092.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD093.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD094.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD095.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD096.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD097.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD098.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD099.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD100.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD101.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD102.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD103.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD104.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD105.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD106.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD107.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD108.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD109.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD110.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD111.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD112.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD113.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD114.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD115.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD116.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD117.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD118.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD119.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD120.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD121.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD122.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD123.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD124.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD125.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD126.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD127.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD128.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD129.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD130.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD131.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD132.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD133.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD134.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD135.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD136.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD137.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD138.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD139.sh create mode 100755 testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD140.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP000.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP001.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP002.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP003.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP004.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP005.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP006.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP007.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP008.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP009.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP010.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP011.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP012.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP013.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP014.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP015.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP016.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP017.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP018.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP019.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP020.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP021.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP022.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP023.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP024.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP025.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP026.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP027.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP028.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP029.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP030.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP031.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP032.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP033.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP034.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP035.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP036.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP037.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP038.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP039.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP040.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP041.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP042.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP043.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP044.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP045.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP046.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP047.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP048.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP049.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP050.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP051.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP052.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP053.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP054.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP055.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP056.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP057.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP058.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP059.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP060.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP061.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP062.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP063.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP064.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP065.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP066.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP067.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP068.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP069.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP070.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP071.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP072.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP073.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP074.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP075.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP076.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP077.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP078.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP079.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP080.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP081.sh create mode 100755 testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP082.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx01.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx02.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx03.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx04.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx05.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx06.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx07.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx08.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx09.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx10.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx12.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx13.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx14.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx15.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx16.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx17.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx18.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx19.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx20.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx21.sh create mode 100755 testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx22.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD000.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD001.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD002.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD003.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD004.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD005.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD006.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD007.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD008.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD009.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI000.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI001.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI002.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI003.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI004.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI005.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI006.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI007.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI008.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI009.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI000.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI001.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI002.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI003.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI004.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI005.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI006.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI007.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI008.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI009.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO00.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO01.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO02.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO03.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO04.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO05.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO06.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO07.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO08.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO09.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT000.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT001.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT002.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR000.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR001.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR002.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR003.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS000.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS001.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS002.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS003.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS004.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS005.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS006.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS007.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS008.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS009.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio01.sh create mode 100755 testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio02.sh create mode 100755 testcase/math/ltp.math.abs01.sh create mode 100755 testcase/math/ltp.math.atof01.sh create mode 100755 testcase/math/ltp.math.float_bessel.sh create mode 100755 testcase/math/ltp.math.float_exp_log.sh create mode 100755 testcase/math/ltp.math.float_iperb.sh create mode 100755 testcase/math/ltp.math.float_power.sh create mode 100755 testcase/math/ltp.math.float_trigo.sh create mode 100755 testcase/math/ltp.math.fptest01.sh create mode 100755 testcase/math/ltp.math.fptest02.sh create mode 100755 testcase/math/ltp.math.nextafter01.sh create mode 100755 testcase/mm/ltp.mm.cpuset01.sh create mode 100755 testcase/mm/ltp.mm.data_space.sh create mode 100755 testcase/mm/ltp.mm.kallsyms.sh create mode 100755 testcase/mm/ltp.mm.ksm01.sh create mode 100755 testcase/mm/ltp.mm.ksm01_1.sh create mode 100755 testcase/mm/ltp.mm.ksm02.sh create mode 100755 testcase/mm/ltp.mm.ksm02_1.sh create mode 100755 testcase/mm/ltp.mm.ksm03.sh create mode 100755 testcase/mm/ltp.mm.ksm03_1.sh create mode 100755 testcase/mm/ltp.mm.ksm04.sh create mode 100755 testcase/mm/ltp.mm.ksm04_1.sh create mode 100755 testcase/mm/ltp.mm.ksm05.sh create mode 100755 testcase/mm/ltp.mm.ksm06.sh create mode 100755 testcase/mm/ltp.mm.ksm06_1.sh create mode 100755 testcase/mm/ltp.mm.ksm06_2.sh create mode 100755 testcase/mm/ltp.mm.ksm07.sh create mode 100755 testcase/mm/ltp.mm.mallocstress01.sh create mode 100755 testcase/mm/ltp.mm.max_map_count.sh create mode 100755 testcase/mm/ltp.mm.mem02.sh create mode 100755 testcase/mm/ltp.mm.min_free_kbytes.sh create mode 100755 testcase/mm/ltp.mm.mm01.sh create mode 100755 testcase/mm/ltp.mm.mm02.sh create mode 100755 testcase/mm/ltp.mm.mmap10.sh create mode 100755 testcase/mm/ltp.mm.mmap10_1.sh create mode 100755 testcase/mm/ltp.mm.mmap10_2.sh create mode 100755 testcase/mm/ltp.mm.mmap10_3.sh create mode 100755 testcase/mm/ltp.mm.mmap10_4.sh create mode 100755 testcase/mm/ltp.mm.mmapstress01.sh create mode 100755 testcase/mm/ltp.mm.mmapstress02.sh create mode 100755 testcase/mm/ltp.mm.mmapstress03.sh create mode 100755 testcase/mm/ltp.mm.mmapstress04.sh create mode 100755 testcase/mm/ltp.mm.mmapstress05.sh create mode 100755 testcase/mm/ltp.mm.mmapstress06.sh create mode 100755 testcase/mm/ltp.mm.mmapstress07.sh create mode 100755 testcase/mm/ltp.mm.mmapstress08.sh create mode 100755 testcase/mm/ltp.mm.mmapstress09.sh create mode 100755 testcase/mm/ltp.mm.mmapstress10.sh create mode 100755 testcase/mm/ltp.mm.mtest01.sh create mode 100755 testcase/mm/ltp.mm.mtest01w.sh create mode 100755 testcase/mm/ltp.mm.mtest05.sh create mode 100755 testcase/mm/ltp.mm.mtest06.sh create mode 100755 testcase/mm/ltp.mm.mtest06_2.sh create mode 100755 testcase/mm/ltp.mm.mtest06_3.sh create mode 100755 testcase/mm/ltp.mm.oom01.sh create mode 100755 testcase/mm/ltp.mm.oom02.sh create mode 100755 testcase/mm/ltp.mm.oom03.sh create mode 100755 testcase/mm/ltp.mm.oom04.sh create mode 100755 testcase/mm/ltp.mm.oom05.sh create mode 100755 testcase/mm/ltp.mm.overcommit_memory01.sh create mode 100755 testcase/mm/ltp.mm.overcommit_memory02.sh create mode 100755 testcase/mm/ltp.mm.overcommit_memory03.sh create mode 100755 testcase/mm/ltp.mm.overcommit_memory04.sh create mode 100755 testcase/mm/ltp.mm.overcommit_memory05.sh create mode 100755 testcase/mm/ltp.mm.overcommit_memory06.sh create mode 100755 testcase/mm/ltp.mm.page01.sh create mode 100755 testcase/mm/ltp.mm.page02.sh create mode 100755 testcase/mm/ltp.mm.shm_test01.sh create mode 100755 testcase/mm/ltp.mm.shmt02.sh create mode 100755 testcase/mm/ltp.mm.shmt03.sh create mode 100755 testcase/mm/ltp.mm.shmt04.sh create mode 100755 testcase/mm/ltp.mm.shmt05.sh create mode 100755 testcase/mm/ltp.mm.shmt06.sh create mode 100755 testcase/mm/ltp.mm.shmt07.sh create mode 100755 testcase/mm/ltp.mm.shmt08.sh create mode 100755 testcase/mm/ltp.mm.shmt09.sh create mode 100755 testcase/mm/ltp.mm.shmt10.sh create mode 100755 testcase/mm/ltp.mm.stack_space.sh create mode 100755 testcase/mm/ltp.mm.swapping01.sh create mode 100755 testcase/mm/ltp.mm.thp01.sh create mode 100755 testcase/mm/ltp.mm.thp02.sh create mode 100755 testcase/mm/ltp.mm.thp03.sh create mode 100755 testcase/mm/ltp.mm.thp04.sh create mode 100755 testcase/mm/ltp.mm.vma01.sh create mode 100755 testcase/mm/ltp.mm.vma02.sh create mode 100755 testcase/mm/ltp.mm.vma03.sh create mode 100755 testcase/mm/ltp.mm.vma04.sh create mode 100755 testcase/mm/ltp.mm.vma05.sh create mode 100755 testcase/net.features/ltp.net.features.bbr01.sh create mode 100755 testcase/net.features/ltp.net.features.bbr01_ipv6.sh create mode 100755 testcase/net.features/ltp.net.features.bbr02.sh create mode 100755 testcase/net.features/ltp.net.features.bbr02_ipv6.sh create mode 100755 testcase/net.features/ltp.net.features.bind_noport01.sh create mode 100755 testcase/net.features/ltp.net.features.bind_noport01_ipv6.sh create mode 100755 testcase/net.features/ltp.net.features.busy_poll01.sh create mode 100755 testcase/net.features/ltp.net.features.busy_poll01_ipv6.sh create mode 100755 testcase/net.features/ltp.net.features.busy_poll02.sh create mode 100755 testcase/net.features/ltp.net.features.busy_poll02_ipv6.sh create mode 100755 testcase/net.features/ltp.net.features.busy_poll03.sh create mode 100755 testcase/net.features/ltp.net.features.busy_poll03_ipv6.sh create mode 100755 testcase/net.features/ltp.net.features.dccp01.sh create mode 100755 testcase/net.features/ltp.net.features.dccp01_ipv6.sh create mode 100755 testcase/net.features/ltp.net.features.dctcp_ipv4_01.sh create mode 100755 testcase/net.features/ltp.net.features.dctcp_ipv6_01.sh create mode 100755 testcase/net.features/ltp.net.features.fanout01.sh create mode 100755 testcase/net.features/ltp.net.features.fou01.sh create mode 100755 testcase/net.features/ltp.net.features.fou01_ipv6.sh create mode 100755 testcase/net.features/ltp.net.features.geneve01.sh create mode 100755 testcase/net.features/ltp.net.features.geneve01_ipv6.sh create mode 100755 testcase/net.features/ltp.net.features.geneve02.sh create mode 100755 testcase/net.features/ltp.net.features.geneve02_ipv6.sh create mode 100755 testcase/net.features/ltp.net.features.gre_ipv4_01.sh create mode 100755 testcase/net.features/ltp.net.features.gre_ipv4_02.sh create mode 100755 testcase/net.features/ltp.net.features.gre_ipv6_01.sh create mode 100755 testcase/net.features/ltp.net.features.gre_ipv6_02.sh create mode 100755 testcase/net.features/ltp.net.features.gue01.sh create mode 100755 testcase/net.features/ltp.net.features.gue01_ipv6.sh create mode 100755 testcase/net.features/ltp.net.features.ipvlan01.sh create mode 100755 testcase/net.features/ltp.net.features.macsec01.sh create mode 100755 testcase/net.features/ltp.net.features.macsec02.sh create mode 100755 testcase/net.features/ltp.net.features.macsec03.sh create mode 100755 testcase/net.features/ltp.net.features.macvlan01.sh create mode 100755 testcase/net.features/ltp.net.features.macvtap01.sh create mode 100755 testcase/net.features/ltp.net.features.mpls01.sh create mode 100755 testcase/net.features/ltp.net.features.mpls02.sh create mode 100755 testcase/net.features/ltp.net.features.mpls02_ipv6.sh create mode 100755 testcase/net.features/ltp.net.features.mpls03.sh create mode 100755 testcase/net.features/ltp.net.features.mpls03_ipv6.sh create mode 100755 testcase/net.features/ltp.net.features.mpls04.sh create mode 100755 testcase/net.features/ltp.net.features.sctp01.sh create mode 100755 testcase/net.features/ltp.net.features.sctp01_ipv6.sh create mode 100755 testcase/net.features/ltp.net.features.sit01.sh create mode 100755 testcase/net.features/ltp.net.features.tcp_fastopen.sh create mode 100755 testcase/net.features/ltp.net.features.tcp_fastopen6.sh create mode 100755 testcase/net.features/ltp.net.features.vlan01.sh create mode 100755 testcase/net.features/ltp.net.features.vlan02.sh create mode 100755 testcase/net.features/ltp.net.features.vlan03.sh create mode 100755 testcase/net.features/ltp.net.features.vxlan01.sh create mode 100755 testcase/net.features/ltp.net.features.vxlan02.sh create mode 100755 testcase/net.features/ltp.net.features.vxlan02_ipv6.sh create mode 100755 testcase/net.features/ltp.net.features.vxlan_ipv6_multi_03.sh create mode 100755 testcase/net.features/ltp.net.features.vxlan_ipv6_uni_03.sh create mode 100755 testcase/net.features/ltp.net.features.vxlan_ipv6_uni_04.sh create mode 100755 testcase/net.features/ltp.net.features.vxlan_multi_03.sh create mode 100755 testcase/net.features/ltp.net.features.vxlan_uni_03.sh create mode 100755 testcase/net.features/ltp.net.features.vxlan_uni_04.sh create mode 100755 testcase/net.features/ltp.net.features.wireguard01.sh create mode 100755 testcase/net.features/ltp.net.features.wireguard01_ipv6.sh create mode 100755 testcase/net.features/ltp.net.features.wireguard02.sh create mode 100755 testcase/net.features/ltp.net.features.wireguard02_ipv6.sh create mode 100755 testcase/net.ipv6/ltp.net.ipv6.dhcpd6.sh create mode 100755 testcase/net.ipv6/ltp.net.ipv6.dnsmasq6.sh create mode 100755 testcase/net.ipv6/ltp.net.ipv6.ip6tables.sh create mode 100755 testcase/net.ipv6/ltp.net.ipv6.ipneigh6_ip.sh create mode 100755 testcase/net.ipv6/ltp.net.ipv6.nft6.sh create mode 100755 testcase/net.ipv6/ltp.net.ipv6.ping601.sh create mode 100755 testcase/net.ipv6/ltp.net.ipv6.ping602.sh create mode 100755 testcase/net.ipv6/ltp.net.ipv6.sendfile601.sh create mode 100755 testcase/net.ipv6/ltp.net.ipv6.tcpdump601.sh create mode 100755 testcase/net.ipv6/ltp.net.ipv6.tracepath601.sh create mode 100755 testcase/net.ipv6/ltp.net.ipv6.traceroute601.sh create mode 100755 testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_01.sh create mode 100755 testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_02.sh create mode 100755 testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_03.sh create mode 100755 testcase/net.ipv6_lib/ltp.net.ipv6_lib.getaddrinfo_01.sh create mode 100755 testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_01.sh create mode 100755 testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_02.sh create mode 100755 testcase/net.multicast/ltp.net.multicast.mc_cmds.sh create mode 100755 testcase/net.multicast/ltp.net.multicast.mc_commo.sh create mode 100755 testcase/net.multicast/ltp.net.multicast.mc_member.sh create mode 100755 testcase/net.multicast/ltp.net.multicast.mc_opts.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.fsx_v40_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.fsx_v40_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.fsx_v41_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.fsx_v41_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.fsx_v42_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.fsx_v42_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs06_v30_v40_ip4.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs06_v4x_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs06_vall_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6u.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip6t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip4t.sh create mode 100755 testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip6t.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc01.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_auth_destroy.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authnone_create.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create_default.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_callrpc.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_broadcast.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_call.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_control.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_create.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_destroy.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_freeres.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_geterr.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_pcreateerror.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perrno.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perror.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_spcreateerror.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperrno.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperror.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntraw_create.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnttcp_create.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_bufcreate.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_create.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_get_myaddress.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getmaps.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getport.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_rmtcall.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_set.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_unset.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_registerrpc.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_destroy.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_freeargs.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getargs.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getcaller.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_register.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_sendreply.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_unregister.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_auth.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noproc.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noprog.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_progvers.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_systemerr.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_weakauth.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcfd_create.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcraw_create.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svctcp_create.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_bufcreate.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_create.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_register.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_unregister.sh create mode 100755 testcase/net.rpc_tests/ltp.net.rpc_tests.rpcinfo.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_accept_close.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_addrs.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_connect.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_connectx.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_events.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_initmsg_connect.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_nonblock.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvfrom.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvmsg.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_rtoinfo.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_send.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendmsg.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendto.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_shutdown.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_socket_bind_listen.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_sockopt.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_1_to_1_threads.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_assoc_abort.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_assoc_shutdown.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_autoclose.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_basic.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_basic_v6.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_connect.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_connectx.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_fragments.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_fragments_v6.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_getname.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_getname_v6.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_inaddr_any.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_inaddr_any_v6.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_peeloff.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_peeloff_v6.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_recvmsg.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg_v6.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_sockopt.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_sockopt_v6.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_tcp_style.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_tcp_style_v6.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_timetolive.sh create mode 100755 testcase/net.sctp/ltp.net.sctp.test_timetolive_v6.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.arping01.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.dhcpd.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.dnsmasq.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.ftp.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_arp.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_ip.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.iproute.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.iptables.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.netstat.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.nft.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping01.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping02.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.sendfile.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.tc01.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.tcpdump.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.tracepath01.sh create mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.traceroute01.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authnone_create.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authsys_create.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authsys_create_default.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_bottomlevel_clnt_call.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_control.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create_timed.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_destroy.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_dg_create.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_pcreateerror.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perrno.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perror.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tli_create.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tp_create.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tp_create_timed.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_vc_create.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_expertlevel_clnt_call.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_interlevel_clnt_call.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_broadcast.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_broadcast_exp.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_call.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_reg.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getaddr.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getmaps.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_rmtcall.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_set.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_unset.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_create.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_destroy.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_dg_create.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_reg.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_tli_create.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_tp_create.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_unreg.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_vc_create.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_noproc.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_noprog.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_progvers.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_systemerr.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_weakauth.sh create mode 100755 testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_toplevel_clnt_call.sh create mode 100755 testcase/net_stress.appl/ltp.net_stress.appl.dns4-stress.sh create mode 100755 testcase/net_stress.appl/ltp.net_stress.appl.dns6-stress.sh create mode 100755 testcase/net_stress.appl/ltp.net_stress.appl.ftp4-download-stress.sh create mode 100755 testcase/net_stress.appl/ltp.net_stress.appl.ftp4-upload-stress.sh create mode 100755 testcase/net_stress.appl/ltp.net_stress.appl.ftp6-download-stress.sh create mode 100755 testcase/net_stress.appl/ltp.net_stress.appl.ftp6-upload-stress.sh create mode 100755 testcase/net_stress.appl/ltp.net_stress.appl.http4-stress.sh create mode 100755 testcase/net_stress.appl/ltp.net_stress.appl.http6-stress.sh create mode 100755 testcase/net_stress.appl/ltp.net_stress.appl.ssh4-stress.sh create mode 100755 testcase/net_stress.appl/ltp.net_stress.appl.ssh6-stress.sh create mode 100755 testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-checksum.sh create mode 100755 testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-dstaddr.sh create mode 100755 testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-fragment.sh create mode 100755 testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-ihl.sh create mode 100755 testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-plen.sh create mode 100755 testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-protcol.sh create mode 100755 testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-version.sh create mode 100755 testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-dstaddr.sh create mode 100755 testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-nexthdr.sh create mode 100755 testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-plen.sh create mode 100755 testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-version.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-adddel_ifconfig.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-adddel_ip.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-addlarge_ifconfig.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-addlarge_ip.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-change_ifconfig.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if4-mtu-change_ifconfig.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if4-mtu-change_ip.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if4-route-adddel_ip.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if4-route-adddel_route.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if4-route-addlarge_ip.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if4-route-addlarge_route.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if4-updown_ifconfig.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if4-updown_ip.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-adddel_ifconfig.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-adddel_ip.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-addlarge_ifconfig.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-addlarge_ip.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if6-mtu-change_ifconfig.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if6-mtu-change_ip.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if6-route-adddel_ip.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if6-route-adddel_route.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if6-route-addlarge_ip.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if6-route-addlarge_route.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if6-updown_ifconfig.sh create mode 100755 testcase/net_stress.interface/ltp.net_stress.interface.if6-updown_ip.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec01.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec02.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec03.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec04.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec05.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec06.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec07.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec08.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec09.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec10.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec11.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec12.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec13.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec14.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec15.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec16.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec17.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec18.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec19.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec20.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec21.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec22.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec23.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec24.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec25.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec26.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec27.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec28.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec29.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec30.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec31.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec32.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec33.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec34.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec35.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec36.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti01.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti02.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti04.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti05.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti06.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti07.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti08.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti09.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti10.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti11.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti12.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti13.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti14.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti15.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti16.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti17.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec01.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec02.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec03.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec04.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec05.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec06.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec07.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec08.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec09.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec10.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec11.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec12.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec13.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec14.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec15.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec16.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec17.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec18.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec19.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec20.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec21.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec22.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec23.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec24.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec25.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec26.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec27.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec28.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec29.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec30.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec31.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec32.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec33.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec34.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec35.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec36.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti01.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti02.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti04.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti05.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti06.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti07.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti08.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti09.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti10.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti11.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti12.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti13.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti14.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti15.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti16.sh create mode 100755 testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti17.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic01.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic02.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic03.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic04.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic05.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic06.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic07.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic08.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic09.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic10.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic11.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic12.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic13.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic14.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic15.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic16.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic17.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic18.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic19.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic20.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic21.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic22.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic23.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic24.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic25.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic26.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti01.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti02.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti03.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti04.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti05.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti06.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti07.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti08.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti09.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti10.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti11.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti12.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti13.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti14.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti15.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti16.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti17.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic01.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic02.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic03.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic04.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic05.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic06.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic07.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic08.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic09.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic10.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic11.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic12.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic13.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic14.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic15.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic16.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic17.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic18.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic19.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic20.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic21.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic22.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic23.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic24.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic25.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic26.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti01.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti02.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti03.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti04.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti05.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti06.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti07.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti08.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti09.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti10.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti11.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti12.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti13.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti14.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti15.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti16.sh create mode 100755 testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti17.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec01.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec02.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec03.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec04.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec05.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec06.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec07.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec08.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec09.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec10.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec11.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec12.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec13.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec14.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec15.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec16.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec17.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec18.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec19.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec20.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec21.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec22.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec23.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec24.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec25.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec26.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec27.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec28.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec29.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec30.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec31.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec32.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec33.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec34.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec35.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec36.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti01.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti02.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti04.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti05.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti06.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti07.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti08.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti09.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti10.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti11.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti12.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti13.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti14.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti15.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti16.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti17.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec01.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec02.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec03.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec04.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec05.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec06.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec07.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec08.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec09.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec10.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec11.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec12.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec13.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec14.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec15.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec16.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec17.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec18.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec19.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec20.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec21.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec22.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec23.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec24.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec25.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec26.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec27.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec28.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec29.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec30.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec31.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec32.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec33.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec34.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec35.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec36.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti01.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti02.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti04.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti05.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti06.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti07.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti08.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti09.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti10.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti11.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti12.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti13.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti14.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti15.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti16.sh create mode 100755 testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti17.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec01.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec02.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec03.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec04.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec05.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec06.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec07.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec08.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec09.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec10.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec11.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec12.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec13.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec14.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec15.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec16.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec17.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec18.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec19.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec20.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec21.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec22.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec23.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec24.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec25.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec26.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec27.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec28.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec29.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec30.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec31.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec32.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec33.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec34.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec35.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec36.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti01.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti02.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti04.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti05.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti06.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti07.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti08.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti09.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti10.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti11.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti12.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti13.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti14.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti15.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti16.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti17.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec01.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec02.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec03.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec04.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec05.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec06.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec07.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec08.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec09.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec10.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec11.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec12.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec13.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec14.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec15.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec16.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec17.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec18.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec19.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec20.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec21.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec22.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec23.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec24.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec25.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec26.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec27.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec28.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec29.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec30.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec31.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec32.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec33.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec34.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec35.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec36.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti01.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti02.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti04.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti05.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti06.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti07.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti08.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti09.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti10.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti11.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti12.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti13.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti14.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti15.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti16.sh create mode 100755 testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti17.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec01.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec02.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec03.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec04.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec05.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec06.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec07.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec08.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec09.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec10.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec11.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec12.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec13.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec14.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec15.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec16.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec17.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec18.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec19.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec20.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec21.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec22.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec23.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec24.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec25.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec26.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec27.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec28.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec29.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec30.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec31.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec32.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec33.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec34.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec35.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec36.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti01.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti02.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti03.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti04.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti05.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti06.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti07.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti08.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti09.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti10.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti11.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti12.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti13.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti14.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti15.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti16.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti17.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec01.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec02.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec03.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec04.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec05.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec06.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec07.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec08.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec09.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec10.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec11.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec12.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec13.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec14.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec15.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec16.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec17.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec18.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec19.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec20.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec21.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec22.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec23.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec24.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec25.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec26.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec27.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec28.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec29.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec30.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec31.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec32.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec33.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec34.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec35.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec36.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti01.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti02.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti03.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti04.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti05.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti06.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti07.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti08.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti09.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti10.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti11.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti12.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti13.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti14.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti15.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti16.sh create mode 100755 testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti17.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-multiple-socket.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-same-group.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-single-socket.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-source-filter.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-pktfld01.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-pktfld02.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld01.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld02.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld03.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld04.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld05.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld06.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-multiple-socket.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-same-group.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-single-socket.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-source-filter.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-pktfld01.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-pktfld02.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld01.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld02.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld03.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld04.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld05.sh create mode 100755 testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld06.sh create mode 100755 testcase/net_stress.route/ltp.net_stress.route.route4-change-dst.sh create mode 100755 testcase/net_stress.route/ltp.net_stress.route.route4-change-gw.sh create mode 100755 testcase/net_stress.route/ltp.net_stress.route.route4-change-if.sh create mode 100755 testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-dst.sh create mode 100755 testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-gw.sh create mode 100755 testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-if.sh create mode 100755 testcase/net_stress.route/ltp.net_stress.route.route4-redirect.sh create mode 100755 testcase/net_stress.route/ltp.net_stress.route.route6-change-dst.sh create mode 100755 testcase/net_stress.route/ltp.net_stress.route.route6-change-gw.sh create mode 100755 testcase/net_stress.route/ltp.net_stress.route.route6-change-if.sh create mode 100755 testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-dst.sh create mode 100755 testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-gw.sh create mode 100755 testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-if.sh create mode 100755 testcase/net_stress.route/ltp.net_stress.route.route6-redirect.sh create mode 100755 testcase/nptl/ltp.nptl.nptl01.sh create mode 100755 testcase/numa/ltp.numa.migrate_pages01.sh create mode 100755 testcase/numa/ltp.numa.migrate_pages02.sh create mode 100755 testcase/numa/ltp.numa.migrate_pages03.sh create mode 100755 testcase/numa/ltp.numa.move_pages01.sh create mode 100755 testcase/numa/ltp.numa.move_pages02.sh create mode 100755 testcase/numa/ltp.numa.move_pages03.sh create mode 100755 testcase/numa/ltp.numa.move_pages04.sh create mode 100755 testcase/numa/ltp.numa.move_pages05.sh create mode 100755 testcase/numa/ltp.numa.move_pages06.sh create mode 100755 testcase/numa/ltp.numa.move_pages07.sh create mode 100755 testcase/numa/ltp.numa.move_pages09.sh create mode 100755 testcase/numa/ltp.numa.move_pages10.sh create mode 100755 testcase/numa/ltp.numa.move_pages11.sh create mode 100755 testcase/numa/ltp.numa.move_pages12.sh create mode 100755 testcase/numa/ltp.numa.numa_testcases.sh create mode 100755 testcase/numa/ltp.numa.set_mempolicy01.sh create mode 100755 testcase/numa/ltp.numa.set_mempolicy02.sh create mode 100755 testcase/numa/ltp.numa.set_mempolicy03.sh create mode 100755 testcase/numa/ltp.numa.set_mempolicy04.sh create mode 100755 testcase/numa/ltp.numa.set_mempolicy05.sh create mode 100755 testcase/power_management_tests/ltp.power_management_tests.runpwtests01.sh create mode 100755 testcase/power_management_tests/ltp.power_management_tests.runpwtests02.sh create mode 100755 testcase/power_management_tests/ltp.power_management_tests.runpwtests03.sh create mode 100755 testcase/power_management_tests/ltp.power_management_tests.runpwtests04.sh create mode 100755 testcase/power_management_tests/ltp.power_management_tests.runpwtests06.sh create mode 100755 testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive01.sh create mode 100755 testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive02.sh create mode 100755 testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive03.sh create mode 100755 testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive04.sh create mode 100755 testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive05.sh create mode 100755 testcase/pty/ltp.pty.hangup01.sh create mode 100755 testcase/pty/ltp.pty.ptem01.sh create mode 100755 testcase/pty/ltp.pty.pty01.sh create mode 100755 testcase/pty/ltp.pty.pty02.sh create mode 100755 testcase/pty/ltp.pty.pty03.sh create mode 100755 testcase/pty/ltp.pty.pty04.sh create mode 100755 testcase/pty/ltp.pty.pty05.sh create mode 100755 testcase/pty/ltp.pty.pty06.sh create mode 100755 testcase/pty/ltp.pty.pty07.sh create mode 100755 testcase/s390x_tests/ltp.s390x_tests.vmcp.sh create mode 100755 testcase/sched/ltp.sched.autogroup01.sh create mode 100755 testcase/sched/ltp.sched.cfs_bandwidth01.sh create mode 100755 testcase/sched/ltp.sched.hackbench01.sh create mode 100755 testcase/sched/ltp.sched.hackbench02.sh create mode 100755 testcase/sched/ltp.sched.proc_sched_rt01.sh create mode 100755 testcase/sched/ltp.sched.pth_str01.sh create mode 100755 testcase/sched/ltp.sched.pth_str02.sh create mode 100755 testcase/sched/ltp.sched.pth_str03.sh create mode 100755 testcase/sched/ltp.sched.sched_cli_serv.sh create mode 100755 testcase/sched/ltp.sched.sched_stress.sh create mode 100755 testcase/sched/ltp.sched.starvation.sh create mode 100755 testcase/sched/ltp.sched.time-schedule01.sh create mode 100755 testcase/sched/ltp.sched.trace_sched01.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf101.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf102.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf103.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf104.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf105.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf106.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf107.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf108.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf109.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf110.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf111.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf112.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf113.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf114.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf115.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf116.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf117.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf118.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf119.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf120.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf121.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf122.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf123.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf124.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf125.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf126.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf127.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf128.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf129.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf130.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf201.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf202.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf203.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf204.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf205.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf206.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf207.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf208.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf209.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf210.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf211.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf212.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf213.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf214.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf215.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf216.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf217.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf218.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf219.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf220.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf221.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf222.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf223.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf224.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf225.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf226.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf227.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf228.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf229.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf230.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf301.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf302.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf303.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf304.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf305.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf306.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf307.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf308.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf309.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf310.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf311.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf312.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf313.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf314.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf315.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf316.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf317.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf318.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf319.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf320.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf321.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf322.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf323.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf324.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf325.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf326.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf327.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf328.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf329.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf330.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf701.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf702.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf703.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf704.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf705.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf706.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf707.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf708.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf709.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf710.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf711.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf712.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf713.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf714.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf715.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf716.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf717.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf718.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf719.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf720.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf721.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf722.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf723.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf724.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf725.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf726.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf727.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf728.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf729.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf730.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest01.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest02.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest03.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest04.sh create mode 100755 testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest05.sh create mode 100755 testcase/smack/ltp.smack.smack_file_access.sh create mode 100755 testcase/smack/ltp.smack.smack_set_ambient.sh create mode 100755 testcase/smack/ltp.smack.smack_set_cipso.sh create mode 100755 testcase/smack/ltp.smack.smack_set_current.sh create mode 100755 testcase/smack/ltp.smack.smack_set_direct.sh create mode 100755 testcase/smack/ltp.smack.smack_set_doi.sh create mode 100755 testcase/smack/ltp.smack.smack_set_load.sh create mode 100755 testcase/smack/ltp.smack.smack_set_netlabel.sh create mode 100755 testcase/smack/ltp.smack.smack_set_onlycap.sh create mode 100755 testcase/smack/ltp.smack.smack_set_socket_labels.sh create mode 100755 testcase/smoketest/ltp.smoketest.access01.sh create mode 100755 testcase/smoketest/ltp.smoketest.chdir01.sh create mode 100755 testcase/smoketest/ltp.smoketest.df01_sh.sh create mode 100755 testcase/smoketest/ltp.smoketest.fork01.sh create mode 100755 testcase/smoketest/ltp.smoketest.macsec02.sh create mode 100755 testcase/smoketest/ltp.smoketest.ping602.sh create mode 100755 testcase/smoketest/ltp.smoketest.rename01A.sh create mode 100755 testcase/smoketest/ltp.smoketest.shell_test01.sh create mode 100755 testcase/smoketest/ltp.smoketest.splice02.sh create mode 100755 testcase/smoketest/ltp.smoketest.stat04.sh create mode 100755 testcase/smoketest/ltp.smoketest.symlink01.sh create mode 100755 testcase/smoketest/ltp.smoketest.time01.sh create mode 100755 testcase/smoketest/ltp.smoketest.utime07.sh create mode 100755 testcase/smoketest/ltp.smoketest.wait02.sh create mode 100755 testcase/smoketest/ltp.smoketest.write01.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl01.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl02.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl03.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl04.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl05.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl06.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl12.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgget01.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgget02.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgget03.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgget04.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgget05.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv01.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv02.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv03.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv05.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv06.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv07.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv08.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd01.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd02.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd05.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd06.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.msgstress01.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.semctl01.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.semctl02.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.semctl03.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.semctl04.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.semctl05.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.semctl06.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.semctl07.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.semctl08.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.semctl09.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.semget01.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.semget02.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.semget05.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.semop01.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.semop02.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.semop03.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmat01.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmat02.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmat04.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl01.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl02.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl03.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl04.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl05.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl06.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl07.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl08.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt01.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt02.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmget02.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmget03.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmget04.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmget05.sh create mode 100755 testcase/syscalls-ipc/ltp.syscalls-ipc.shmget06.sh create mode 100755 testcase/syscalls/ltp.syscalls.abort01.sh create mode 100755 testcase/syscalls/ltp.syscalls.accept01.sh create mode 100755 testcase/syscalls/ltp.syscalls.accept02.sh create mode 100755 testcase/syscalls/ltp.syscalls.accept03.sh create mode 100755 testcase/syscalls/ltp.syscalls.accept4_01.sh create mode 100755 testcase/syscalls/ltp.syscalls.access01.sh create mode 100755 testcase/syscalls/ltp.syscalls.access02.sh create mode 100755 testcase/syscalls/ltp.syscalls.access03.sh create mode 100755 testcase/syscalls/ltp.syscalls.access04.sh create mode 100755 testcase/syscalls/ltp.syscalls.acct01.sh create mode 100755 testcase/syscalls/ltp.syscalls.acct02.sh create mode 100755 testcase/syscalls/ltp.syscalls.add_key01.sh create mode 100755 testcase/syscalls/ltp.syscalls.add_key02.sh create mode 100755 testcase/syscalls/ltp.syscalls.add_key03.sh create mode 100755 testcase/syscalls/ltp.syscalls.add_key04.sh create mode 100755 testcase/syscalls/ltp.syscalls.add_key05.sh create mode 100755 testcase/syscalls/ltp.syscalls.adjtimex01.sh create mode 100755 testcase/syscalls/ltp.syscalls.adjtimex02.sh create mode 100755 testcase/syscalls/ltp.syscalls.adjtimex03.sh create mode 100755 testcase/syscalls/ltp.syscalls.alarm02.sh create mode 100755 testcase/syscalls/ltp.syscalls.alarm03.sh create mode 100755 testcase/syscalls/ltp.syscalls.alarm05.sh create mode 100755 testcase/syscalls/ltp.syscalls.alarm06.sh create mode 100755 testcase/syscalls/ltp.syscalls.alarm07.sh create mode 100755 testcase/syscalls/ltp.syscalls.arch_prctl01.sh create mode 100755 testcase/syscalls/ltp.syscalls.bind01.sh create mode 100755 testcase/syscalls/ltp.syscalls.bind02.sh create mode 100755 testcase/syscalls/ltp.syscalls.bind03.sh create mode 100755 testcase/syscalls/ltp.syscalls.bind04.sh create mode 100755 testcase/syscalls/ltp.syscalls.bind05.sh create mode 100755 testcase/syscalls/ltp.syscalls.bind06.sh create mode 100755 testcase/syscalls/ltp.syscalls.bpf_map01.sh create mode 100755 testcase/syscalls/ltp.syscalls.bpf_prog01.sh create mode 100755 testcase/syscalls/ltp.syscalls.bpf_prog02.sh create mode 100755 testcase/syscalls/ltp.syscalls.bpf_prog03.sh create mode 100755 testcase/syscalls/ltp.syscalls.bpf_prog04.sh create mode 100755 testcase/syscalls/ltp.syscalls.bpf_prog05.sh create mode 100755 testcase/syscalls/ltp.syscalls.bpf_prog06.sh create mode 100755 testcase/syscalls/ltp.syscalls.bpf_prog07.sh create mode 100755 testcase/syscalls/ltp.syscalls.brk01.sh create mode 100755 testcase/syscalls/ltp.syscalls.brk02.sh create mode 100755 testcase/syscalls/ltp.syscalls.cacheflush01.sh create mode 100755 testcase/syscalls/ltp.syscalls.capget01.sh create mode 100755 testcase/syscalls/ltp.syscalls.capget02.sh create mode 100755 testcase/syscalls/ltp.syscalls.capset01.sh create mode 100755 testcase/syscalls/ltp.syscalls.capset02.sh create mode 100755 testcase/syscalls/ltp.syscalls.capset03.sh create mode 100755 testcase/syscalls/ltp.syscalls.capset04.sh create mode 100755 testcase/syscalls/ltp.syscalls.chdir01.sh create mode 100755 testcase/syscalls/ltp.syscalls.chdir01A.sh create mode 100755 testcase/syscalls/ltp.syscalls.chdir04.sh create mode 100755 testcase/syscalls/ltp.syscalls.chmod01.sh create mode 100755 testcase/syscalls/ltp.syscalls.chmod01A.sh create mode 100755 testcase/syscalls/ltp.syscalls.chmod03.sh create mode 100755 testcase/syscalls/ltp.syscalls.chmod05.sh create mode 100755 testcase/syscalls/ltp.syscalls.chmod06.sh create mode 100755 testcase/syscalls/ltp.syscalls.chmod07.sh create mode 100755 testcase/syscalls/ltp.syscalls.chown01.sh create mode 100755 testcase/syscalls/ltp.syscalls.chown01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.chown02.sh create mode 100755 testcase/syscalls/ltp.syscalls.chown02_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.chown03.sh create mode 100755 testcase/syscalls/ltp.syscalls.chown03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.chown04.sh create mode 100755 testcase/syscalls/ltp.syscalls.chown04_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.chown05.sh create mode 100755 testcase/syscalls/ltp.syscalls.chown05_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.chroot01.sh create mode 100755 testcase/syscalls/ltp.syscalls.chroot02.sh create mode 100755 testcase/syscalls/ltp.syscalls.chroot03.sh create mode 100755 testcase/syscalls/ltp.syscalls.chroot04.sh create mode 100755 testcase/syscalls/ltp.syscalls.clock_adjtime01.sh create mode 100755 testcase/syscalls/ltp.syscalls.clock_adjtime02.sh create mode 100755 testcase/syscalls/ltp.syscalls.clock_getres01.sh create mode 100755 testcase/syscalls/ltp.syscalls.clock_gettime01.sh create mode 100755 testcase/syscalls/ltp.syscalls.clock_gettime02.sh create mode 100755 testcase/syscalls/ltp.syscalls.clock_gettime03.sh create mode 100755 testcase/syscalls/ltp.syscalls.clock_gettime04.sh create mode 100755 testcase/syscalls/ltp.syscalls.clock_nanosleep01.sh create mode 100755 testcase/syscalls/ltp.syscalls.clock_nanosleep02.sh create mode 100755 testcase/syscalls/ltp.syscalls.clock_nanosleep03.sh create mode 100755 testcase/syscalls/ltp.syscalls.clock_nanosleep04.sh create mode 100755 testcase/syscalls/ltp.syscalls.clock_settime01.sh create mode 100755 testcase/syscalls/ltp.syscalls.clock_settime02.sh create mode 100755 testcase/syscalls/ltp.syscalls.clock_settime03.sh create mode 100755 testcase/syscalls/ltp.syscalls.clone01.sh create mode 100755 testcase/syscalls/ltp.syscalls.clone02.sh create mode 100755 testcase/syscalls/ltp.syscalls.clone03.sh create mode 100755 testcase/syscalls/ltp.syscalls.clone04.sh create mode 100755 testcase/syscalls/ltp.syscalls.clone05.sh create mode 100755 testcase/syscalls/ltp.syscalls.clone06.sh create mode 100755 testcase/syscalls/ltp.syscalls.clone07.sh create mode 100755 testcase/syscalls/ltp.syscalls.clone08.sh create mode 100755 testcase/syscalls/ltp.syscalls.clone09.sh create mode 100755 testcase/syscalls/ltp.syscalls.clone301.sh create mode 100755 testcase/syscalls/ltp.syscalls.clone302.sh create mode 100755 testcase/syscalls/ltp.syscalls.clone303.sh create mode 100755 testcase/syscalls/ltp.syscalls.close01.sh create mode 100755 testcase/syscalls/ltp.syscalls.close02.sh create mode 100755 testcase/syscalls/ltp.syscalls.close_range01.sh create mode 100755 testcase/syscalls/ltp.syscalls.close_range02.sh create mode 100755 testcase/syscalls/ltp.syscalls.confstr01.sh create mode 100755 testcase/syscalls/ltp.syscalls.connect01.sh create mode 100755 testcase/syscalls/ltp.syscalls.connect02.sh create mode 100755 testcase/syscalls/ltp.syscalls.copy_file_range01.sh create mode 100755 testcase/syscalls/ltp.syscalls.copy_file_range02.sh create mode 100755 testcase/syscalls/ltp.syscalls.copy_file_range03.sh create mode 100755 testcase/syscalls/ltp.syscalls.creat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.creat03.sh create mode 100755 testcase/syscalls/ltp.syscalls.creat04.sh create mode 100755 testcase/syscalls/ltp.syscalls.creat05.sh create mode 100755 testcase/syscalls/ltp.syscalls.creat06.sh create mode 100755 testcase/syscalls/ltp.syscalls.creat07.sh create mode 100755 testcase/syscalls/ltp.syscalls.creat08.sh create mode 100755 testcase/syscalls/ltp.syscalls.creat09.sh create mode 100755 testcase/syscalls/ltp.syscalls.delete_module01.sh create mode 100755 testcase/syscalls/ltp.syscalls.delete_module02.sh create mode 100755 testcase/syscalls/ltp.syscalls.delete_module03.sh create mode 100755 testcase/syscalls/ltp.syscalls.dirtyc0w.sh create mode 100755 testcase/syscalls/ltp.syscalls.dirtyc0w_shmem.sh create mode 100755 testcase/syscalls/ltp.syscalls.dirtypipe.sh create mode 100755 testcase/syscalls/ltp.syscalls.dup01.sh create mode 100755 testcase/syscalls/ltp.syscalls.dup02.sh create mode 100755 testcase/syscalls/ltp.syscalls.dup03.sh create mode 100755 testcase/syscalls/ltp.syscalls.dup04.sh create mode 100755 testcase/syscalls/ltp.syscalls.dup05.sh create mode 100755 testcase/syscalls/ltp.syscalls.dup06.sh create mode 100755 testcase/syscalls/ltp.syscalls.dup07.sh create mode 100755 testcase/syscalls/ltp.syscalls.dup201.sh create mode 100755 testcase/syscalls/ltp.syscalls.dup202.sh create mode 100755 testcase/syscalls/ltp.syscalls.dup203.sh create mode 100755 testcase/syscalls/ltp.syscalls.dup204.sh create mode 100755 testcase/syscalls/ltp.syscalls.dup205.sh create mode 100755 testcase/syscalls/ltp.syscalls.dup206.sh create mode 100755 testcase/syscalls/ltp.syscalls.dup207.sh create mode 100755 testcase/syscalls/ltp.syscalls.dup3_01.sh create mode 100755 testcase/syscalls/ltp.syscalls.dup3_02.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll01.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_create01.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_create02.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_create1_01.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_create1_02.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_ctl01.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_ctl02.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_ctl03.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_ctl04.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_ctl05.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_pwait01.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_pwait02.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_pwait03.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_pwait04.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_pwait05.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_wait01.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_wait02.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_wait03.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_wait04.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_wait05.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_wait06.sh create mode 100755 testcase/syscalls/ltp.syscalls.epoll_wait07.sh create mode 100755 testcase/syscalls/ltp.syscalls.eventfd01.sh create mode 100755 testcase/syscalls/ltp.syscalls.eventfd02.sh create mode 100755 testcase/syscalls/ltp.syscalls.eventfd03.sh create mode 100755 testcase/syscalls/ltp.syscalls.eventfd04.sh create mode 100755 testcase/syscalls/ltp.syscalls.eventfd05.sh create mode 100755 testcase/syscalls/ltp.syscalls.eventfd06.sh create mode 100755 testcase/syscalls/ltp.syscalls.eventfd2_01.sh create mode 100755 testcase/syscalls/ltp.syscalls.eventfd2_02.sh create mode 100755 testcase/syscalls/ltp.syscalls.eventfd2_03.sh create mode 100755 testcase/syscalls/ltp.syscalls.execl01.sh create mode 100755 testcase/syscalls/ltp.syscalls.execle01.sh create mode 100755 testcase/syscalls/ltp.syscalls.execlp01.sh create mode 100755 testcase/syscalls/ltp.syscalls.execv01.sh create mode 100755 testcase/syscalls/ltp.syscalls.execve01.sh create mode 100755 testcase/syscalls/ltp.syscalls.execve02.sh create mode 100755 testcase/syscalls/ltp.syscalls.execve03.sh create mode 100755 testcase/syscalls/ltp.syscalls.execve04.sh create mode 100755 testcase/syscalls/ltp.syscalls.execve05.sh create mode 100755 testcase/syscalls/ltp.syscalls.execve06.sh create mode 100755 testcase/syscalls/ltp.syscalls.execveat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.execveat02.sh create mode 100755 testcase/syscalls/ltp.syscalls.execveat03.sh create mode 100755 testcase/syscalls/ltp.syscalls.execvp01.sh create mode 100755 testcase/syscalls/ltp.syscalls.exit01.sh create mode 100755 testcase/syscalls/ltp.syscalls.exit02.sh create mode 100755 testcase/syscalls/ltp.syscalls.exit_group01.sh create mode 100755 testcase/syscalls/ltp.syscalls.faccessat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.faccessat02.sh create mode 100755 testcase/syscalls/ltp.syscalls.faccessat201.sh create mode 100755 testcase/syscalls/ltp.syscalls.faccessat202.sh create mode 100755 testcase/syscalls/ltp.syscalls.fallocate01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fallocate02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fallocate03.sh create mode 100755 testcase/syscalls/ltp.syscalls.fallocate04.sh create mode 100755 testcase/syscalls/ltp.syscalls.fallocate05.sh create mode 100755 testcase/syscalls/ltp.syscalls.fallocate06.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify03.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify04.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify05.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify06.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify07.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify08.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify09.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify10.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify11.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify12.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify13.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify14.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify15.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify16.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify17.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify18.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify19.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify20.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify21.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify22.sh create mode 100755 testcase/syscalls/ltp.syscalls.fanotify23.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchdir01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchdir02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchdir03.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchmod01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchmod02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchmod03.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchmod04.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchmod05.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchmod06.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchmodat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchmodat02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchown01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchown01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchown02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchown02_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchown03.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchown03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchown04.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchown04_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchown05.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchown05_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchownat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fchownat02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl01_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl02_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl03.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl03_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl04.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl04_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl05.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl05_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl07.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl07_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl08.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl08_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl09.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl09_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl10.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl10_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl11.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl11_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl12.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl12_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl13.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl13_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl14.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl14_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl15.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl15_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl16.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl16_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl17.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl17_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl18.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl18_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl19.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl19_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl20.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl20_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl21.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl21_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl22.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl22_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl23.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl23_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl24.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl24_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl25.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl25_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl26.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl26_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl27.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl27_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl29.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl29_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl30.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl30_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl31.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl31_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl32.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl32_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl33.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl33_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl34.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl34_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl35.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl35_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl36.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl36_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl37.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl37_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl38.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl38_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl39.sh create mode 100755 testcase/syscalls/ltp.syscalls.fcntl39_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fdatasync01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fdatasync02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fdatasync03.sh create mode 100755 testcase/syscalls/ltp.syscalls.fgetxattr01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fgetxattr02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fgetxattr03.sh create mode 100755 testcase/syscalls/ltp.syscalls.finit_module01.sh create mode 100755 testcase/syscalls/ltp.syscalls.finit_module02.sh create mode 100755 testcase/syscalls/ltp.syscalls.flistxattr01.sh create mode 100755 testcase/syscalls/ltp.syscalls.flistxattr02.sh create mode 100755 testcase/syscalls/ltp.syscalls.flistxattr03.sh create mode 100755 testcase/syscalls/ltp.syscalls.flock01.sh create mode 100755 testcase/syscalls/ltp.syscalls.flock02.sh create mode 100755 testcase/syscalls/ltp.syscalls.flock03.sh create mode 100755 testcase/syscalls/ltp.syscalls.flock04.sh create mode 100755 testcase/syscalls/ltp.syscalls.flock06.sh create mode 100755 testcase/syscalls/ltp.syscalls.fmtmsg01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fork01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fork03.sh create mode 100755 testcase/syscalls/ltp.syscalls.fork04.sh create mode 100755 testcase/syscalls/ltp.syscalls.fork05.sh create mode 100755 testcase/syscalls/ltp.syscalls.fork06.sh create mode 100755 testcase/syscalls/ltp.syscalls.fork07.sh create mode 100755 testcase/syscalls/ltp.syscalls.fork08.sh create mode 100755 testcase/syscalls/ltp.syscalls.fork09.sh create mode 100755 testcase/syscalls/ltp.syscalls.fork10.sh create mode 100755 testcase/syscalls/ltp.syscalls.fork11.sh create mode 100755 testcase/syscalls/ltp.syscalls.fork13.sh create mode 100755 testcase/syscalls/ltp.syscalls.fork14.sh create mode 100755 testcase/syscalls/ltp.syscalls.fpathconf01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fremovexattr01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fremovexattr02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fsconfig01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fsconfig02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fsconfig03.sh create mode 100755 testcase/syscalls/ltp.syscalls.fsetxattr01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fsetxattr02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fsmount01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fsmount02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fsopen01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fsopen02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fspick01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fspick02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fstat02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fstat02_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fstat03.sh create mode 100755 testcase/syscalls/ltp.syscalls.fstat03_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fstatat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fstatfs01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fstatfs01_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fstatfs02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fstatfs02_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.fsync01.sh create mode 100755 testcase/syscalls/ltp.syscalls.fsync02.sh create mode 100755 testcase/syscalls/ltp.syscalls.fsync03.sh create mode 100755 testcase/syscalls/ltp.syscalls.fsync04.sh create mode 100755 testcase/syscalls/ltp.syscalls.ftruncate01.sh create mode 100755 testcase/syscalls/ltp.syscalls.ftruncate01_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.ftruncate03.sh create mode 100755 testcase/syscalls/ltp.syscalls.ftruncate03_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.ftruncate04.sh create mode 100755 testcase/syscalls/ltp.syscalls.ftruncate04_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.futex_cmp_requeue01.sh create mode 100755 testcase/syscalls/ltp.syscalls.futex_cmp_requeue02.sh create mode 100755 testcase/syscalls/ltp.syscalls.futex_wait01.sh create mode 100755 testcase/syscalls/ltp.syscalls.futex_wait02.sh create mode 100755 testcase/syscalls/ltp.syscalls.futex_wait03.sh create mode 100755 testcase/syscalls/ltp.syscalls.futex_wait04.sh create mode 100755 testcase/syscalls/ltp.syscalls.futex_wait05.sh create mode 100755 testcase/syscalls/ltp.syscalls.futex_wait_bitset01.sh create mode 100755 testcase/syscalls/ltp.syscalls.futex_waitv01.sh create mode 100755 testcase/syscalls/ltp.syscalls.futex_waitv02.sh create mode 100755 testcase/syscalls/ltp.syscalls.futex_waitv03.sh create mode 100755 testcase/syscalls/ltp.syscalls.futex_wake01.sh create mode 100755 testcase/syscalls/ltp.syscalls.futex_wake02.sh create mode 100755 testcase/syscalls/ltp.syscalls.futex_wake03.sh create mode 100755 testcase/syscalls/ltp.syscalls.futex_wake04.sh create mode 100755 testcase/syscalls/ltp.syscalls.futimesat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.get_mempolicy01.sh create mode 100755 testcase/syscalls/ltp.syscalls.get_mempolicy02.sh create mode 100755 testcase/syscalls/ltp.syscalls.get_robust_list01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getcontext01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getcpu01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getcwd01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getcwd02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getcwd03.sh create mode 100755 testcase/syscalls/ltp.syscalls.getcwd04.sh create mode 100755 testcase/syscalls/ltp.syscalls.getdents01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getdents02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getdomainname01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getegid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getegid01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.getegid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getegid02_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.geteuid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.geteuid01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.geteuid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.geteuid02_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.getgid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getgid01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.getgid03.sh create mode 100755 testcase/syscalls/ltp.syscalls.getgid03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.getgroups01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getgroups01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.getgroups03.sh create mode 100755 testcase/syscalls/ltp.syscalls.getgroups03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.gethostbyname_r01.sh create mode 100755 testcase/syscalls/ltp.syscalls.gethostid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.gethostname01.sh create mode 100755 testcase/syscalls/ltp.syscalls.gethostname02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getitimer01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getitimer02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getpagesize01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getpeername01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getpgid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getpgid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getpgrp01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getpid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getpid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getppid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getppid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getpriority01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getpriority02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getrandom01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getrandom02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getrandom03.sh create mode 100755 testcase/syscalls/ltp.syscalls.getrandom04.sh create mode 100755 testcase/syscalls/ltp.syscalls.getrandom05.sh create mode 100755 testcase/syscalls/ltp.syscalls.getresgid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getresgid01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.getresgid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getresgid02_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.getresgid03.sh create mode 100755 testcase/syscalls/ltp.syscalls.getresgid03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.getresuid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getresuid01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.getresuid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getresuid02_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.getresuid03.sh create mode 100755 testcase/syscalls/ltp.syscalls.getresuid03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.getrlimit01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getrlimit02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getrlimit03.sh create mode 100755 testcase/syscalls/ltp.syscalls.getrusage01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getrusage02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getrusage03.sh create mode 100755 testcase/syscalls/ltp.syscalls.getrusage04.sh create mode 100755 testcase/syscalls/ltp.syscalls.getsid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getsid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getsockname01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getsockopt01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getsockopt02.sh create mode 100755 testcase/syscalls/ltp.syscalls.gettid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.gettid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.gettimeofday01.sh create mode 100755 testcase/syscalls/ltp.syscalls.gettimeofday02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getuid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getuid01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.getuid03.sh create mode 100755 testcase/syscalls/ltp.syscalls.getuid03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.getxattr01.sh create mode 100755 testcase/syscalls/ltp.syscalls.getxattr02.sh create mode 100755 testcase/syscalls/ltp.syscalls.getxattr03.sh create mode 100755 testcase/syscalls/ltp.syscalls.getxattr04.sh create mode 100755 testcase/syscalls/ltp.syscalls.getxattr05.sh create mode 100755 testcase/syscalls/ltp.syscalls.init_module01.sh create mode 100755 testcase/syscalls/ltp.syscalls.init_module02.sh create mode 100755 testcase/syscalls/ltp.syscalls.inotify01.sh create mode 100755 testcase/syscalls/ltp.syscalls.inotify02.sh create mode 100755 testcase/syscalls/ltp.syscalls.inotify03.sh create mode 100755 testcase/syscalls/ltp.syscalls.inotify04.sh create mode 100755 testcase/syscalls/ltp.syscalls.inotify05.sh create mode 100755 testcase/syscalls/ltp.syscalls.inotify06.sh create mode 100755 testcase/syscalls/ltp.syscalls.inotify07.sh create mode 100755 testcase/syscalls/ltp.syscalls.inotify08.sh create mode 100755 testcase/syscalls/ltp.syscalls.inotify09.sh create mode 100755 testcase/syscalls/ltp.syscalls.inotify10.sh create mode 100755 testcase/syscalls/ltp.syscalls.inotify11.sh create mode 100755 testcase/syscalls/ltp.syscalls.inotify12.sh create mode 100755 testcase/syscalls/ltp.syscalls.inotify_init1_01.sh create mode 100755 testcase/syscalls/ltp.syscalls.inotify_init1_02.sh create mode 100755 testcase/syscalls/ltp.syscalls.io_cancel01.sh create mode 100755 testcase/syscalls/ltp.syscalls.io_cancel02.sh create mode 100755 testcase/syscalls/ltp.syscalls.io_destroy01.sh create mode 100755 testcase/syscalls/ltp.syscalls.io_destroy02.sh create mode 100755 testcase/syscalls/ltp.syscalls.io_getevents01.sh create mode 100755 testcase/syscalls/ltp.syscalls.io_getevents02.sh create mode 100755 testcase/syscalls/ltp.syscalls.io_pgetevents01.sh create mode 100755 testcase/syscalls/ltp.syscalls.io_pgetevents02.sh create mode 100755 testcase/syscalls/ltp.syscalls.io_setup01.sh create mode 100755 testcase/syscalls/ltp.syscalls.io_setup02.sh create mode 100755 testcase/syscalls/ltp.syscalls.io_submit01.sh create mode 100755 testcase/syscalls/ltp.syscalls.io_submit02.sh create mode 100755 testcase/syscalls/ltp.syscalls.io_submit03.sh create mode 100755 testcase/syscalls/ltp.syscalls.io_uring01.sh create mode 100755 testcase/syscalls/ltp.syscalls.io_uring02.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl01.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl02.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl03.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl04.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl05.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl06.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl07.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl08.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl09.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl_loop01.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl_loop02.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl_loop03.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl_loop04.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl_loop05.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl_loop06.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl_loop07.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl_ns01.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl_ns02.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl_ns03.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl_ns04.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl_ns05.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl_ns06.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl_ns07.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioctl_sg01.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioperm01.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioperm02.sh create mode 100755 testcase/syscalls/ltp.syscalls.iopl01.sh create mode 100755 testcase/syscalls/ltp.syscalls.iopl02.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioprio_get01.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioprio_set01.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioprio_set02.sh create mode 100755 testcase/syscalls/ltp.syscalls.ioprio_set03.sh create mode 100755 testcase/syscalls/ltp.syscalls.kcmp01.sh create mode 100755 testcase/syscalls/ltp.syscalls.kcmp02.sh create mode 100755 testcase/syscalls/ltp.syscalls.kcmp03.sh create mode 100755 testcase/syscalls/ltp.syscalls.keyctl01.sh create mode 100755 testcase/syscalls/ltp.syscalls.keyctl02.sh create mode 100755 testcase/syscalls/ltp.syscalls.keyctl03.sh create mode 100755 testcase/syscalls/ltp.syscalls.keyctl04.sh create mode 100755 testcase/syscalls/ltp.syscalls.keyctl05.sh create mode 100755 testcase/syscalls/ltp.syscalls.keyctl06.sh create mode 100755 testcase/syscalls/ltp.syscalls.keyctl07.sh create mode 100755 testcase/syscalls/ltp.syscalls.keyctl08.sh create mode 100755 testcase/syscalls/ltp.syscalls.keyctl09.sh create mode 100755 testcase/syscalls/ltp.syscalls.kill02.sh create mode 100755 testcase/syscalls/ltp.syscalls.kill03.sh create mode 100755 testcase/syscalls/ltp.syscalls.kill05.sh create mode 100755 testcase/syscalls/ltp.syscalls.kill06.sh create mode 100755 testcase/syscalls/ltp.syscalls.kill07.sh create mode 100755 testcase/syscalls/ltp.syscalls.kill08.sh create mode 100755 testcase/syscalls/ltp.syscalls.kill09.sh create mode 100755 testcase/syscalls/ltp.syscalls.kill10.sh create mode 100755 testcase/syscalls/ltp.syscalls.kill11.sh create mode 100755 testcase/syscalls/ltp.syscalls.kill12.sh create mode 100755 testcase/syscalls/ltp.syscalls.kill13.sh create mode 100755 testcase/syscalls/ltp.syscalls.lchown01.sh create mode 100755 testcase/syscalls/ltp.syscalls.lchown01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.lchown02.sh create mode 100755 testcase/syscalls/ltp.syscalls.lchown02_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.lchown03.sh create mode 100755 testcase/syscalls/ltp.syscalls.lchown03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.leapsec01.sh create mode 100755 testcase/syscalls/ltp.syscalls.lgetxattr01.sh create mode 100755 testcase/syscalls/ltp.syscalls.lgetxattr02.sh create mode 100755 testcase/syscalls/ltp.syscalls.link01.sh create mode 100755 testcase/syscalls/ltp.syscalls.link02.sh create mode 100755 testcase/syscalls/ltp.syscalls.link04.sh create mode 100755 testcase/syscalls/ltp.syscalls.link05.sh create mode 100755 testcase/syscalls/ltp.syscalls.link08.sh create mode 100755 testcase/syscalls/ltp.syscalls.linkat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.linkat02.sh create mode 100755 testcase/syscalls/ltp.syscalls.listen01.sh create mode 100755 testcase/syscalls/ltp.syscalls.listxattr01.sh create mode 100755 testcase/syscalls/ltp.syscalls.listxattr02.sh create mode 100755 testcase/syscalls/ltp.syscalls.listxattr03.sh create mode 100755 testcase/syscalls/ltp.syscalls.llistxattr01.sh create mode 100755 testcase/syscalls/ltp.syscalls.llistxattr02.sh create mode 100755 testcase/syscalls/ltp.syscalls.llistxattr03.sh create mode 100755 testcase/syscalls/ltp.syscalls.llseek01.sh create mode 100755 testcase/syscalls/ltp.syscalls.llseek02.sh create mode 100755 testcase/syscalls/ltp.syscalls.llseek03.sh create mode 100755 testcase/syscalls/ltp.syscalls.lremovexattr01.sh create mode 100755 testcase/syscalls/ltp.syscalls.lseek01.sh create mode 100755 testcase/syscalls/ltp.syscalls.lseek02.sh create mode 100755 testcase/syscalls/ltp.syscalls.lseek07.sh create mode 100755 testcase/syscalls/ltp.syscalls.lseek11.sh create mode 100755 testcase/syscalls/ltp.syscalls.lstat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.lstat01A.sh create mode 100755 testcase/syscalls/ltp.syscalls.lstat01A_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.lstat01_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.lstat02.sh create mode 100755 testcase/syscalls/ltp.syscalls.lstat02_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.madvise01.sh create mode 100755 testcase/syscalls/ltp.syscalls.madvise02.sh create mode 100755 testcase/syscalls/ltp.syscalls.madvise03.sh create mode 100755 testcase/syscalls/ltp.syscalls.madvise05.sh create mode 100755 testcase/syscalls/ltp.syscalls.madvise06.sh create mode 100755 testcase/syscalls/ltp.syscalls.madvise07.sh create mode 100755 testcase/syscalls/ltp.syscalls.madvise08.sh create mode 100755 testcase/syscalls/ltp.syscalls.madvise09.sh create mode 100755 testcase/syscalls/ltp.syscalls.madvise10.sh create mode 100755 testcase/syscalls/ltp.syscalls.madvise11.sh create mode 100755 testcase/syscalls/ltp.syscalls.mallinfo02.sh create mode 100755 testcase/syscalls/ltp.syscalls.mallinfo2_01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mallopt01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mbind01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mbind02.sh create mode 100755 testcase/syscalls/ltp.syscalls.mbind03.sh create mode 100755 testcase/syscalls/ltp.syscalls.mbind04.sh create mode 100755 testcase/syscalls/ltp.syscalls.membarrier01.sh create mode 100755 testcase/syscalls/ltp.syscalls.memcmp01.sh create mode 100755 testcase/syscalls/ltp.syscalls.memcpy01.sh create mode 100755 testcase/syscalls/ltp.syscalls.memfd_create01.sh create mode 100755 testcase/syscalls/ltp.syscalls.memfd_create02.sh create mode 100755 testcase/syscalls/ltp.syscalls.memfd_create03.sh create mode 100755 testcase/syscalls/ltp.syscalls.memfd_create04.sh create mode 100755 testcase/syscalls/ltp.syscalls.memset01.sh create mode 100755 testcase/syscalls/ltp.syscalls.migrate_pages01.sh create mode 100755 testcase/syscalls/ltp.syscalls.migrate_pages02.sh create mode 100755 testcase/syscalls/ltp.syscalls.migrate_pages03.sh create mode 100755 testcase/syscalls/ltp.syscalls.mincore01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mincore02.sh create mode 100755 testcase/syscalls/ltp.syscalls.mincore03.sh create mode 100755 testcase/syscalls/ltp.syscalls.mincore04.sh create mode 100755 testcase/syscalls/ltp.syscalls.mkdir02.sh create mode 100755 testcase/syscalls/ltp.syscalls.mkdir03.sh create mode 100755 testcase/syscalls/ltp.syscalls.mkdir04.sh create mode 100755 testcase/syscalls/ltp.syscalls.mkdir05.sh create mode 100755 testcase/syscalls/ltp.syscalls.mkdir09.sh create mode 100755 testcase/syscalls/ltp.syscalls.mkdirat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mkdirat02.sh create mode 100755 testcase/syscalls/ltp.syscalls.mknod01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mknod02.sh create mode 100755 testcase/syscalls/ltp.syscalls.mknod03.sh create mode 100755 testcase/syscalls/ltp.syscalls.mknod04.sh create mode 100755 testcase/syscalls/ltp.syscalls.mknod05.sh create mode 100755 testcase/syscalls/ltp.syscalls.mknod06.sh create mode 100755 testcase/syscalls/ltp.syscalls.mknod07.sh create mode 100755 testcase/syscalls/ltp.syscalls.mknod08.sh create mode 100755 testcase/syscalls/ltp.syscalls.mknod09.sh create mode 100755 testcase/syscalls/ltp.syscalls.mknodat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mknodat02.sh create mode 100755 testcase/syscalls/ltp.syscalls.mlock01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mlock02.sh create mode 100755 testcase/syscalls/ltp.syscalls.mlock03.sh create mode 100755 testcase/syscalls/ltp.syscalls.mlock04.sh create mode 100755 testcase/syscalls/ltp.syscalls.mlock05.sh create mode 100755 testcase/syscalls/ltp.syscalls.mlock201.sh create mode 100755 testcase/syscalls/ltp.syscalls.mlock202.sh create mode 100755 testcase/syscalls/ltp.syscalls.mlock203.sh create mode 100755 testcase/syscalls/ltp.syscalls.mlockall01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mlockall02.sh create mode 100755 testcase/syscalls/ltp.syscalls.mlockall03.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap02.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap03.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap04.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap05.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap06.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap08.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap09.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap12.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap13.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap14.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap15.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap16.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap17.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap18.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap19.sh create mode 100755 testcase/syscalls/ltp.syscalls.mmap20.sh create mode 100755 testcase/syscalls/ltp.syscalls.modify_ldt01.sh create mode 100755 testcase/syscalls/ltp.syscalls.modify_ldt02.sh create mode 100755 testcase/syscalls/ltp.syscalls.modify_ldt03.sh create mode 100755 testcase/syscalls/ltp.syscalls.mount01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mount02.sh create mode 100755 testcase/syscalls/ltp.syscalls.mount03.sh create mode 100755 testcase/syscalls/ltp.syscalls.mount04.sh create mode 100755 testcase/syscalls/ltp.syscalls.mount05.sh create mode 100755 testcase/syscalls/ltp.syscalls.mount06.sh create mode 100755 testcase/syscalls/ltp.syscalls.mount07.sh create mode 100755 testcase/syscalls/ltp.syscalls.mount_setattr01.sh create mode 100755 testcase/syscalls/ltp.syscalls.move_mount01.sh create mode 100755 testcase/syscalls/ltp.syscalls.move_mount02.sh create mode 100755 testcase/syscalls/ltp.syscalls.move_pages01.sh create mode 100755 testcase/syscalls/ltp.syscalls.move_pages02.sh create mode 100755 testcase/syscalls/ltp.syscalls.move_pages03.sh create mode 100755 testcase/syscalls/ltp.syscalls.move_pages04.sh create mode 100755 testcase/syscalls/ltp.syscalls.move_pages05.sh create mode 100755 testcase/syscalls/ltp.syscalls.move_pages06.sh create mode 100755 testcase/syscalls/ltp.syscalls.move_pages07.sh create mode 100755 testcase/syscalls/ltp.syscalls.move_pages09.sh create mode 100755 testcase/syscalls/ltp.syscalls.move_pages10.sh create mode 100755 testcase/syscalls/ltp.syscalls.move_pages11.sh create mode 100755 testcase/syscalls/ltp.syscalls.move_pages12.sh create mode 100755 testcase/syscalls/ltp.syscalls.mprotect01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mprotect02.sh create mode 100755 testcase/syscalls/ltp.syscalls.mprotect03.sh create mode 100755 testcase/syscalls/ltp.syscalls.mprotect04.sh create mode 100755 testcase/syscalls/ltp.syscalls.mprotect05.sh create mode 100755 testcase/syscalls/ltp.syscalls.mq_notify01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mq_notify02.sh create mode 100755 testcase/syscalls/ltp.syscalls.mq_notify03.sh create mode 100755 testcase/syscalls/ltp.syscalls.mq_open01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mq_timedreceive01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mq_timedsend01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mq_unlink01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mremap01.sh create mode 100755 testcase/syscalls/ltp.syscalls.mremap02.sh create mode 100755 testcase/syscalls/ltp.syscalls.mremap03.sh create mode 100755 testcase/syscalls/ltp.syscalls.mremap04.sh create mode 100755 testcase/syscalls/ltp.syscalls.mremap05.sh create mode 100755 testcase/syscalls/ltp.syscalls.mremap06.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgctl01.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgctl02.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgctl03.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgctl04.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgctl05.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgctl06.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgctl12.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgget01.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgget02.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgget03.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgget04.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgget05.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgrcv01.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgrcv02.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgrcv03.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgrcv05.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgrcv06.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgrcv07.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgrcv08.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgsnd01.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgsnd02.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgsnd05.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgsnd06.sh create mode 100755 testcase/syscalls/ltp.syscalls.msgstress01.sh create mode 100755 testcase/syscalls/ltp.syscalls.msync01.sh create mode 100755 testcase/syscalls/ltp.syscalls.msync02.sh create mode 100755 testcase/syscalls/ltp.syscalls.msync03.sh create mode 100755 testcase/syscalls/ltp.syscalls.msync04.sh create mode 100755 testcase/syscalls/ltp.syscalls.munlock01.sh create mode 100755 testcase/syscalls/ltp.syscalls.munlock02.sh create mode 100755 testcase/syscalls/ltp.syscalls.munlockall01.sh create mode 100755 testcase/syscalls/ltp.syscalls.munmap01.sh create mode 100755 testcase/syscalls/ltp.syscalls.munmap02.sh create mode 100755 testcase/syscalls/ltp.syscalls.munmap03.sh create mode 100755 testcase/syscalls/ltp.syscalls.name_to_handle_at01.sh create mode 100755 testcase/syscalls/ltp.syscalls.name_to_handle_at02.sh create mode 100755 testcase/syscalls/ltp.syscalls.nanosleep01.sh create mode 100755 testcase/syscalls/ltp.syscalls.nanosleep02.sh create mode 100755 testcase/syscalls/ltp.syscalls.nanosleep04.sh create mode 100755 testcase/syscalls/ltp.syscalls.newuname01.sh create mode 100755 testcase/syscalls/ltp.syscalls.nftw01.sh create mode 100755 testcase/syscalls/ltp.syscalls.nftw6401.sh create mode 100755 testcase/syscalls/ltp.syscalls.nice01.sh create mode 100755 testcase/syscalls/ltp.syscalls.nice02.sh create mode 100755 testcase/syscalls/ltp.syscalls.nice03.sh create mode 100755 testcase/syscalls/ltp.syscalls.nice04.sh create mode 100755 testcase/syscalls/ltp.syscalls.nice05.sh create mode 100755 testcase/syscalls/ltp.syscalls.open01.sh create mode 100755 testcase/syscalls/ltp.syscalls.open01A.sh create mode 100755 testcase/syscalls/ltp.syscalls.open02.sh create mode 100755 testcase/syscalls/ltp.syscalls.open03.sh create mode 100755 testcase/syscalls/ltp.syscalls.open04.sh create mode 100755 testcase/syscalls/ltp.syscalls.open06.sh create mode 100755 testcase/syscalls/ltp.syscalls.open07.sh create mode 100755 testcase/syscalls/ltp.syscalls.open08.sh create mode 100755 testcase/syscalls/ltp.syscalls.open09.sh create mode 100755 testcase/syscalls/ltp.syscalls.open10.sh create mode 100755 testcase/syscalls/ltp.syscalls.open11.sh create mode 100755 testcase/syscalls/ltp.syscalls.open12.sh create mode 100755 testcase/syscalls/ltp.syscalls.open13.sh create mode 100755 testcase/syscalls/ltp.syscalls.open14.sh create mode 100755 testcase/syscalls/ltp.syscalls.open_by_handle_at01.sh create mode 100755 testcase/syscalls/ltp.syscalls.open_by_handle_at02.sh create mode 100755 testcase/syscalls/ltp.syscalls.open_tree01.sh create mode 100755 testcase/syscalls/ltp.syscalls.open_tree02.sh create mode 100755 testcase/syscalls/ltp.syscalls.openat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.openat02.sh create mode 100755 testcase/syscalls/ltp.syscalls.openat03.sh create mode 100755 testcase/syscalls/ltp.syscalls.openat04.sh create mode 100755 testcase/syscalls/ltp.syscalls.openat201.sh create mode 100755 testcase/syscalls/ltp.syscalls.openat202.sh create mode 100755 testcase/syscalls/ltp.syscalls.openat203.sh create mode 100755 testcase/syscalls/ltp.syscalls.pathconf01.sh create mode 100755 testcase/syscalls/ltp.syscalls.pathconf02.sh create mode 100755 testcase/syscalls/ltp.syscalls.pause01.sh create mode 100755 testcase/syscalls/ltp.syscalls.pause02.sh create mode 100755 testcase/syscalls/ltp.syscalls.pause03.sh create mode 100755 testcase/syscalls/ltp.syscalls.perf_event_open01.sh create mode 100755 testcase/syscalls/ltp.syscalls.perf_event_open02.sh create mode 100755 testcase/syscalls/ltp.syscalls.perf_event_open03.sh create mode 100755 testcase/syscalls/ltp.syscalls.personality01.sh create mode 100755 testcase/syscalls/ltp.syscalls.personality02.sh create mode 100755 testcase/syscalls/ltp.syscalls.pidfd_getfd01.sh create mode 100755 testcase/syscalls/ltp.syscalls.pidfd_getfd02.sh create mode 100755 testcase/syscalls/ltp.syscalls.pidfd_open01.sh create mode 100755 testcase/syscalls/ltp.syscalls.pidfd_open02.sh create mode 100755 testcase/syscalls/ltp.syscalls.pidfd_open03.sh create mode 100755 testcase/syscalls/ltp.syscalls.pidfd_open04.sh create mode 100755 testcase/syscalls/ltp.syscalls.pidfd_send_signal01.sh create mode 100755 testcase/syscalls/ltp.syscalls.pidfd_send_signal02.sh create mode 100755 testcase/syscalls/ltp.syscalls.pidfd_send_signal03.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe01.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe02.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe03.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe04.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe05.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe06.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe07.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe08.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe09.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe10.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe11.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe12.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe13.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe14.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe15.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe2_01.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe2_02.sh create mode 100755 testcase/syscalls/ltp.syscalls.pipe2_04.sh create mode 100755 testcase/syscalls/ltp.syscalls.pivot_root01.sh create mode 100755 testcase/syscalls/ltp.syscalls.pkey01.sh create mode 100755 testcase/syscalls/ltp.syscalls.poll01.sh create mode 100755 testcase/syscalls/ltp.syscalls.poll02.sh create mode 100755 testcase/syscalls/ltp.syscalls.posix_fadvise01.sh create mode 100755 testcase/syscalls/ltp.syscalls.posix_fadvise01_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.posix_fadvise02.sh create mode 100755 testcase/syscalls/ltp.syscalls.posix_fadvise02_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.posix_fadvise03.sh create mode 100755 testcase/syscalls/ltp.syscalls.posix_fadvise03_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.posix_fadvise04.sh create mode 100755 testcase/syscalls/ltp.syscalls.posix_fadvise04_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.ppoll01.sh create mode 100755 testcase/syscalls/ltp.syscalls.prctl01.sh create mode 100755 testcase/syscalls/ltp.syscalls.prctl02.sh create mode 100755 testcase/syscalls/ltp.syscalls.prctl03.sh create mode 100755 testcase/syscalls/ltp.syscalls.prctl04.sh create mode 100755 testcase/syscalls/ltp.syscalls.prctl05.sh create mode 100755 testcase/syscalls/ltp.syscalls.prctl06.sh create mode 100755 testcase/syscalls/ltp.syscalls.prctl07.sh create mode 100755 testcase/syscalls/ltp.syscalls.prctl08.sh create mode 100755 testcase/syscalls/ltp.syscalls.prctl09.sh create mode 100755 testcase/syscalls/ltp.syscalls.prctl10.sh create mode 100755 testcase/syscalls/ltp.syscalls.pread01.sh create mode 100755 testcase/syscalls/ltp.syscalls.pread01_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.pread02.sh create mode 100755 testcase/syscalls/ltp.syscalls.pread02_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.preadv01.sh create mode 100755 testcase/syscalls/ltp.syscalls.preadv01_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.preadv02.sh create mode 100755 testcase/syscalls/ltp.syscalls.preadv02_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.preadv03.sh create mode 100755 testcase/syscalls/ltp.syscalls.preadv03_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.preadv201.sh create mode 100755 testcase/syscalls/ltp.syscalls.preadv201_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.preadv202.sh create mode 100755 testcase/syscalls/ltp.syscalls.preadv202_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.preadv203.sh create mode 100755 testcase/syscalls/ltp.syscalls.preadv203_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.process_madvise01.sh create mode 100755 testcase/syscalls/ltp.syscalls.process_vm_readv01.sh create mode 100755 testcase/syscalls/ltp.syscalls.process_vm_readv02.sh create mode 100755 testcase/syscalls/ltp.syscalls.process_vm_readv03.sh create mode 100755 testcase/syscalls/ltp.syscalls.process_vm_writev01.sh create mode 100755 testcase/syscalls/ltp.syscalls.process_vm_writev02.sh create mode 100755 testcase/syscalls/ltp.syscalls.profil01.sh create mode 100755 testcase/syscalls/ltp.syscalls.prot_hsymlinks.sh create mode 100755 testcase/syscalls/ltp.syscalls.pselect01.sh create mode 100755 testcase/syscalls/ltp.syscalls.pselect01_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.pselect02.sh create mode 100755 testcase/syscalls/ltp.syscalls.pselect02_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.pselect03.sh create mode 100755 testcase/syscalls/ltp.syscalls.pselect03_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.ptrace01.sh create mode 100755 testcase/syscalls/ltp.syscalls.ptrace02.sh create mode 100755 testcase/syscalls/ltp.syscalls.ptrace03.sh create mode 100755 testcase/syscalls/ltp.syscalls.ptrace04.sh create mode 100755 testcase/syscalls/ltp.syscalls.ptrace05.sh create mode 100755 testcase/syscalls/ltp.syscalls.ptrace06.sh create mode 100755 testcase/syscalls/ltp.syscalls.ptrace07.sh create mode 100755 testcase/syscalls/ltp.syscalls.ptrace08.sh create mode 100755 testcase/syscalls/ltp.syscalls.ptrace09.sh create mode 100755 testcase/syscalls/ltp.syscalls.ptrace10.sh create mode 100755 testcase/syscalls/ltp.syscalls.ptrace11.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwrite01.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwrite01_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwrite02.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwrite02_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwrite03.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwrite03_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwrite04.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwrite04_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwritev01.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwritev01_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwritev02.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwritev02_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwritev03.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwritev03_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwritev201.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwritev201_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwritev202.sh create mode 100755 testcase/syscalls/ltp.syscalls.pwritev202_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.qmm01.sh create mode 100755 testcase/syscalls/ltp.syscalls.quotactl01.sh create mode 100755 testcase/syscalls/ltp.syscalls.quotactl02.sh create mode 100755 testcase/syscalls/ltp.syscalls.quotactl03.sh create mode 100755 testcase/syscalls/ltp.syscalls.quotactl04.sh create mode 100755 testcase/syscalls/ltp.syscalls.quotactl05.sh create mode 100755 testcase/syscalls/ltp.syscalls.quotactl06.sh create mode 100755 testcase/syscalls/ltp.syscalls.quotactl07.sh create mode 100755 testcase/syscalls/ltp.syscalls.quotactl08.sh create mode 100755 testcase/syscalls/ltp.syscalls.quotactl09.sh create mode 100755 testcase/syscalls/ltp.syscalls.read01.sh create mode 100755 testcase/syscalls/ltp.syscalls.read02.sh create mode 100755 testcase/syscalls/ltp.syscalls.read03.sh create mode 100755 testcase/syscalls/ltp.syscalls.read04.sh create mode 100755 testcase/syscalls/ltp.syscalls.readahead01.sh create mode 100755 testcase/syscalls/ltp.syscalls.readahead02.sh create mode 100755 testcase/syscalls/ltp.syscalls.readdir01.sh create mode 100755 testcase/syscalls/ltp.syscalls.readdir21.sh create mode 100755 testcase/syscalls/ltp.syscalls.readlink01.sh create mode 100755 testcase/syscalls/ltp.syscalls.readlink01A.sh create mode 100755 testcase/syscalls/ltp.syscalls.readlink03.sh create mode 100755 testcase/syscalls/ltp.syscalls.readlinkat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.readlinkat02.sh create mode 100755 testcase/syscalls/ltp.syscalls.readv01.sh create mode 100755 testcase/syscalls/ltp.syscalls.readv02.sh create mode 100755 testcase/syscalls/ltp.syscalls.realpath01.sh create mode 100755 testcase/syscalls/ltp.syscalls.reboot01.sh create mode 100755 testcase/syscalls/ltp.syscalls.reboot02.sh create mode 100755 testcase/syscalls/ltp.syscalls.recv01.sh create mode 100755 testcase/syscalls/ltp.syscalls.recvfrom01.sh create mode 100755 testcase/syscalls/ltp.syscalls.recvmmsg01.sh create mode 100755 testcase/syscalls/ltp.syscalls.recvmsg01.sh create mode 100755 testcase/syscalls/ltp.syscalls.recvmsg02.sh create mode 100755 testcase/syscalls/ltp.syscalls.recvmsg03.sh create mode 100755 testcase/syscalls/ltp.syscalls.remap_file_pages01.sh create mode 100755 testcase/syscalls/ltp.syscalls.remap_file_pages02.sh create mode 100755 testcase/syscalls/ltp.syscalls.removexattr01.sh create mode 100755 testcase/syscalls/ltp.syscalls.removexattr02.sh create mode 100755 testcase/syscalls/ltp.syscalls.rename01.sh create mode 100755 testcase/syscalls/ltp.syscalls.rename01A.sh create mode 100755 testcase/syscalls/ltp.syscalls.rename03.sh create mode 100755 testcase/syscalls/ltp.syscalls.rename04.sh create mode 100755 testcase/syscalls/ltp.syscalls.rename05.sh create mode 100755 testcase/syscalls/ltp.syscalls.rename06.sh create mode 100755 testcase/syscalls/ltp.syscalls.rename07.sh create mode 100755 testcase/syscalls/ltp.syscalls.rename08.sh create mode 100755 testcase/syscalls/ltp.syscalls.rename09.sh create mode 100755 testcase/syscalls/ltp.syscalls.rename10.sh create mode 100755 testcase/syscalls/ltp.syscalls.rename11.sh create mode 100755 testcase/syscalls/ltp.syscalls.rename12.sh create mode 100755 testcase/syscalls/ltp.syscalls.rename13.sh create mode 100755 testcase/syscalls/ltp.syscalls.rename14.sh create mode 100755 testcase/syscalls/ltp.syscalls.renameat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.renameat201.sh create mode 100755 testcase/syscalls/ltp.syscalls.renameat202.sh create mode 100755 testcase/syscalls/ltp.syscalls.request_key01.sh create mode 100755 testcase/syscalls/ltp.syscalls.request_key02.sh create mode 100755 testcase/syscalls/ltp.syscalls.request_key03.sh create mode 100755 testcase/syscalls/ltp.syscalls.request_key04.sh create mode 100755 testcase/syscalls/ltp.syscalls.request_key05.sh create mode 100755 testcase/syscalls/ltp.syscalls.rmdir01.sh create mode 100755 testcase/syscalls/ltp.syscalls.rmdir02.sh create mode 100755 testcase/syscalls/ltp.syscalls.rmdir03.sh create mode 100755 testcase/syscalls/ltp.syscalls.rmdir03A.sh create mode 100755 testcase/syscalls/ltp.syscalls.rt_sigaction01.sh create mode 100755 testcase/syscalls/ltp.syscalls.rt_sigaction02.sh create mode 100755 testcase/syscalls/ltp.syscalls.rt_sigaction03.sh create mode 100755 testcase/syscalls/ltp.syscalls.rt_sigprocmask01.sh create mode 100755 testcase/syscalls/ltp.syscalls.rt_sigprocmask02.sh create mode 100755 testcase/syscalls/ltp.syscalls.rt_sigqueueinfo01.sh create mode 100755 testcase/syscalls/ltp.syscalls.rt_sigsuspend01.sh create mode 100755 testcase/syscalls/ltp.syscalls.rt_sigtimedwait01.sh create mode 100755 testcase/syscalls/ltp.syscalls.rt_tgsigqueueinfo01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sbrk01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sbrk02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sbrk03.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_get_priority_max01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_get_priority_max02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_get_priority_min01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_get_priority_min02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_getaffinity01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_getattr01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_getattr02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_getparam01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_getparam03.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_getscheduler01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_getscheduler02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_rr_get_interval01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_rr_get_interval02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_rr_get_interval03.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_setaffinity01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_setattr01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_setparam01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_setparam02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_setparam03.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_setparam04.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_setparam05.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_setscheduler01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_setscheduler02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_setscheduler03.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_setscheduler04.sh create mode 100755 testcase/syscalls/ltp.syscalls.sched_yield01.sh create mode 100755 testcase/syscalls/ltp.syscalls.select01.sh create mode 100755 testcase/syscalls/ltp.syscalls.select02.sh create mode 100755 testcase/syscalls/ltp.syscalls.select03.sh create mode 100755 testcase/syscalls/ltp.syscalls.select04.sh create mode 100755 testcase/syscalls/ltp.syscalls.semctl01.sh create mode 100755 testcase/syscalls/ltp.syscalls.semctl02.sh create mode 100755 testcase/syscalls/ltp.syscalls.semctl03.sh create mode 100755 testcase/syscalls/ltp.syscalls.semctl04.sh create mode 100755 testcase/syscalls/ltp.syscalls.semctl05.sh create mode 100755 testcase/syscalls/ltp.syscalls.semctl06.sh create mode 100755 testcase/syscalls/ltp.syscalls.semctl07.sh create mode 100755 testcase/syscalls/ltp.syscalls.semctl08.sh create mode 100755 testcase/syscalls/ltp.syscalls.semctl09.sh create mode 100755 testcase/syscalls/ltp.syscalls.semget01.sh create mode 100755 testcase/syscalls/ltp.syscalls.semget02.sh create mode 100755 testcase/syscalls/ltp.syscalls.semget05.sh create mode 100755 testcase/syscalls/ltp.syscalls.semop01.sh create mode 100755 testcase/syscalls/ltp.syscalls.semop02.sh create mode 100755 testcase/syscalls/ltp.syscalls.semop03.sh create mode 100755 testcase/syscalls/ltp.syscalls.semop04.sh create mode 100755 testcase/syscalls/ltp.syscalls.semop05.sh create mode 100755 testcase/syscalls/ltp.syscalls.send01.sh create mode 100755 testcase/syscalls/ltp.syscalls.send02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendfile02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendfile02_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendfile03.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendfile03_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendfile04.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendfile04_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendfile05.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendfile05_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendfile06.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendfile06_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendfile07.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendfile07_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendfile08.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendfile08_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendfile09.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendfile09_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendmmsg01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendmmsg02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendmsg01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendmsg02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendmsg03.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendto01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendto02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sendto03.sh create mode 100755 testcase/syscalls/ltp.syscalls.set_mempolicy01.sh create mode 100755 testcase/syscalls/ltp.syscalls.set_mempolicy02.sh create mode 100755 testcase/syscalls/ltp.syscalls.set_mempolicy03.sh create mode 100755 testcase/syscalls/ltp.syscalls.set_mempolicy04.sh create mode 100755 testcase/syscalls/ltp.syscalls.set_robust_list01.sh create mode 100755 testcase/syscalls/ltp.syscalls.set_thread_area01.sh create mode 100755 testcase/syscalls/ltp.syscalls.set_tid_address01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setdomainname01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setdomainname02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setdomainname03.sh create mode 100755 testcase/syscalls/ltp.syscalls.setegid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setegid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setfsgid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setfsgid01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setfsgid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setfsgid02_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setfsgid03.sh create mode 100755 testcase/syscalls/ltp.syscalls.setfsgid03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setfsuid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setfsuid01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setfsuid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setfsuid02_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setfsuid03.sh create mode 100755 testcase/syscalls/ltp.syscalls.setfsuid03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setfsuid04.sh create mode 100755 testcase/syscalls/ltp.syscalls.setfsuid04_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setgid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setgid01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setgid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setgid02_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setgid03.sh create mode 100755 testcase/syscalls/ltp.syscalls.setgid03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setgroups01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setgroups01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setgroups02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setgroups02_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setgroups03.sh create mode 100755 testcase/syscalls/ltp.syscalls.setgroups03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.sethostname01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sethostname02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sethostname03.sh create mode 100755 testcase/syscalls/ltp.syscalls.setitimer01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setitimer02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setns01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setns02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setpgid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setpgid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setpgid03.sh create mode 100755 testcase/syscalls/ltp.syscalls.setpgrp01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setpgrp02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setpriority01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setpriority02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setregid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setregid01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setregid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setregid02_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setregid03.sh create mode 100755 testcase/syscalls/ltp.syscalls.setregid03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setregid04.sh create mode 100755 testcase/syscalls/ltp.syscalls.setregid04_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresgid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresgid01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresgid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresgid02_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresgid03.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresgid03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresgid04.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresgid04_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresuid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresuid01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresuid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresuid02_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresuid03.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresuid03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresuid04.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresuid04_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresuid05.sh create mode 100755 testcase/syscalls/ltp.syscalls.setresuid05_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setreuid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setreuid01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setreuid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setreuid02_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setreuid03.sh create mode 100755 testcase/syscalls/ltp.syscalls.setreuid03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setreuid04.sh create mode 100755 testcase/syscalls/ltp.syscalls.setreuid04_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setreuid05.sh create mode 100755 testcase/syscalls/ltp.syscalls.setreuid05_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setreuid06.sh create mode 100755 testcase/syscalls/ltp.syscalls.setreuid06_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setreuid07.sh create mode 100755 testcase/syscalls/ltp.syscalls.setreuid07_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setrlimit01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setrlimit02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setrlimit03.sh create mode 100755 testcase/syscalls/ltp.syscalls.setrlimit04.sh create mode 100755 testcase/syscalls/ltp.syscalls.setrlimit05.sh create mode 100755 testcase/syscalls/ltp.syscalls.setrlimit06.sh create mode 100755 testcase/syscalls/ltp.syscalls.setsid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setsockopt01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setsockopt02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setsockopt03.sh create mode 100755 testcase/syscalls/ltp.syscalls.setsockopt04.sh create mode 100755 testcase/syscalls/ltp.syscalls.setsockopt05.sh create mode 100755 testcase/syscalls/ltp.syscalls.setsockopt06.sh create mode 100755 testcase/syscalls/ltp.syscalls.setsockopt07.sh create mode 100755 testcase/syscalls/ltp.syscalls.setsockopt08.sh create mode 100755 testcase/syscalls/ltp.syscalls.setsockopt09.sh create mode 100755 testcase/syscalls/ltp.syscalls.setsockopt10.sh create mode 100755 testcase/syscalls/ltp.syscalls.settimeofday01.sh create mode 100755 testcase/syscalls/ltp.syscalls.settimeofday02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setuid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setuid01_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setuid03.sh create mode 100755 testcase/syscalls/ltp.syscalls.setuid03_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setuid04.sh create mode 100755 testcase/syscalls/ltp.syscalls.setuid04_16.sh create mode 100755 testcase/syscalls/ltp.syscalls.setxattr01.sh create mode 100755 testcase/syscalls/ltp.syscalls.setxattr02.sh create mode 100755 testcase/syscalls/ltp.syscalls.setxattr03.sh create mode 100755 testcase/syscalls/ltp.syscalls.sgetmask01.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmat02.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmat03.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmat04.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmctl01.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmctl02.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmctl03.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmctl04.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmctl05.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmctl06.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmctl07.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmctl08.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmdt01.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmdt02.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmget02.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmget03.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmget04.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmget05.sh create mode 100755 testcase/syscalls/ltp.syscalls.shmget06.sh create mode 100755 testcase/syscalls/ltp.syscalls.sigaction01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sigaction02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sigaltstack01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sigaltstack02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sighold02.sh create mode 100755 testcase/syscalls/ltp.syscalls.signal01.sh create mode 100755 testcase/syscalls/ltp.syscalls.signal02.sh create mode 100755 testcase/syscalls/ltp.syscalls.signal03.sh create mode 100755 testcase/syscalls/ltp.syscalls.signal04.sh create mode 100755 testcase/syscalls/ltp.syscalls.signal05.sh create mode 100755 testcase/syscalls/ltp.syscalls.signal06.sh create mode 100755 testcase/syscalls/ltp.syscalls.signalfd01.sh create mode 100755 testcase/syscalls/ltp.syscalls.signalfd4_01.sh create mode 100755 testcase/syscalls/ltp.syscalls.signalfd4_02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sigpending02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sigprocmask01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sigrelse01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sigsuspend01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sigtimedwait01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sigwait01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sigwaitinfo01.sh create mode 100755 testcase/syscalls/ltp.syscalls.socket01.sh create mode 100755 testcase/syscalls/ltp.syscalls.socket02.sh create mode 100755 testcase/syscalls/ltp.syscalls.socketcall01.sh create mode 100755 testcase/syscalls/ltp.syscalls.socketcall02.sh create mode 100755 testcase/syscalls/ltp.syscalls.socketcall03.sh create mode 100755 testcase/syscalls/ltp.syscalls.socketpair01.sh create mode 100755 testcase/syscalls/ltp.syscalls.socketpair02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sockioctl01.sh create mode 100755 testcase/syscalls/ltp.syscalls.splice01.sh create mode 100755 testcase/syscalls/ltp.syscalls.splice02.sh create mode 100755 testcase/syscalls/ltp.syscalls.splice03.sh create mode 100755 testcase/syscalls/ltp.syscalls.splice04.sh create mode 100755 testcase/syscalls/ltp.syscalls.splice05.sh create mode 100755 testcase/syscalls/ltp.syscalls.splice06.sh create mode 100755 testcase/syscalls/ltp.syscalls.splice07.sh create mode 100755 testcase/syscalls/ltp.syscalls.splice08.sh create mode 100755 testcase/syscalls/ltp.syscalls.splice09.sh create mode 100755 testcase/syscalls/ltp.syscalls.ssetmask01.sh create mode 100755 testcase/syscalls/ltp.syscalls.stat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.stat01_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.stat02.sh create mode 100755 testcase/syscalls/ltp.syscalls.stat02_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.stat03.sh create mode 100755 testcase/syscalls/ltp.syscalls.stat03_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.stat04.sh create mode 100755 testcase/syscalls/ltp.syscalls.stat04_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.statfs01.sh create mode 100755 testcase/syscalls/ltp.syscalls.statfs01_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.statfs02.sh create mode 100755 testcase/syscalls/ltp.syscalls.statfs02_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.statfs03.sh create mode 100755 testcase/syscalls/ltp.syscalls.statfs03_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.statvfs01.sh create mode 100755 testcase/syscalls/ltp.syscalls.statvfs02.sh create mode 100755 testcase/syscalls/ltp.syscalls.statx01.sh create mode 100755 testcase/syscalls/ltp.syscalls.statx02.sh create mode 100755 testcase/syscalls/ltp.syscalls.statx03.sh create mode 100755 testcase/syscalls/ltp.syscalls.statx04.sh create mode 100755 testcase/syscalls/ltp.syscalls.statx05.sh create mode 100755 testcase/syscalls/ltp.syscalls.statx06.sh create mode 100755 testcase/syscalls/ltp.syscalls.statx07.sh create mode 100755 testcase/syscalls/ltp.syscalls.statx08.sh create mode 100755 testcase/syscalls/ltp.syscalls.statx09.sh create mode 100755 testcase/syscalls/ltp.syscalls.statx10.sh create mode 100755 testcase/syscalls/ltp.syscalls.statx11.sh create mode 100755 testcase/syscalls/ltp.syscalls.statx12.sh create mode 100755 testcase/syscalls/ltp.syscalls.stime01.sh create mode 100755 testcase/syscalls/ltp.syscalls.stime02.sh create mode 100755 testcase/syscalls/ltp.syscalls.string01.sh create mode 100755 testcase/syscalls/ltp.syscalls.swapoff01.sh create mode 100755 testcase/syscalls/ltp.syscalls.swapoff02.sh create mode 100755 testcase/syscalls/ltp.syscalls.swapon01.sh create mode 100755 testcase/syscalls/ltp.syscalls.swapon02.sh create mode 100755 testcase/syscalls/ltp.syscalls.swapon03.sh create mode 100755 testcase/syscalls/ltp.syscalls.switch01.sh create mode 100755 testcase/syscalls/ltp.syscalls.symlink01.sh create mode 100755 testcase/syscalls/ltp.syscalls.symlink02.sh create mode 100755 testcase/syscalls/ltp.syscalls.symlink03.sh create mode 100755 testcase/syscalls/ltp.syscalls.symlink04.sh create mode 100755 testcase/syscalls/ltp.syscalls.symlinkat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sync01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sync_file_range01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sync_file_range02.sh create mode 100755 testcase/syscalls/ltp.syscalls.syncfs01.sh create mode 100755 testcase/syscalls/ltp.syscalls.syscall01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sysconf01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sysctl01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sysctl03.sh create mode 100755 testcase/syscalls/ltp.syscalls.sysctl04.sh create mode 100755 testcase/syscalls/ltp.syscalls.sysfs01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sysfs02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sysfs03.sh create mode 100755 testcase/syscalls/ltp.syscalls.sysfs04.sh create mode 100755 testcase/syscalls/ltp.syscalls.sysfs05.sh create mode 100755 testcase/syscalls/ltp.syscalls.sysinfo01.sh create mode 100755 testcase/syscalls/ltp.syscalls.sysinfo02.sh create mode 100755 testcase/syscalls/ltp.syscalls.sysinfo03.sh create mode 100755 testcase/syscalls/ltp.syscalls.syslog11.sh create mode 100755 testcase/syscalls/ltp.syscalls.syslog12.sh create mode 100755 testcase/syscalls/ltp.syscalls.tee01.sh create mode 100755 testcase/syscalls/ltp.syscalls.tee02.sh create mode 100755 testcase/syscalls/ltp.syscalls.tgkill01.sh create mode 100755 testcase/syscalls/ltp.syscalls.tgkill02.sh create mode 100755 testcase/syscalls/ltp.syscalls.tgkill03.sh create mode 100755 testcase/syscalls/ltp.syscalls.time01.sh create mode 100755 testcase/syscalls/ltp.syscalls.timer_create01.sh create mode 100755 testcase/syscalls/ltp.syscalls.timer_create02.sh create mode 100755 testcase/syscalls/ltp.syscalls.timer_create03.sh create mode 100755 testcase/syscalls/ltp.syscalls.timer_delete01.sh create mode 100755 testcase/syscalls/ltp.syscalls.timer_delete02.sh create mode 100755 testcase/syscalls/ltp.syscalls.timer_getoverrun01.sh create mode 100755 testcase/syscalls/ltp.syscalls.timer_gettime01.sh create mode 100755 testcase/syscalls/ltp.syscalls.timer_settime01.sh create mode 100755 testcase/syscalls/ltp.syscalls.timer_settime02.sh create mode 100755 testcase/syscalls/ltp.syscalls.timer_settime03.sh create mode 100755 testcase/syscalls/ltp.syscalls.timerfd01.sh create mode 100755 testcase/syscalls/ltp.syscalls.timerfd02.sh create mode 100755 testcase/syscalls/ltp.syscalls.timerfd04.sh create mode 100755 testcase/syscalls/ltp.syscalls.timerfd_create01.sh create mode 100755 testcase/syscalls/ltp.syscalls.timerfd_gettime01.sh create mode 100755 testcase/syscalls/ltp.syscalls.timerfd_settime01.sh create mode 100755 testcase/syscalls/ltp.syscalls.timerfd_settime02.sh create mode 100755 testcase/syscalls/ltp.syscalls.times01.sh create mode 100755 testcase/syscalls/ltp.syscalls.times03.sh create mode 100755 testcase/syscalls/ltp.syscalls.tkill01.sh create mode 100755 testcase/syscalls/ltp.syscalls.tkill02.sh create mode 100755 testcase/syscalls/ltp.syscalls.truncate02.sh create mode 100755 testcase/syscalls/ltp.syscalls.truncate02_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.truncate03.sh create mode 100755 testcase/syscalls/ltp.syscalls.truncate03_64.sh create mode 100755 testcase/syscalls/ltp.syscalls.ulimit01.sh create mode 100755 testcase/syscalls/ltp.syscalls.umask01.sh create mode 100755 testcase/syscalls/ltp.syscalls.umount01.sh create mode 100755 testcase/syscalls/ltp.syscalls.umount02.sh create mode 100755 testcase/syscalls/ltp.syscalls.umount03.sh create mode 100755 testcase/syscalls/ltp.syscalls.umount2_01.sh create mode 100755 testcase/syscalls/ltp.syscalls.umount2_02.sh create mode 100755 testcase/syscalls/ltp.syscalls.uname01.sh create mode 100755 testcase/syscalls/ltp.syscalls.uname02.sh create mode 100755 testcase/syscalls/ltp.syscalls.uname04.sh create mode 100755 testcase/syscalls/ltp.syscalls.unlink01.sh create mode 100755 testcase/syscalls/ltp.syscalls.unlink05.sh create mode 100755 testcase/syscalls/ltp.syscalls.unlink07.sh create mode 100755 testcase/syscalls/ltp.syscalls.unlink08.sh create mode 100755 testcase/syscalls/ltp.syscalls.unlink09.sh create mode 100755 testcase/syscalls/ltp.syscalls.unlinkat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.unshare01.sh create mode 100755 testcase/syscalls/ltp.syscalls.unshare02.sh create mode 100755 testcase/syscalls/ltp.syscalls.userfaultfd01.sh create mode 100755 testcase/syscalls/ltp.syscalls.ustat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.ustat02.sh create mode 100755 testcase/syscalls/ltp.syscalls.utime01.sh create mode 100755 testcase/syscalls/ltp.syscalls.utime02.sh create mode 100755 testcase/syscalls/ltp.syscalls.utime03.sh create mode 100755 testcase/syscalls/ltp.syscalls.utime04.sh create mode 100755 testcase/syscalls/ltp.syscalls.utime05.sh create mode 100755 testcase/syscalls/ltp.syscalls.utime06.sh create mode 100755 testcase/syscalls/ltp.syscalls.utime07.sh create mode 100755 testcase/syscalls/ltp.syscalls.utimensat01.sh create mode 100755 testcase/syscalls/ltp.syscalls.utimes01.sh create mode 100755 testcase/syscalls/ltp.syscalls.vfork01.sh create mode 100755 testcase/syscalls/ltp.syscalls.vfork02.sh create mode 100755 testcase/syscalls/ltp.syscalls.vhangup01.sh create mode 100755 testcase/syscalls/ltp.syscalls.vhangup02.sh create mode 100755 testcase/syscalls/ltp.syscalls.vmsplice01.sh create mode 100755 testcase/syscalls/ltp.syscalls.vmsplice02.sh create mode 100755 testcase/syscalls/ltp.syscalls.vmsplice03.sh create mode 100755 testcase/syscalls/ltp.syscalls.vmsplice04.sh create mode 100755 testcase/syscalls/ltp.syscalls.wait01.sh create mode 100755 testcase/syscalls/ltp.syscalls.wait02.sh create mode 100755 testcase/syscalls/ltp.syscalls.wait401.sh create mode 100755 testcase/syscalls/ltp.syscalls.wait402.sh create mode 100755 testcase/syscalls/ltp.syscalls.wait403.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitid02.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitid03.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitid04.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitid05.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitid06.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitid07.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitid08.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitid09.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitid10.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitid11.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitpid01.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitpid03.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitpid04.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitpid06.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitpid07.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitpid08.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitpid09.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitpid10.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitpid11.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitpid12.sh create mode 100755 testcase/syscalls/ltp.syscalls.waitpid13.sh create mode 100755 testcase/syscalls/ltp.syscalls.write01.sh create mode 100755 testcase/syscalls/ltp.syscalls.write02.sh create mode 100755 testcase/syscalls/ltp.syscalls.write03.sh create mode 100755 testcase/syscalls/ltp.syscalls.write04.sh create mode 100755 testcase/syscalls/ltp.syscalls.write05.sh create mode 100755 testcase/syscalls/ltp.syscalls.write06.sh create mode 100755 testcase/syscalls/ltp.syscalls.writev01.sh create mode 100755 testcase/syscalls/ltp.syscalls.writev02.sh create mode 100755 testcase/syscalls/ltp.syscalls.writev03.sh create mode 100755 testcase/syscalls/ltp.syscalls.writev05.sh create mode 100755 testcase/syscalls/ltp.syscalls.writev06.sh create mode 100755 testcase/syscalls/ltp.syscalls.writev07.sh create mode 100755 testcase/tpm_tools/ltp.tpm_tools.tpm01.sh create mode 100755 testcase/tpm_tools/ltp.tpm_tools.tpm02.sh create mode 100755 testcase/tpm_tools/ltp.tpm_tools.tpm03.sh create mode 100755 testcase/tpm_tools/ltp.tpm_tools.tpm04.sh create mode 100755 testcase/tpm_tools/ltp.tpm_tools.tpm05.sh create mode 100755 testcase/tpm_tools/ltp.tpm_tools.tpm06.sh create mode 100755 testcase/tpm_tools/ltp.tpm_tools.tpm07.sh create mode 100755 testcase/tpm_tools/ltp.tpm_tools.tpmtoken01.sh create mode 100755 testcase/tpm_tools/ltp.tpm_tools.tpmtoken02.sh create mode 100755 testcase/tpm_tools/ltp.tpm_tools.tpmtoken03.sh create mode 100755 testcase/tpm_tools/ltp.tpm_tools.tpmtoken04.sh create mode 100755 testcase/tpm_tools/ltp.tpm_tools.tpmtoken05.sh create mode 100755 testcase/tracing/ltp.tracing.dynamic_debug01.sh create mode 100755 testcase/tracing/ltp.tracing.ftrace-stress-test.sh create mode 100755 testcase/tracing/ltp.tracing.ftrace_regression01.sh create mode 100755 testcase/tracing/ltp.tracing.ftrace_regression02.sh create mode 100755 testcase/tracing/ltp.tracing.pt_disable_branch.sh create mode 100755 testcase/tracing/ltp.tracing.pt_ex_kernel.sh create mode 100755 testcase/tracing/ltp.tracing.pt_ex_user.sh create mode 100755 testcase/tracing/ltp.tracing.pt_full_trace_basic.sh create mode 100755 testcase/tracing/ltp.tracing.pt_snapshot_trace_basic.sh create mode 100755 testcase/uevent/ltp.uevent.uevent01.sh create mode 100755 testcase/uevent/ltp.uevent.uevent02.sh create mode 100755 testcase/uevent/ltp.uevent.uevent03.sh create mode 100755 testcase/watchqueue/ltp.watchqueue.wqueue01.sh create mode 100755 testcase/watchqueue/ltp.watchqueue.wqueue02.sh create mode 100755 testcase/watchqueue/ltp.watchqueue.wqueue03.sh create mode 100755 testcase/watchqueue/ltp.watchqueue.wqueue04.sh create mode 100755 testcase/watchqueue/ltp.watchqueue.wqueue05.sh create mode 100755 testcase/watchqueue/ltp.watchqueue.wqueue06.sh create mode 100755 testcase/watchqueue/ltp.watchqueue.wqueue07.sh create mode 100755 testcase/watchqueue/ltp.watchqueue.wqueue08.sh create mode 100755 testcase/watchqueue/ltp.watchqueue.wqueue09.sh diff --git a/testcase/Makefile b/testcase/Makefile index 8d80216..3a59447 100644 --- a/testcase/Makefile +++ b/testcase/Makefile @@ -8,7 +8,7 @@ LDFLAGS += LDFLAGS += all: $(ALL_BIN) - ../tst-open-ltp/ltp/tst_build.sh + ../tst-open-ltp/ltp/tst-build.sh $(ALL_BIN):%.test:%.o $(CC) $^ -o $@ $(LDFLAGS) diff --git a/testcase/can/ltp.can.can_bcm01.sh b/testcase/can/ltp.can.can_bcm01.sh new file mode 100755 index 0000000..63af9b4 --- /dev/null +++ b/testcase/can/ltp.can.can_bcm01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-686780406 +# @用例名称: ltp.can.can_bcm01 +# @用例级别: 3 +# @用例标签: aarch64不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.can.can_bcm01 + # @预期结果:1: 用例返回0 + ltp_run_testcase can can_bcm01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/can/ltp.can.can_filter.sh b/testcase/can/ltp.can.can_filter.sh new file mode 100755 index 0000000..32b8e21 --- /dev/null +++ b/testcase/can/ltp.can.can_filter.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-669423472 +# @用例名称: ltp.can.can_filter +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.can.can_filter + # @预期结果:1: 用例返回0 + ltp_run_testcase can can_filter + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/can/ltp.can.can_rcv_own_msgs.sh b/testcase/can/ltp.can.can_rcv_own_msgs.sh new file mode 100755 index 0000000..059fca1 --- /dev/null +++ b/testcase/can/ltp.can.can_rcv_own_msgs.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-678228030 +# @用例名称: ltp.can.can_rcv_own_msgs +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.can.can_rcv_own_msgs + # @预期结果:1: 用例返回0 + ltp_run_testcase can can_rcv_own_msgs + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/capability/ltp.capability.cap_bounds.sh b/testcase/capability/ltp.capability.cap_bounds.sh new file mode 100755 index 0000000..51168d3 --- /dev/null +++ b/testcase/capability/ltp.capability.cap_bounds.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172825-159859479 +# @用例名称: ltp.capability.cap_bounds +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.capability.cap_bounds + # @预期结果:1: 用例返回0 + ltp_run_testcase capability cap_bounds + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/capability/ltp.capability.check_keepcaps01.sh b/testcase/capability/ltp.capability.check_keepcaps01.sh new file mode 100755 index 0000000..334a092 --- /dev/null +++ b/testcase/capability/ltp.capability.check_keepcaps01.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172825-316071079 +# @用例名称: ltp.capability.check_keepcaps01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.capability.check_keepcaps01 + # @预期结果:1: 用例返回0 + ltp_run_testcase capability check_keepcaps01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/capability/ltp.capability.check_keepcaps02.sh b/testcase/capability/ltp.capability.check_keepcaps02.sh new file mode 100755 index 0000000..ad370bb --- /dev/null +++ b/testcase/capability/ltp.capability.check_keepcaps02.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172825-394646377 +# @用例名称: ltp.capability.check_keepcaps02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.capability.check_keepcaps02 + # @预期结果:1: 用例返回0 + ltp_run_testcase capability check_keepcaps02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/capability/ltp.capability.check_keepcaps03.sh b/testcase/capability/ltp.capability.check_keepcaps03.sh new file mode 100755 index 0000000..a950fd0 --- /dev/null +++ b/testcase/capability/ltp.capability.check_keepcaps03.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172825-475182566 +# @用例名称: ltp.capability.check_keepcaps03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.capability.check_keepcaps03 + # @预期结果:1: 用例返回0 + ltp_run_testcase capability check_keepcaps03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/capability/ltp.capability.filecaps.sh b/testcase/capability/ltp.capability.filecaps.sh new file mode 100755 index 0000000..16c08f2 --- /dev/null +++ b/testcase/capability/ltp.capability.filecaps.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172825-238124181 +# @用例名称: ltp.capability.filecaps +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.capability.filecaps + # @预期结果:1: 用例返回0 + ltp_run_testcase capability filecaps + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.ar_sh.sh b/testcase/commands/ltp.commands.ar_sh.sh new file mode 100755 index 0000000..bcf3753 --- /dev/null +++ b/testcase/commands/ltp.commands.ar_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-709214141 +# @用例名称: ltp.commands.ar_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.ar_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands ar_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.cp01_sh.sh b/testcase/commands/ltp.commands.cp01_sh.sh new file mode 100755 index 0000000..1b6b7f6 --- /dev/null +++ b/testcase/commands/ltp.commands.cp01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-803513482 +# @用例名称: ltp.commands.cp01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.cp01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands cp01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.cpio01_sh.sh b/testcase/commands/ltp.commands.cpio01_sh.sh new file mode 100755 index 0000000..eadbd9c --- /dev/null +++ b/testcase/commands/ltp.commands.cpio01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-774319315 +# @用例名称: ltp.commands.cpio01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.cpio01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands cpio01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.df01_sh.sh b/testcase/commands/ltp.commands.df01_sh.sh new file mode 100755 index 0000000..16f11b4 --- /dev/null +++ b/testcase/commands/ltp.commands.df01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141446-267578252 +# @用例名称: ltp.commands.df01_sh +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.df01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands df01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.du01_sh.sh b/testcase/commands/ltp.commands.du01_sh.sh new file mode 100755 index 0000000..64da061 --- /dev/null +++ b/testcase/commands/ltp.commands.du01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-837470052 +# @用例名称: ltp.commands.du01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.du01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands du01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.file01_sh.sh b/testcase/commands/ltp.commands.file01_sh.sh new file mode 100755 index 0000000..035698f --- /dev/null +++ b/testcase/commands/ltp.commands.file01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-747784936 +# @用例名称: ltp.commands.file01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.file01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands file01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.gdb01_sh.sh b/testcase/commands/ltp.commands.gdb01_sh.sh new file mode 100755 index 0000000..a1ea2dc --- /dev/null +++ b/testcase/commands/ltp.commands.gdb01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-069053573 +# @用例名称: ltp.commands.gdb01_sh +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.gdb01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands gdb01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.gzip01_sh.sh b/testcase/commands/ltp.commands.gzip01_sh.sh new file mode 100755 index 0000000..ed89033 --- /dev/null +++ b/testcase/commands/ltp.commands.gzip01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-792387289 +# @用例名称: ltp.commands.gzip01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.gzip01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands gzip01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.insmod01_sh.sh b/testcase/commands/ltp.commands.insmod01_sh.sh new file mode 100755 index 0000000..18736df --- /dev/null +++ b/testcase/commands/ltp.commands.insmod01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-041944718 +# @用例名称: ltp.commands.insmod01_sh +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.insmod01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands insmod01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.keyctl01_sh.sh b/testcase/commands/ltp.commands.keyctl01_sh.sh new file mode 100755 index 0000000..ff06f71 --- /dev/null +++ b/testcase/commands/ltp.commands.keyctl01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-060447516 +# @用例名称: ltp.commands.keyctl01_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.keyctl01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands keyctl01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.ld01_sh.sh b/testcase/commands/ltp.commands.ld01_sh.sh new file mode 100755 index 0000000..0acdd28 --- /dev/null +++ b/testcase/commands/ltp.commands.ld01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-719860545 +# @用例名称: ltp.commands.ld01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.ld01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands ld01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.ldd01_sh.sh b/testcase/commands/ltp.commands.ldd01_sh.sh new file mode 100755 index 0000000..1e6689b --- /dev/null +++ b/testcase/commands/ltp.commands.ldd01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-730567784 +# @用例名称: ltp.commands.ldd01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.ldd01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands ldd01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.ln01_sh.sh b/testcase/commands/ltp.commands.ln01_sh.sh new file mode 100755 index 0000000..7ef8680 --- /dev/null +++ b/testcase/commands/ltp.commands.ln01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-812084823 +# @用例名称: ltp.commands.ln01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.ln01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands ln01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.logrotate_sh.sh b/testcase/commands/ltp.commands.logrotate_sh.sh new file mode 100755 index 0000000..09e325a --- /dev/null +++ b/testcase/commands/ltp.commands.logrotate_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-765514747 +# @用例名称: ltp.commands.logrotate_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.logrotate_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands logrotate_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.lsmod01_sh.sh b/testcase/commands/ltp.commands.lsmod01_sh.sh new file mode 100755 index 0000000..1d210c1 --- /dev/null +++ b/testcase/commands/ltp.commands.lsmod01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-031670750 +# @用例名称: ltp.commands.lsmod01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.lsmod01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands lsmod01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.mkdir01_sh.sh b/testcase/commands/ltp.commands.mkdir01_sh.sh new file mode 100755 index 0000000..6805513 --- /dev/null +++ b/testcase/commands/ltp.commands.mkdir01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-820413621 +# @用例名称: ltp.commands.mkdir01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.mkdir01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands mkdir01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.mkfs01_btrfs_sh.sh b/testcase/commands/ltp.commands.mkfs01_btrfs_sh.sh new file mode 100755 index 0000000..8fb82cd --- /dev/null +++ b/testcase/commands/ltp.commands.mkfs01_btrfs_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-967727029 +# @用例名称: ltp.commands.mkfs01_btrfs_sh +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.mkfs01_btrfs_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands mkfs01_btrfs_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.mkfs01_ext2_sh.sh b/testcase/commands/ltp.commands.mkfs01_ext2_sh.sh new file mode 100755 index 0000000..293cf12 --- /dev/null +++ b/testcase/commands/ltp.commands.mkfs01_ext2_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-920967248 +# @用例名称: ltp.commands.mkfs01_ext2_sh +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.mkfs01_ext2_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands mkfs01_ext2_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.mkfs01_ext3_sh.sh b/testcase/commands/ltp.commands.mkfs01_ext3_sh.sh new file mode 100755 index 0000000..a0f6294 --- /dev/null +++ b/testcase/commands/ltp.commands.mkfs01_ext3_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-932986702 +# @用例名称: ltp.commands.mkfs01_ext3_sh +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.mkfs01_ext3_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands mkfs01_ext3_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.mkfs01_ext4_sh.sh b/testcase/commands/ltp.commands.mkfs01_ext4_sh.sh new file mode 100755 index 0000000..6efe6ff --- /dev/null +++ b/testcase/commands/ltp.commands.mkfs01_ext4_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-942841365 +# @用例名称: ltp.commands.mkfs01_ext4_sh +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.mkfs01_ext4_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands mkfs01_ext4_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.mkfs01_minix_sh.sh b/testcase/commands/ltp.commands.mkfs01_minix_sh.sh new file mode 100755 index 0000000..f55ddd0 --- /dev/null +++ b/testcase/commands/ltp.commands.mkfs01_minix_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-976425267 +# @用例名称: ltp.commands.mkfs01_minix_sh +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.mkfs01_minix_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands mkfs01_minix_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.mkfs01_msdos_sh.sh b/testcase/commands/ltp.commands.mkfs01_msdos_sh.sh new file mode 100755 index 0000000..c4ac844 --- /dev/null +++ b/testcase/commands/ltp.commands.mkfs01_msdos_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-985112176 +# @用例名称: ltp.commands.mkfs01_msdos_sh +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.mkfs01_msdos_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands mkfs01_msdos_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.mkfs01_ntfs_sh.sh b/testcase/commands/ltp.commands.mkfs01_ntfs_sh.sh new file mode 100755 index 0000000..4fa27bf --- /dev/null +++ b/testcase/commands/ltp.commands.mkfs01_ntfs_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-002043412 +# @用例名称: ltp.commands.mkfs01_ntfs_sh +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.mkfs01_ntfs_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands mkfs01_ntfs_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.mkfs01_sh.sh b/testcase/commands/ltp.commands.mkfs01_sh.sh new file mode 100755 index 0000000..0a5f090 --- /dev/null +++ b/testcase/commands/ltp.commands.mkfs01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-911563498 +# @用例名称: ltp.commands.mkfs01_sh +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.mkfs01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands mkfs01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.mkfs01_vfat_sh.sh b/testcase/commands/ltp.commands.mkfs01_vfat_sh.sh new file mode 100755 index 0000000..6a51a0a --- /dev/null +++ b/testcase/commands/ltp.commands.mkfs01_vfat_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-993568632 +# @用例名称: ltp.commands.mkfs01_vfat_sh +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.mkfs01_vfat_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands mkfs01_vfat_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.mkfs01_xfs_sh.sh b/testcase/commands/ltp.commands.mkfs01_xfs_sh.sh new file mode 100755 index 0000000..d5440f7 --- /dev/null +++ b/testcase/commands/ltp.commands.mkfs01_xfs_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-958999756 +# @用例名称: ltp.commands.mkfs01_xfs_sh +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.mkfs01_xfs_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands mkfs01_xfs_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.mkswap01_sh.sh b/testcase/commands/ltp.commands.mkswap01_sh.sh new file mode 100755 index 0000000..a7cec9a --- /dev/null +++ b/testcase/commands/ltp.commands.mkswap01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-010621376 +# @用例名称: ltp.commands.mkswap01_sh +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.mkswap01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands mkswap01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.mv01_sh.sh b/testcase/commands/ltp.commands.mv01_sh.sh new file mode 100755 index 0000000..5c15596 --- /dev/null +++ b/testcase/commands/ltp.commands.mv01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-828919149 +# @用例名称: ltp.commands.mv01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.mv01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands mv01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.nm01_sh.sh b/testcase/commands/ltp.commands.nm01_sh.sh new file mode 100755 index 0000000..6b7b7f2 --- /dev/null +++ b/testcase/commands/ltp.commands.nm01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-739197184 +# @用例名称: ltp.commands.nm01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.nm01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands nm01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.shell_test01.sh b/testcase/commands/ltp.commands.shell_test01.sh new file mode 100755 index 0000000..69ddb0f --- /dev/null +++ b/testcase/commands/ltp.commands.shell_test01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-105315046 +# @用例名称: ltp.commands.shell_test01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.shell_test01 + # @预期结果:1: 用例返回0 + ltp_run_testcase commands shell_test01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.sysctl01_sh.sh b/testcase/commands/ltp.commands.sysctl01_sh.sh new file mode 100755 index 0000000..6b5ffdc --- /dev/null +++ b/testcase/commands/ltp.commands.sysctl01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-086846241 +# @用例名称: ltp.commands.sysctl01_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.sysctl01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands sysctl01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.sysctl02_sh.sh b/testcase/commands/ltp.commands.sysctl02_sh.sh new file mode 100755 index 0000000..e2f9aab --- /dev/null +++ b/testcase/commands/ltp.commands.sysctl02_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-095399288 +# @用例名称: ltp.commands.sysctl02_sh +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.sysctl02_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands sysctl02_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.tar01_sh.sh b/testcase/commands/ltp.commands.tar01_sh.sh new file mode 100755 index 0000000..31e6529 --- /dev/null +++ b/testcase/commands/ltp.commands.tar01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-756680043 +# @用例名称: ltp.commands.tar01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.tar01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands tar01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.unshare01_sh.sh b/testcase/commands/ltp.commands.unshare01_sh.sh new file mode 100755 index 0000000..dda12df --- /dev/null +++ b/testcase/commands/ltp.commands.unshare01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-077467339 +# @用例名称: ltp.commands.unshare01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.unshare01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands unshare01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.unzip01_sh.sh b/testcase/commands/ltp.commands.unzip01_sh.sh new file mode 100755 index 0000000..d2a6afe --- /dev/null +++ b/testcase/commands/ltp.commands.unzip01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212947-783358471 +# @用例名称: ltp.commands.unzip01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.unzip01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands unzip01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.wc01_sh.sh b/testcase/commands/ltp.commands.wc01_sh.sh new file mode 100755 index 0000000..7d34f06 --- /dev/null +++ b/testcase/commands/ltp.commands.wc01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-050825458 +# @用例名称: ltp.commands.wc01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.wc01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands wc01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/commands/ltp.commands.which01_sh.sh b/testcase/commands/ltp.commands.which01_sh.sh new file mode 100755 index 0000000..3c32c1f --- /dev/null +++ b/testcase/commands/ltp.commands.which01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-022500688 +# @用例名称: ltp.commands.which01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.commands.which01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase commands which01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.clock_gettime03.sh b/testcase/containers/ltp.containers.clock_gettime03.sh new file mode 100755 index 0000000..9809db6 --- /dev/null +++ b/testcase/containers/ltp.containers.clock_gettime03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-877135032 +# @用例名称: ltp.containers.clock_gettime03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.clock_gettime03 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers clock_gettime03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.clock_nanosleep03.sh b/testcase/containers/ltp.containers.clock_nanosleep03.sh new file mode 100755 index 0000000..f090879 --- /dev/null +++ b/testcase/containers/ltp.containers.clock_nanosleep03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-868598856 +# @用例名称: ltp.containers.clock_nanosleep03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.clock_nanosleep03 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers clock_nanosleep03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mesgq_nstest_clone.sh b/testcase/containers/ltp.containers.mesgq_nstest_clone.sh new file mode 100755 index 0000000..b5eef54 --- /dev/null +++ b/testcase/containers/ltp.containers.mesgq_nstest_clone.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-567578655 +# @用例名称: ltp.containers.mesgq_nstest_clone +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mesgq_nstest_clone + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mesgq_nstest_clone + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mesgq_nstest_none.sh b/testcase/containers/ltp.containers.mesgq_nstest_none.sh new file mode 100755 index 0000000..cb0ed39 --- /dev/null +++ b/testcase/containers/ltp.containers.mesgq_nstest_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-558732610 +# @用例名称: ltp.containers.mesgq_nstest_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mesgq_nstest_none + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mesgq_nstest_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mesgq_nstest_unshare.sh b/testcase/containers/ltp.containers.mesgq_nstest_unshare.sh new file mode 100755 index 0000000..64ed770 --- /dev/null +++ b/testcase/containers/ltp.containers.mesgq_nstest_unshare.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-576252178 +# @用例名称: ltp.containers.mesgq_nstest_unshare +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mesgq_nstest_unshare + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mesgq_nstest_unshare + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mountns01.sh b/testcase/containers/ltp.containers.mountns01.sh new file mode 100755 index 0000000..48bb404 --- /dev/null +++ b/testcase/containers/ltp.containers.mountns01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-751033402 +# @用例名称: ltp.containers.mountns01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mountns01 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mountns01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mountns02.sh b/testcase/containers/ltp.containers.mountns02.sh new file mode 100755 index 0000000..ffbd6e6 --- /dev/null +++ b/testcase/containers/ltp.containers.mountns02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-759508463 +# @用例名称: ltp.containers.mountns02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mountns02 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mountns02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mountns03.sh b/testcase/containers/ltp.containers.mountns03.sh new file mode 100755 index 0000000..22a5bd3 --- /dev/null +++ b/testcase/containers/ltp.containers.mountns03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-768170795 +# @用例名称: ltp.containers.mountns03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mountns03 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mountns03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mountns04.sh b/testcase/containers/ltp.containers.mountns04.sh new file mode 100755 index 0000000..b762971 --- /dev/null +++ b/testcase/containers/ltp.containers.mountns04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-776772613 +# @用例名称: ltp.containers.mountns04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mountns04 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mountns04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mqns_01.sh b/testcase/containers/ltp.containers.mqns_01.sh new file mode 100755 index 0000000..5b6f549 --- /dev/null +++ b/testcase/containers/ltp.containers.mqns_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-260081752 +# @用例名称: ltp.containers.mqns_01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mqns_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mqns_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mqns_01_clone.sh b/testcase/containers/ltp.containers.mqns_01_clone.sh new file mode 100755 index 0000000..88a4594 --- /dev/null +++ b/testcase/containers/ltp.containers.mqns_01_clone.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-268666559 +# @用例名称: ltp.containers.mqns_01_clone +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mqns_01_clone + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mqns_01_clone + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mqns_01_unshare.sh b/testcase/containers/ltp.containers.mqns_01_unshare.sh new file mode 100755 index 0000000..7dc242c --- /dev/null +++ b/testcase/containers/ltp.containers.mqns_01_unshare.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172825-550557925 +# @用例名称: ltp.containers.mqns_01_unshare +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mqns_01_unshare + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mqns_01_unshare + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mqns_02.sh b/testcase/containers/ltp.containers.mqns_02.sh new file mode 100755 index 0000000..adfafdb --- /dev/null +++ b/testcase/containers/ltp.containers.mqns_02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-280039103 +# @用例名称: ltp.containers.mqns_02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mqns_02 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mqns_02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mqns_02_clone.sh b/testcase/containers/ltp.containers.mqns_02_clone.sh new file mode 100755 index 0000000..ab5b56a --- /dev/null +++ b/testcase/containers/ltp.containers.mqns_02_clone.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-288505618 +# @用例名称: ltp.containers.mqns_02_clone +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mqns_02_clone + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mqns_02_clone + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mqns_02_unshare.sh b/testcase/containers/ltp.containers.mqns_02_unshare.sh new file mode 100755 index 0000000..15d8f63 --- /dev/null +++ b/testcase/containers/ltp.containers.mqns_02_unshare.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172825-623905393 +# @用例名称: ltp.containers.mqns_02_unshare +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mqns_02_unshare + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mqns_02_unshare + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mqns_03_clone.sh b/testcase/containers/ltp.containers.mqns_03_clone.sh new file mode 100755 index 0000000..1ca5080 --- /dev/null +++ b/testcase/containers/ltp.containers.mqns_03_clone.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-307674223 +# @用例名称: ltp.containers.mqns_03_clone +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mqns_03_clone + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mqns_03_clone + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mqns_03_unshare.sh b/testcase/containers/ltp.containers.mqns_03_unshare.sh new file mode 100755 index 0000000..8f540f4 --- /dev/null +++ b/testcase/containers/ltp.containers.mqns_03_unshare.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172825-695600703 +# @用例名称: ltp.containers.mqns_03_unshare +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mqns_03_unshare + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mqns_03_unshare + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mqns_04_clone.sh b/testcase/containers/ltp.containers.mqns_04_clone.sh new file mode 100755 index 0000000..e85f7eb --- /dev/null +++ b/testcase/containers/ltp.containers.mqns_04_clone.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-326227404 +# @用例名称: ltp.containers.mqns_04_clone +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mqns_04_clone + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mqns_04_clone + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.mqns_04_unshare.sh b/testcase/containers/ltp.containers.mqns_04_unshare.sh new file mode 100755 index 0000000..89ffe52 --- /dev/null +++ b/testcase/containers/ltp.containers.mqns_04_unshare.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172825-766554320 +# @用例名称: ltp.containers.mqns_04_unshare +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.mqns_04_unshare + # @预期结果:1: 用例返回0 + ltp_run_testcase containers mqns_04_unshare + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.msg_comm.sh b/testcase/containers/ltp.containers.msg_comm.sh new file mode 100755 index 0000000..15bbbb3 --- /dev/null +++ b/testcase/containers/ltp.containers.msg_comm.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-584880737 +# @用例名称: ltp.containers.msg_comm +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.msg_comm + # @预期结果:1: 用例返回0 + ltp_run_testcase containers msg_comm + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_breakns_ip_ipv4_ioctl.sh b/testcase/containers/ltp.containers.netns_breakns_ip_ipv4_ioctl.sh new file mode 100755 index 0000000..d449e8e --- /dev/null +++ b/testcase/containers/ltp.containers.netns_breakns_ip_ipv4_ioctl.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-400681556 +# @用例名称: ltp.containers.netns_breakns_ip_ipv4_ioctl +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_breakns_ip_ipv4_ioctl + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_breakns_ip_ipv4_ioctl + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_breakns_ip_ipv4_netlink.sh b/testcase/containers/ltp.containers.netns_breakns_ip_ipv4_netlink.sh new file mode 100755 index 0000000..c584969 --- /dev/null +++ b/testcase/containers/ltp.containers.netns_breakns_ip_ipv4_netlink.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-383586293 +# @用例名称: ltp.containers.netns_breakns_ip_ipv4_netlink +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_breakns_ip_ipv4_netlink + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_breakns_ip_ipv4_netlink + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_breakns_ip_ipv6_ioctl.sh b/testcase/containers/ltp.containers.netns_breakns_ip_ipv6_ioctl.sh new file mode 100755 index 0000000..ebe1b85 --- /dev/null +++ b/testcase/containers/ltp.containers.netns_breakns_ip_ipv6_ioctl.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-409448253 +# @用例名称: ltp.containers.netns_breakns_ip_ipv6_ioctl +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_breakns_ip_ipv6_ioctl + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_breakns_ip_ipv6_ioctl + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_breakns_ip_ipv6_netlink.sh b/testcase/containers/ltp.containers.netns_breakns_ip_ipv6_netlink.sh new file mode 100755 index 0000000..c5fbd7e --- /dev/null +++ b/testcase/containers/ltp.containers.netns_breakns_ip_ipv6_netlink.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-392145701 +# @用例名称: ltp.containers.netns_breakns_ip_ipv6_netlink +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_breakns_ip_ipv6_netlink + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_breakns_ip_ipv6_netlink + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv4_ioctl.sh b/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv4_ioctl.sh new file mode 100755 index 0000000..b50d0f3 --- /dev/null +++ b/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv4_ioctl.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-365400818 +# @用例名称: ltp.containers.netns_breakns_ns_exec_ipv4_ioctl +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_breakns_ns_exec_ipv4_ioctl + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_breakns_ns_exec_ipv4_ioctl + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv4_netlink.sh b/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv4_netlink.sh new file mode 100755 index 0000000..5b79ba8 --- /dev/null +++ b/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv4_netlink.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-348115147 +# @用例名称: ltp.containers.netns_breakns_ns_exec_ipv4_netlink +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_breakns_ns_exec_ipv4_netlink + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_breakns_ns_exec_ipv4_netlink + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv6_ioctl.sh b/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv6_ioctl.sh new file mode 100755 index 0000000..6c37bdd --- /dev/null +++ b/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv6_ioctl.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-374862436 +# @用例名称: ltp.containers.netns_breakns_ns_exec_ipv6_ioctl +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_breakns_ns_exec_ipv6_ioctl + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_breakns_ns_exec_ipv6_ioctl + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv6_netlink.sh b/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv6_netlink.sh new file mode 100755 index 0000000..db00a27 --- /dev/null +++ b/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv6_netlink.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-356712608 +# @用例名称: ltp.containers.netns_breakns_ns_exec_ipv6_netlink +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_breakns_ns_exec_ipv6_netlink + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_breakns_ns_exec_ipv6_netlink + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_comm_ip_ipv4_ioctl.sh b/testcase/containers/ltp.containers.netns_comm_ip_ipv4_ioctl.sh new file mode 100755 index 0000000..4fbc447 --- /dev/null +++ b/testcase/containers/ltp.containers.netns_comm_ip_ipv4_ioctl.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-471428579 +# @用例名称: ltp.containers.netns_comm_ip_ipv4_ioctl +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_comm_ip_ipv4_ioctl + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_comm_ip_ipv4_ioctl + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_comm_ip_ipv4_netlink.sh b/testcase/containers/ltp.containers.netns_comm_ip_ipv4_netlink.sh new file mode 100755 index 0000000..6e9d0fc --- /dev/null +++ b/testcase/containers/ltp.containers.netns_comm_ip_ipv4_netlink.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-452387313 +# @用例名称: ltp.containers.netns_comm_ip_ipv4_netlink +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_comm_ip_ipv4_netlink + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_comm_ip_ipv4_netlink + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_comm_ip_ipv6_ioctl.sh b/testcase/containers/ltp.containers.netns_comm_ip_ipv6_ioctl.sh new file mode 100755 index 0000000..e1c8445 --- /dev/null +++ b/testcase/containers/ltp.containers.netns_comm_ip_ipv6_ioctl.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-479848698 +# @用例名称: ltp.containers.netns_comm_ip_ipv6_ioctl +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_comm_ip_ipv6_ioctl + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_comm_ip_ipv6_ioctl + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_comm_ip_ipv6_netlink.sh b/testcase/containers/ltp.containers.netns_comm_ip_ipv6_netlink.sh new file mode 100755 index 0000000..5057aae --- /dev/null +++ b/testcase/containers/ltp.containers.netns_comm_ip_ipv6_netlink.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-460947945 +# @用例名称: ltp.containers.netns_comm_ip_ipv6_netlink +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_comm_ip_ipv6_netlink + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_comm_ip_ipv6_netlink + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv4_ioctl.sh b/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv4_ioctl.sh new file mode 100755 index 0000000..a4ce51b --- /dev/null +++ b/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv4_ioctl.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-435166104 +# @用例名称: ltp.containers.netns_comm_ns_exec_ipv4_ioctl +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_comm_ns_exec_ipv4_ioctl + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_comm_ns_exec_ipv4_ioctl + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv4_netlink.sh b/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv4_netlink.sh new file mode 100755 index 0000000..78bef19 --- /dev/null +++ b/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv4_netlink.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-417939855 +# @用例名称: ltp.containers.netns_comm_ns_exec_ipv4_netlink +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_comm_ns_exec_ipv4_netlink + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_comm_ns_exec_ipv4_netlink + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv6_ioctl.sh b/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv6_ioctl.sh new file mode 100755 index 0000000..2ac508e --- /dev/null +++ b/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv6_ioctl.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-443791477 +# @用例名称: ltp.containers.netns_comm_ns_exec_ipv6_ioctl +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_comm_ns_exec_ipv6_ioctl + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_comm_ns_exec_ipv6_ioctl + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv6_netlink.sh b/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv6_netlink.sh new file mode 100755 index 0000000..8e6752d --- /dev/null +++ b/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv6_netlink.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-426492702 +# @用例名称: ltp.containers.netns_comm_ns_exec_ipv6_netlink +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_comm_ns_exec_ipv6_netlink + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_comm_ns_exec_ipv6_netlink + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_netlink.sh b/testcase/containers/ltp.containers.netns_netlink.sh new file mode 100755 index 0000000..09a393c --- /dev/null +++ b/testcase/containers/ltp.containers.netns_netlink.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-336711977 +# @用例名称: ltp.containers.netns_netlink +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_netlink + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_netlink + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.netns_sysfs.sh b/testcase/containers/ltp.containers.netns_sysfs.sh new file mode 100755 index 0000000..ae0744f --- /dev/null +++ b/testcase/containers/ltp.containers.netns_sysfs.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-488368403 +# @用例名称: ltp.containers.netns_sysfs +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.netns_sysfs + # @预期结果:1: 用例返回0 + ltp_run_testcase containers netns_sysfs + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.pidns01.sh b/testcase/containers/ltp.containers.pidns01.sh new file mode 100755 index 0000000..4336377 --- /dev/null +++ b/testcase/containers/ltp.containers.pidns01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-128141325 +# @用例名称: ltp.containers.pidns01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.pidns01 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers pidns01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.pidns02.sh b/testcase/containers/ltp.containers.pidns02.sh new file mode 100755 index 0000000..7536867 --- /dev/null +++ b/testcase/containers/ltp.containers.pidns02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-136626195 +# @用例名称: ltp.containers.pidns02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.pidns02 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers pidns02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.pidns03.sh b/testcase/containers/ltp.containers.pidns03.sh new file mode 100755 index 0000000..a19a04d --- /dev/null +++ b/testcase/containers/ltp.containers.pidns03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-145188199 +# @用例名称: ltp.containers.pidns03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.pidns03 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers pidns03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.pidns04.sh b/testcase/containers/ltp.containers.pidns04.sh new file mode 100755 index 0000000..ed7c43b --- /dev/null +++ b/testcase/containers/ltp.containers.pidns04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-153732770 +# @用例名称: ltp.containers.pidns04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.pidns04 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers pidns04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.pidns05.sh b/testcase/containers/ltp.containers.pidns05.sh new file mode 100755 index 0000000..02a4903 --- /dev/null +++ b/testcase/containers/ltp.containers.pidns05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-162912520 +# @用例名称: ltp.containers.pidns05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.pidns05 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers pidns05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.pidns06.sh b/testcase/containers/ltp.containers.pidns06.sh new file mode 100755 index 0000000..801fcab --- /dev/null +++ b/testcase/containers/ltp.containers.pidns06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-171525289 +# @用例名称: ltp.containers.pidns06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.pidns06 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers pidns06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.pidns10.sh b/testcase/containers/ltp.containers.pidns10.sh new file mode 100755 index 0000000..55f0421 --- /dev/null +++ b/testcase/containers/ltp.containers.pidns10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-180190606 +# @用例名称: ltp.containers.pidns10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.pidns10 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers pidns10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.pidns12.sh b/testcase/containers/ltp.containers.pidns12.sh new file mode 100755 index 0000000..4aaefed --- /dev/null +++ b/testcase/containers/ltp.containers.pidns12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-188734616 +# @用例名称: ltp.containers.pidns12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.pidns12 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers pidns12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.pidns13.sh b/testcase/containers/ltp.containers.pidns13.sh new file mode 100755 index 0000000..4bdc76c --- /dev/null +++ b/testcase/containers/ltp.containers.pidns13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-197241718 +# @用例名称: ltp.containers.pidns13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.pidns13 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers pidns13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.pidns16.sh b/testcase/containers/ltp.containers.pidns16.sh new file mode 100755 index 0000000..230e07f --- /dev/null +++ b/testcase/containers/ltp.containers.pidns16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-205767353 +# @用例名称: ltp.containers.pidns16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.pidns16 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers pidns16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.pidns17.sh b/testcase/containers/ltp.containers.pidns17.sh new file mode 100755 index 0000000..7d354bf --- /dev/null +++ b/testcase/containers/ltp.containers.pidns17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-214942234 +# @用例名称: ltp.containers.pidns17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.pidns17 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers pidns17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.pidns20.sh b/testcase/containers/ltp.containers.pidns20.sh new file mode 100755 index 0000000..afefd35 --- /dev/null +++ b/testcase/containers/ltp.containers.pidns20.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-223827232 +# @用例名称: ltp.containers.pidns20 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.pidns20 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers pidns20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.pidns30.sh b/testcase/containers/ltp.containers.pidns30.sh new file mode 100755 index 0000000..fa3c040 --- /dev/null +++ b/testcase/containers/ltp.containers.pidns30.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-232448166 +# @用例名称: ltp.containers.pidns30 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.pidns30 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers pidns30 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.pidns31.sh b/testcase/containers/ltp.containers.pidns31.sh new file mode 100755 index 0000000..0120d0f --- /dev/null +++ b/testcase/containers/ltp.containers.pidns31.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-240906376 +# @用例名称: ltp.containers.pidns31 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.pidns31 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers pidns31 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.pidns32.sh b/testcase/containers/ltp.containers.pidns32.sh new file mode 100755 index 0000000..f3b8355 --- /dev/null +++ b/testcase/containers/ltp.containers.pidns32.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-249374314 +# @用例名称: ltp.containers.pidns32 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.pidns32 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers pidns32 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.sem_comm.sh b/testcase/containers/ltp.containers.sem_comm.sh new file mode 100755 index 0000000..fe57c9b --- /dev/null +++ b/testcase/containers/ltp.containers.sem_comm.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-649050570 +# @用例名称: ltp.containers.sem_comm +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.sem_comm + # @预期结果:1: 用例返回0 + ltp_run_testcase containers sem_comm + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.sem_nstest_clone.sh b/testcase/containers/ltp.containers.sem_nstest_clone.sh new file mode 100755 index 0000000..2197fe5 --- /dev/null +++ b/testcase/containers/ltp.containers.sem_nstest_clone.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-601811021 +# @用例名称: ltp.containers.sem_nstest_clone +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.sem_nstest_clone + # @预期结果:1: 用例返回0 + ltp_run_testcase containers sem_nstest_clone + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.sem_nstest_none.sh b/testcase/containers/ltp.containers.sem_nstest_none.sh new file mode 100755 index 0000000..f2b7dfb --- /dev/null +++ b/testcase/containers/ltp.containers.sem_nstest_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-593339748 +# @用例名称: ltp.containers.sem_nstest_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.sem_nstest_none + # @预期结果:1: 用例返回0 + ltp_run_testcase containers sem_nstest_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.sem_nstest_unshare.sh b/testcase/containers/ltp.containers.sem_nstest_unshare.sh new file mode 100755 index 0000000..08ab552 --- /dev/null +++ b/testcase/containers/ltp.containers.sem_nstest_unshare.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-610342017 +# @用例名称: ltp.containers.sem_nstest_unshare +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.sem_nstest_unshare + # @预期结果:1: 用例返回0 + ltp_run_testcase containers sem_nstest_unshare + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.semtest_2ns_clone.sh b/testcase/containers/ltp.containers.semtest_2ns_clone.sh new file mode 100755 index 0000000..463d9a1 --- /dev/null +++ b/testcase/containers/ltp.containers.semtest_2ns_clone.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-632052127 +# @用例名称: ltp.containers.semtest_2ns_clone +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.semtest_2ns_clone + # @预期结果:1: 用例返回0 + ltp_run_testcase containers semtest_2ns_clone + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.semtest_2ns_none.sh b/testcase/containers/ltp.containers.semtest_2ns_none.sh new file mode 100755 index 0000000..8b299eb --- /dev/null +++ b/testcase/containers/ltp.containers.semtest_2ns_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-618810967 +# @用例名称: ltp.containers.semtest_2ns_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.semtest_2ns_none + # @预期结果:1: 用例返回0 + ltp_run_testcase containers semtest_2ns_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.semtest_2ns_unshare.sh b/testcase/containers/ltp.containers.semtest_2ns_unshare.sh new file mode 100755 index 0000000..9b4fb76 --- /dev/null +++ b/testcase/containers/ltp.containers.semtest_2ns_unshare.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-640639880 +# @用例名称: ltp.containers.semtest_2ns_unshare +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.semtest_2ns_unshare + # @预期结果:1: 用例返回0 + ltp_run_testcase containers semtest_2ns_unshare + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.shm_comm.sh b/testcase/containers/ltp.containers.shm_comm.sh new file mode 100755 index 0000000..b74cb86 --- /dev/null +++ b/testcase/containers/ltp.containers.shm_comm.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-550090767 +# @用例名称: ltp.containers.shm_comm +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.shm_comm + # @预期结果:1: 用例返回0 + ltp_run_testcase containers shm_comm + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.shmem_2nstest_clone.sh b/testcase/containers/ltp.containers.shmem_2nstest_clone.sh new file mode 100755 index 0000000..65b72a9 --- /dev/null +++ b/testcase/containers/ltp.containers.shmem_2nstest_clone.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-532983540 +# @用例名称: ltp.containers.shmem_2nstest_clone +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.shmem_2nstest_clone + # @预期结果:1: 用例返回0 + ltp_run_testcase containers shmem_2nstest_clone + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.shmem_2nstest_none.sh b/testcase/containers/ltp.containers.shmem_2nstest_none.sh new file mode 100755 index 0000000..2c2964e --- /dev/null +++ b/testcase/containers/ltp.containers.shmem_2nstest_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-524360603 +# @用例名称: ltp.containers.shmem_2nstest_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.shmem_2nstest_none + # @预期结果:1: 用例返回0 + ltp_run_testcase containers shmem_2nstest_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.shmem_2nstest_unshare.sh b/testcase/containers/ltp.containers.shmem_2nstest_unshare.sh new file mode 100755 index 0000000..5854f5b --- /dev/null +++ b/testcase/containers/ltp.containers.shmem_2nstest_unshare.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-541525567 +# @用例名称: ltp.containers.shmem_2nstest_unshare +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.shmem_2nstest_unshare + # @预期结果:1: 用例返回0 + ltp_run_testcase containers shmem_2nstest_unshare + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.shmnstest_clone.sh b/testcase/containers/ltp.containers.shmnstest_clone.sh new file mode 100755 index 0000000..a1935e4 --- /dev/null +++ b/testcase/containers/ltp.containers.shmnstest_clone.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-507365546 +# @用例名称: ltp.containers.shmnstest_clone +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.shmnstest_clone + # @预期结果:1: 用例返回0 + ltp_run_testcase containers shmnstest_clone + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.shmnstest_none.sh b/testcase/containers/ltp.containers.shmnstest_none.sh new file mode 100755 index 0000000..eaef3a7 --- /dev/null +++ b/testcase/containers/ltp.containers.shmnstest_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-498776652 +# @用例名称: ltp.containers.shmnstest_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.shmnstest_none + # @预期结果:1: 用例返回0 + ltp_run_testcase containers shmnstest_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.shmnstest_unshare.sh b/testcase/containers/ltp.containers.shmnstest_unshare.sh new file mode 100755 index 0000000..3b0801b --- /dev/null +++ b/testcase/containers/ltp.containers.shmnstest_unshare.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-515867137 +# @用例名称: ltp.containers.shmnstest_unshare +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.shmnstest_unshare + # @预期结果:1: 用例返回0 + ltp_run_testcase containers shmnstest_unshare + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.sysinfo03.sh b/testcase/containers/ltp.containers.sysinfo03.sh new file mode 100755 index 0000000..1d25d8b --- /dev/null +++ b/testcase/containers/ltp.containers.sysinfo03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-859982050 +# @用例名称: ltp.containers.sysinfo03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.sysinfo03 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers sysinfo03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.timens01.sh b/testcase/containers/ltp.containers.timens01.sh new file mode 100755 index 0000000..5e8827e --- /dev/null +++ b/testcase/containers/ltp.containers.timens01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-885667080 +# @用例名称: ltp.containers.timens01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.timens01 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers timens01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.timerfd04.sh b/testcase/containers/ltp.containers.timerfd04.sh new file mode 100755 index 0000000..9132b4d --- /dev/null +++ b/testcase/containers/ltp.containers.timerfd04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-894301219 +# @用例名称: ltp.containers.timerfd04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.timerfd04 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers timerfd04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.userns01.sh b/testcase/containers/ltp.containers.userns01.sh new file mode 100755 index 0000000..6f569e7 --- /dev/null +++ b/testcase/containers/ltp.containers.userns01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-787092457 +# @用例名称: ltp.containers.userns01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.userns01 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers userns01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.userns02.sh b/testcase/containers/ltp.containers.userns02.sh new file mode 100755 index 0000000..4f0eec2 --- /dev/null +++ b/testcase/containers/ltp.containers.userns02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-795565885 +# @用例名称: ltp.containers.userns02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.userns02 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers userns02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.userns03.sh b/testcase/containers/ltp.containers.userns03.sh new file mode 100755 index 0000000..a37c5c1 --- /dev/null +++ b/testcase/containers/ltp.containers.userns03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-803967729 +# @用例名称: ltp.containers.userns03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.userns03 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers userns03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.userns04.sh b/testcase/containers/ltp.containers.userns04.sh new file mode 100755 index 0000000..40409a6 --- /dev/null +++ b/testcase/containers/ltp.containers.userns04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-812455254 +# @用例名称: ltp.containers.userns04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.userns04 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers userns04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.userns05.sh b/testcase/containers/ltp.containers.userns05.sh new file mode 100755 index 0000000..c418475 --- /dev/null +++ b/testcase/containers/ltp.containers.userns05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-820887956 +# @用例名称: ltp.containers.userns05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.userns05 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers userns05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.userns06.sh b/testcase/containers/ltp.containers.userns06.sh new file mode 100755 index 0000000..13de9f1 --- /dev/null +++ b/testcase/containers/ltp.containers.userns06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-829569914 +# @用例名称: ltp.containers.userns06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.userns06 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers userns06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.userns07.sh b/testcase/containers/ltp.containers.userns07.sh new file mode 100755 index 0000000..6403238 --- /dev/null +++ b/testcase/containers/ltp.containers.userns07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-838048361 +# @用例名称: ltp.containers.userns07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.userns07 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers userns07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.userns08.sh b/testcase/containers/ltp.containers.userns08.sh new file mode 100755 index 0000000..e1b3c78 --- /dev/null +++ b/testcase/containers/ltp.containers.userns08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-848398722 +# @用例名称: ltp.containers.userns08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.userns08 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers userns08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.utsname01.sh b/testcase/containers/ltp.containers.utsname01.sh new file mode 100755 index 0000000..50383f7 --- /dev/null +++ b/testcase/containers/ltp.containers.utsname01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141446-331200499 +# @用例名称: ltp.containers.utsname01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.utsname01 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers utsname01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.utsname02.sh b/testcase/containers/ltp.containers.utsname02.sh new file mode 100755 index 0000000..84e3ce2 --- /dev/null +++ b/testcase/containers/ltp.containers.utsname02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141446-395223753 +# @用例名称: ltp.containers.utsname02 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.utsname02 + # @预期结果:1: 用例返回0 + ltp_run_testcase containers utsname02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.utsname03_clone.sh b/testcase/containers/ltp.containers.utsname03_clone.sh new file mode 100755 index 0000000..3b6d2c4 --- /dev/null +++ b/testcase/containers/ltp.containers.utsname03_clone.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141847-071236849 +# @用例名称: ltp.containers.utsname03_clone +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.utsname03_clone + # @预期结果:1: 用例返回0 + ltp_run_testcase containers utsname03_clone + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.utsname03_unshare.sh b/testcase/containers/ltp.containers.utsname03_unshare.sh new file mode 100755 index 0000000..b65a797 --- /dev/null +++ b/testcase/containers/ltp.containers.utsname03_unshare.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141847-135312418 +# @用例名称: ltp.containers.utsname03_unshare +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.utsname03_unshare + # @预期结果:1: 用例返回0 + ltp_run_testcase containers utsname03_unshare + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.utsname04_clone.sh b/testcase/containers/ltp.containers.utsname04_clone.sh new file mode 100755 index 0000000..fafcb9c --- /dev/null +++ b/testcase/containers/ltp.containers.utsname04_clone.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141847-198834895 +# @用例名称: ltp.containers.utsname04_clone +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.utsname04_clone + # @预期结果:1: 用例返回0 + ltp_run_testcase containers utsname04_clone + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/containers/ltp.containers.utsname04_unshare.sh b/testcase/containers/ltp.containers.utsname04_unshare.sh new file mode 100755 index 0000000..14662e0 --- /dev/null +++ b/testcase/containers/ltp.containers.utsname04_unshare.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141847-263110202 +# @用例名称: ltp.containers.utsname04_unshare +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.containers.utsname04_unshare + # @预期结果:1: 用例返回0 + ltp_run_testcase containers utsname04_unshare + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup.sh b/testcase/controllers/ltp.controllers.cgroup.sh new file mode 100755 index 0000000..133f2f3 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-905457157 +# @用例名称: ltp.controllers.cgroup +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_core01.sh b/testcase/controllers/ltp.controllers.cgroup_core01.sh new file mode 100755 index 0000000..c36a605 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_core01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141847-326695709 +# @用例名称: ltp.controllers.cgroup_core01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_core01 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_core01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_core02.sh b/testcase/controllers/ltp.controllers.cgroup_core02.sh new file mode 100755 index 0000000..c04e8d9 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_core02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141847-390887969 +# @用例名称: ltp.controllers.cgroup_core02 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_core02 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_core02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_core03.sh b/testcase/controllers/ltp.controllers.cgroup_core03.sh new file mode 100755 index 0000000..05fe7d6 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_core03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141847-453597162 +# @用例名称: ltp.controllers.cgroup_core03 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_core03 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_core03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_blkio.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_blkio.sh new file mode 100755 index 0000000..dbf792e --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_blkio.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-127743298 +# @用例名称: ltp.controllers.cgroup_fj_function_blkio +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_function_blkio + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_function_blkio + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_cpu.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_cpu.sh new file mode 100755 index 0000000..1ea58d2 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_cpu.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-085288563 +# @用例名称: ltp.controllers.cgroup_fj_function_cpu +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_function_cpu + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_function_cpu + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_cpuacct.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_cpuacct.sh new file mode 100755 index 0000000..cbeebc2 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_cpuacct.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-093834997 +# @用例名称: ltp.controllers.cgroup_fj_function_cpuacct +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_function_cpuacct + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_function_cpuacct + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_cpuset.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_cpuset.sh new file mode 100755 index 0000000..2b8a867 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_cpuset.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-076446405 +# @用例名称: ltp.controllers.cgroup_fj_function_cpuset +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_function_cpuset + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_function_cpuset + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_debug.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_debug.sh new file mode 100755 index 0000000..580af1a --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_debug.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-067514158 +# @用例名称: ltp.controllers.cgroup_fj_function_debug +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_function_debug + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_function_debug + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_devices.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_devices.sh new file mode 100755 index 0000000..e7f247f --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_devices.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-119261905 +# @用例名称: ltp.controllers.cgroup_fj_function_devices +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_function_devices + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_function_devices + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_freezer.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_freezer.sh new file mode 100755 index 0000000..c269280 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_freezer.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-110714919 +# @用例名称: ltp.controllers.cgroup_fj_function_freezer +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_function_freezer + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_function_freezer + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_hugetlb.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_hugetlb.sh new file mode 100755 index 0000000..07abf62 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_hugetlb.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-162046385 +# @用例名称: ltp.controllers.cgroup_fj_function_hugetlb +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_function_hugetlb + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_function_hugetlb + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_memory.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_memory.sh new file mode 100755 index 0000000..b13476f --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_memory.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-102250988 +# @用例名称: ltp.controllers.cgroup_fj_function_memory +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_function_memory + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_function_memory + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_net_cls.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_net_cls.sh new file mode 100755 index 0000000..0461214 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_net_cls.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-136325258 +# @用例名称: ltp.controllers.cgroup_fj_function_net_cls +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_function_net_cls + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_function_net_cls + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_net_prio.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_net_prio.sh new file mode 100755 index 0000000..d89b782 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_net_prio.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-153388031 +# @用例名称: ltp.controllers.cgroup_fj_function_net_prio +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_function_net_prio + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_function_net_prio + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_perf_event.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_perf_event.sh new file mode 100755 index 0000000..918a0e6 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_perf_event.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-144938168 +# @用例名称: ltp.controllers.cgroup_fj_function_perf_event +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_function_perf_event + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_function_perf_event + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_each.sh new file mode 100755 index 0000000..a93ed86 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-705435518 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_10_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_10_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_10_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_none.sh new file mode 100755 index 0000000..0a4455d --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-580334080 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_10_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_10_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_10_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_one.sh new file mode 100755 index 0000000..131e2c9 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-642382474 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_10_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_10_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_10_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_each.sh new file mode 100755 index 0000000..efb9b8f --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-714255996 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_1_200_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_1_200_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_1_200_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_none.sh new file mode 100755 index 0000000..b627234 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-588943774 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_1_200_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_1_200_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_1_200_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_one.sh new file mode 100755 index 0000000..58b435d --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-650969676 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_1_200_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_1_200_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_1_200_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_each.sh new file mode 100755 index 0000000..c90af3a --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-722840743 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_200_1_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_200_1_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_200_1_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_none.sh new file mode 100755 index 0000000..08eac69 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-597489808 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_200_1_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_200_1_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_200_1_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_one.sh new file mode 100755 index 0000000..1e7df17 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-659650031 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_200_1_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_200_1_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_200_1_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_each.sh new file mode 100755 index 0000000..2e08bf1 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-670382527 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_2_2_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_2_2_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_2_2_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_none.sh new file mode 100755 index 0000000..f86dce7 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-545996478 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_2_2_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_2_2_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_2_2_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_one.sh new file mode 100755 index 0000000..f8c3f04 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-608039742 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_2_2_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_2_2_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_2_2_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_each.sh new file mode 100755 index 0000000..be69246 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-696885588 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_2_9_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_2_9_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_2_9_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_none.sh new file mode 100755 index 0000000..69ff9b1 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-571878796 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_2_9_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_2_9_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_2_9_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_one.sh new file mode 100755 index 0000000..678a345 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-633763364 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_2_9_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_2_9_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_2_9_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_each.sh new file mode 100755 index 0000000..7b1f0f3 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-679766699 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_3_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_3_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_3_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_none.sh new file mode 100755 index 0000000..5c647af --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-554604678 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_3_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_3_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_3_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_one.sh new file mode 100755 index 0000000..5329bac --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-616577250 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_3_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_3_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_3_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_each.sh new file mode 100755 index 0000000..a47ec0a --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-688301092 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_4_4_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_4_4_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_4_4_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_none.sh new file mode 100755 index 0000000..7fdc6e0 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-563287769 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_4_4_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_4_4_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_4_4_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_one.sh new file mode 100755 index 0000000..47b8963 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-625108706 +# @用例名称: ltp.controllers.cgroup_fj_stress_blkio_4_4_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_blkio_4_4_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_blkio_4_4_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_each.sh new file mode 100755 index 0000000..f1a2de5 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-737043647 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_10_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_10_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_10_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_none.sh new file mode 100755 index 0000000..9275367 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-601685884 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_10_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_10_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_10_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_one.sh new file mode 100755 index 0000000..460d2c0 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-672770389 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_10_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_10_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_10_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_each.sh new file mode 100755 index 0000000..9c82455 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-745526864 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_1_200_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_1_200_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_1_200_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_none.sh new file mode 100755 index 0000000..588af39 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-611078733 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_1_200_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_1_200_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_1_200_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_one.sh new file mode 100755 index 0000000..11a88c9 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-681674714 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_1_200_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_1_200_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_1_200_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_each.sh new file mode 100755 index 0000000..a3eb17a --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-754232025 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_200_1_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_200_1_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_200_1_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_none.sh new file mode 100755 index 0000000..0504970 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-622430197 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_200_1_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_200_1_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_200_1_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_one.sh new file mode 100755 index 0000000..8661a3b --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-690192695 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_200_1_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_200_1_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_200_1_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_each.sh new file mode 100755 index 0000000..473ab6b --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-701265659 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_2_2_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_2_2_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_2_2_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_none.sh new file mode 100755 index 0000000..142221c --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-565217543 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_2_2_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_2_2_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_2_2_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_one.sh new file mode 100755 index 0000000..1b7ef79 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-634965888 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_2_2_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_2_2_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_2_2_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_each.sh new file mode 100755 index 0000000..09e38c6 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-728568345 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_2_9_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_2_9_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_2_9_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_none.sh new file mode 100755 index 0000000..80d1633 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-591951536 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_2_9_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_2_9_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_2_9_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_one.sh new file mode 100755 index 0000000..5d77d2a --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-664022046 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_2_9_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_2_9_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_2_9_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_each.sh new file mode 100755 index 0000000..bcec878 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-711207224 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_3_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_3_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_3_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_none.sh new file mode 100755 index 0000000..80d92d5 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-573670242 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_3_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_3_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_3_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_one.sh new file mode 100755 index 0000000..867de63 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-645155127 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_3_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_3_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_3_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_each.sh new file mode 100755 index 0000000..959c2ba --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-720056897 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_4_4_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_4_4_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_4_4_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_none.sh new file mode 100755 index 0000000..bafad26 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-582248096 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_4_4_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_4_4_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_4_4_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_one.sh new file mode 100755 index 0000000..80ccf07 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-655220043 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpu_4_4_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpu_4_4_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpu_4_4_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_each.sh new file mode 100755 index 0000000..8b5e4f7 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-928075263 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_10_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_10_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_10_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_none.sh new file mode 100755 index 0000000..61c77cb --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-802152429 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_10_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_10_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_10_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_one.sh new file mode 100755 index 0000000..c6c5023 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-865672156 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_10_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_10_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_10_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_each.sh new file mode 100755 index 0000000..dd8b07a --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-936662475 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_1_200_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_1_200_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_1_200_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_none.sh new file mode 100755 index 0000000..b289391 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-810866187 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_1_200_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_1_200_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_1_200_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_one.sh new file mode 100755 index 0000000..5333af0 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-874366057 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_1_200_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_1_200_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_1_200_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_each.sh new file mode 100755 index 0000000..df72f64 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-945235199 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_200_1_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_200_1_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_200_1_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_none.sh new file mode 100755 index 0000000..63c64b1 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-819435523 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_200_1_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_200_1_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_200_1_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_one.sh new file mode 100755 index 0000000..3904c46 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-882952998 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_200_1_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_200_1_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_200_1_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_each.sh new file mode 100755 index 0000000..543f438 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-893373309 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_2_2_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_2_2_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_2_2_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_none.sh new file mode 100755 index 0000000..0e4bfb7 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-765652158 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_2_2_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_2_2_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_2_2_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_one.sh new file mode 100755 index 0000000..c90d5b6 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-829968928 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_2_2_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_2_2_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_2_2_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_each.sh new file mode 100755 index 0000000..499a795 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-918875246 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_2_9_each +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_2_9_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_2_9_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_none.sh new file mode 100755 index 0000000..6368a37 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-793611334 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_2_9_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_2_9_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_2_9_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_one.sh new file mode 100755 index 0000000..50f9e23 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-857077511 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_2_9_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_2_9_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_2_9_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_each.sh new file mode 100755 index 0000000..b1a18d8 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-901928460 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_3_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_3_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_3_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_none.sh new file mode 100755 index 0000000..1a342d3 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-774220564 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_3_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_3_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_3_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_one.sh new file mode 100755 index 0000000..c6b7338 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-838597095 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_3_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_3_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_3_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_each.sh new file mode 100755 index 0000000..00b40b7 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-910419922 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_4_4_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_4_4_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_4_4_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_none.sh new file mode 100755 index 0000000..446ad78 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-785008543 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_4_4_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_4_4_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_4_4_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_one.sh new file mode 100755 index 0000000..def7248 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-847621594 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuacct_4_4_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuacct_4_4_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuacct_4_4_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_each.sh new file mode 100755 index 0000000..a7a688f --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-536701145 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_10_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_10_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_10_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_none.sh new file mode 100755 index 0000000..c05af04 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-410779772 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_10_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_10_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_10_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_one.sh new file mode 100755 index 0000000..ee1d2f1 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-472712449 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_10_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_10_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_10_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_each.sh new file mode 100755 index 0000000..3a211ba --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-545270242 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_1_200_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_1_200_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_1_200_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_none.sh new file mode 100755 index 0000000..16ae5e8 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-419340654 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_1_200_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_1_200_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_1_200_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_one.sh new file mode 100755 index 0000000..95abae2 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-481441817 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_1_200_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_1_200_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_1_200_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_each.sh new file mode 100755 index 0000000..d31a693 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-553900834 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_200_1_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_200_1_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_200_1_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_none.sh new file mode 100755 index 0000000..37fbca6 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-427786821 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_200_1_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_200_1_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_200_1_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_one.sh new file mode 100755 index 0000000..9fafcd5 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-491667744 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_200_1_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_200_1_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_200_1_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_each.sh new file mode 100755 index 0000000..ad0b822 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-502098906 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_2_2_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_2_2_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_2_2_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_none.sh new file mode 100755 index 0000000..b0294aa --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-376482063 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_2_2_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_2_2_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_2_2_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_one.sh new file mode 100755 index 0000000..31a79dc --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-438315515 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_2_2_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_2_2_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_2_2_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_each.sh new file mode 100755 index 0000000..5f51f2b --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-528058800 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_2_9_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_2_9_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_2_9_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_none.sh new file mode 100755 index 0000000..ee955c7 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-402168245 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_2_9_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_2_9_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_2_9_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_one.sh new file mode 100755 index 0000000..b3119db --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-464076497 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_2_9_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_2_9_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_2_9_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_each.sh new file mode 100755 index 0000000..1909b5c --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-510872225 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_3_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_3_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_3_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_none.sh new file mode 100755 index 0000000..9317cec --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-385039940 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_3_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_3_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_3_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_one.sh new file mode 100755 index 0000000..9313858 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-446900061 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_3_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_3_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_3_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_each.sh new file mode 100755 index 0000000..b1556eb --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-519473703 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_4_4_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_4_4_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_4_4_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_none.sh new file mode 100755 index 0000000..606d8c2 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-393603907 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_4_4_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_4_4_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_4_4_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_one.sh new file mode 100755 index 0000000..4c5d5e2 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-455471212 +# @用例名称: ltp.controllers.cgroup_fj_stress_cpuset_4_4_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_cpuset_4_4_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_cpuset_4_4_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_each.sh new file mode 100755 index 0000000..66e4f30 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-341590033 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_10_3_each +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_10_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_10_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_none.sh new file mode 100755 index 0000000..cc74436 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-208170136 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_10_3_none +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_10_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_10_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_one.sh new file mode 100755 index 0000000..d1d5da7 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-274865036 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_10_3_one +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_10_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_10_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_each.sh new file mode 100755 index 0000000..35c40b8 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-350098677 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_1_200_each +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_1_200_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_1_200_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_none.sh new file mode 100755 index 0000000..bd34d4b --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-216796671 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_1_200_none +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_1_200_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_1_200_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_one.sh new file mode 100755 index 0000000..5a91c5d --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-283467747 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_1_200_one +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_1_200_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_1_200_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_each.sh new file mode 100755 index 0000000..118e537 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-364938730 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_200_1_each +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_200_1_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_200_1_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_none.sh new file mode 100755 index 0000000..739f896 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-225216629 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_200_1_none +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_200_1_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_200_1_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_one.sh new file mode 100755 index 0000000..65ea7a7 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-291923231 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_200_1_one +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_200_1_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_200_1_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_each.sh new file mode 100755 index 0000000..b8ae757 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-302245880 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_2_2_each +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_2_2_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_2_2_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_none.sh new file mode 100755 index 0000000..7c39452 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-173411135 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_2_2_none +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_2_2_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_2_2_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_one.sh new file mode 100755 index 0000000..71ae3f5 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-240499592 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_2_2_one +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_2_2_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_2_2_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_each.sh new file mode 100755 index 0000000..d7597a3 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-332052052 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_2_9_each +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_2_9_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_2_9_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_none.sh new file mode 100755 index 0000000..9ef16fa --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-199482097 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_2_9_none +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_2_9_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_2_9_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_one.sh new file mode 100755 index 0000000..8d0770d --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-266259901 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_2_9_one +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_2_9_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_2_9_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_each.sh new file mode 100755 index 0000000..2e9d59f --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-314948743 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_3_3_each +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_3_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_3_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_none.sh new file mode 100755 index 0000000..066444f --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-181841312 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_3_3_none +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_3_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_3_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_one.sh new file mode 100755 index 0000000..1c3e127 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-249007393 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_3_3_one +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_3_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_3_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_each.sh new file mode 100755 index 0000000..7a1ce73 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-323484668 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_4_4_each +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_4_4_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_4_4_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_none.sh new file mode 100755 index 0000000..ff6bb72 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-190991126 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_4_4_none +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_4_4_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_4_4_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_one.sh new file mode 100755 index 0000000..fb920e6 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-257517770 +# @用例名称: ltp.controllers.cgroup_fj_stress_debug_4_4_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_debug_4_4_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_debug_4_4_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_each.sh new file mode 100755 index 0000000..51db475 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-516894834 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_10_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_10_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_10_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_none.sh new file mode 100755 index 0000000..4ac661e --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-387681019 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_10_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_10_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_10_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_one.sh new file mode 100755 index 0000000..cfa66fc --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-449990592 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_10_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_10_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_10_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_each.sh new file mode 100755 index 0000000..0558e6c --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-525982582 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_1_200_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_1_200_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_1_200_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_none.sh new file mode 100755 index 0000000..8dbafcf --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-396326649 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_1_200_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_1_200_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_1_200_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_one.sh new file mode 100755 index 0000000..29520a9 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-458779361 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_1_200_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_1_200_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_1_200_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_each.sh new file mode 100755 index 0000000..e25fd03 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-534573830 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_200_1_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_200_1_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_200_1_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_none.sh new file mode 100755 index 0000000..ecdcb8e --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-404934730 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_200_1_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_200_1_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_200_1_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_one.sh new file mode 100755 index 0000000..07bd2bc --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-467436933 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_200_1_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_200_1_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_200_1_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_each.sh new file mode 100755 index 0000000..ddc2da1 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-477938016 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_2_2_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_2_2_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_2_2_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_none.sh new file mode 100755 index 0000000..0906f33 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-349916613 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_2_2_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_2_2_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_2_2_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_one.sh new file mode 100755 index 0000000..ab6f8ba --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-415552882 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_2_2_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_2_2_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_2_2_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_each.sh new file mode 100755 index 0000000..b43da23 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-505370386 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_2_9_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_2_9_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_2_9_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_none.sh new file mode 100755 index 0000000..d470e5f --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-379149633 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_2_9_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_2_9_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_2_9_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_one.sh new file mode 100755 index 0000000..cc03189 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-441399173 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_2_9_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_2_9_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_2_9_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_each.sh new file mode 100755 index 0000000..731dbf5 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-486588435 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_3_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_3_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_3_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_none.sh new file mode 100755 index 0000000..3a7c86e --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-359630853 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_3_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_3_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_3_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_one.sh new file mode 100755 index 0000000..fe0551e --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-424149911 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_3_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_3_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_3_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_each.sh new file mode 100755 index 0000000..a990803 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-495243914 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_4_4_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_4_4_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_4_4_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_none.sh new file mode 100755 index 0000000..d3ffe7d --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-370504584 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_4_4_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_4_4_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_4_4_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_one.sh new file mode 100755 index 0000000..8d72942 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-432764413 +# @用例名称: ltp.controllers.cgroup_fj_stress_devices_4_4_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_devices_4_4_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_devices_4_4_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_each.sh new file mode 100755 index 0000000..b796ebf --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-317193492 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_10_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_10_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_10_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_none.sh new file mode 100755 index 0000000..8f0e1f9 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-186659115 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_10_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_10_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_10_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_one.sh new file mode 100755 index 0000000..1d2e479 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-249430873 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_10_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_10_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_10_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_each.sh new file mode 100755 index 0000000..8fc5ffa --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-325939870 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_1_200_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_1_200_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_1_200_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_none.sh new file mode 100755 index 0000000..b97b40a --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-195217543 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_1_200_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_1_200_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_1_200_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_one.sh new file mode 100755 index 0000000..ee3981d --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-258161973 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_1_200_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_1_200_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_1_200_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_each.sh new file mode 100755 index 0000000..caf9220 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-334447743 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_200_1_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_200_1_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_200_1_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_none.sh new file mode 100755 index 0000000..3450cb9 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-203911704 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_200_1_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_200_1_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_200_1_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_one.sh new file mode 100755 index 0000000..f57a048 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-267080564 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_200_1_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_200_1_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_200_1_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_each.sh new file mode 100755 index 0000000..8dc10be --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-277594712 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_2_2_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_2_2_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_2_2_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_none.sh new file mode 100755 index 0000000..be48f88 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-152202089 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_2_2_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_2_2_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_2_2_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_one.sh new file mode 100755 index 0000000..05d4414 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-214349548 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_2_2_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_2_2_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_2_2_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_each.sh new file mode 100755 index 0000000..71e052e --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-308698513 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_2_9_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_2_9_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_2_9_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_none.sh new file mode 100755 index 0000000..8eba61b --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-177989760 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_2_9_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_2_9_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_2_9_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_one.sh new file mode 100755 index 0000000..6542e7e --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-240205277 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_2_9_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_2_9_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_2_9_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_each.sh new file mode 100755 index 0000000..e08a5dc --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-286522330 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_3_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_3_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_3_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_none.sh new file mode 100755 index 0000000..a8f9acd --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-160840636 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_3_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_3_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_3_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_one.sh new file mode 100755 index 0000000..42d6dd6 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-222947830 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_3_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_3_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_3_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_each.sh new file mode 100755 index 0000000..8ab5401 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-295037877 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_4_4_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_4_4_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_4_4_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_none.sh new file mode 100755 index 0000000..3444989 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-169491325 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_4_4_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_4_4_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_4_4_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_one.sh new file mode 100755 index 0000000..d502784 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-231576829 +# @用例名称: ltp.controllers.cgroup_fj_stress_freezer_4_4_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_freezer_4_4_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_freezer_4_4_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_each.sh new file mode 100755 index 0000000..6310b57 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-469039649 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_10_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_10_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_10_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_none.sh new file mode 100755 index 0000000..247453f --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-344380539 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_10_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_10_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_10_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_one.sh new file mode 100755 index 0000000..f417602 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-406491179 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_10_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_10_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_10_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_each.sh new file mode 100755 index 0000000..a6b63ef --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-477838106 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_1_200_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_1_200_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_1_200_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_none.sh new file mode 100755 index 0000000..ca98c08 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-353022152 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_1_200_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_1_200_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_1_200_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_one.sh new file mode 100755 index 0000000..198dad3 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-415114508 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_1_200_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_1_200_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_1_200_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_each.sh new file mode 100755 index 0000000..d2ce9ee --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-486453479 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_200_1_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_200_1_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_200_1_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_none.sh new file mode 100755 index 0000000..2053cdb --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-361526588 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_200_1_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_200_1_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_200_1_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_one.sh new file mode 100755 index 0000000..779fa55 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-423765599 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_200_1_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_200_1_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_200_1_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_each.sh new file mode 100755 index 0000000..b74d5b3 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-434304973 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_2_2_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_2_2_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_2_2_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_none.sh new file mode 100755 index 0000000..cc4496e --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-307063590 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_2_2_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_2_2_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_2_2_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_one.sh new file mode 100755 index 0000000..fb28b18 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-372018584 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_2_2_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_2_2_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_2_2_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_each.sh new file mode 100755 index 0000000..eaa9cd3 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-460320451 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_2_9_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_2_9_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_2_9_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_none.sh new file mode 100755 index 0000000..773cfea --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-335708459 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_2_9_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_2_9_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_2_9_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_one.sh new file mode 100755 index 0000000..77e8a8b --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-398003094 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_2_9_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_2_9_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_2_9_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_each.sh new file mode 100755 index 0000000..aed0a09 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-442974758 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_3_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_3_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_3_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_none.sh new file mode 100755 index 0000000..4c64e24 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-317507014 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_3_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_3_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_3_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_one.sh new file mode 100755 index 0000000..f1e9f6f --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-380660597 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_3_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_3_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_3_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_each.sh new file mode 100755 index 0000000..56b2ce3 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-451573742 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_4_4_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_4_4_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_4_4_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_none.sh new file mode 100755 index 0000000..ddb1997 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-326080630 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_4_4_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_4_4_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_4_4_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_one.sh new file mode 100755 index 0000000..0118628 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-389376058 +# @用例名称: ltp.controllers.cgroup_fj_stress_hugetlb_4_4_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_hugetlb_4_4_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_hugetlb_4_4_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_each.sh new file mode 100755 index 0000000..713e38b --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-123115153 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_10_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_10_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_10_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_none.sh new file mode 100755 index 0000000..764783f --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-994593173 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_10_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_10_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_10_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_one.sh new file mode 100755 index 0000000..0805f8e --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-060297138 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_10_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_10_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_10_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_each.sh new file mode 100755 index 0000000..bd806f9 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-131603869 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_1_200_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_1_200_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_1_200_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_none.sh new file mode 100755 index 0000000..2b492af --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-003023660 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_1_200_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_1_200_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_1_200_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_one.sh new file mode 100755 index 0000000..29330b5 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-068920056 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_1_200_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_1_200_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_1_200_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_each.sh new file mode 100755 index 0000000..218fa5d --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-140138311 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_200_1_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_200_1_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_200_1_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_none.sh new file mode 100755 index 0000000..64e0eea --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-011579823 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_200_1_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_200_1_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_200_1_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_one.sh new file mode 100755 index 0000000..c938b42 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-077525832 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_200_1_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_200_1_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_200_1_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_each.sh new file mode 100755 index 0000000..48ec466 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-088425871 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_2_2_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_2_2_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_2_2_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_none.sh new file mode 100755 index 0000000..5d737e9 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-956877236 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_2_2_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_2_2_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_2_2_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_one.sh new file mode 100755 index 0000000..fac0240 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-022271853 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_2_2_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_2_2_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_2_2_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_each.sh new file mode 100755 index 0000000..242eda0 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-114556805 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_2_9_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_2_9_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_2_9_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_none.sh new file mode 100755 index 0000000..6af8cbe --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-986005029 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_2_9_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_2_9_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_2_9_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_one.sh new file mode 100755 index 0000000..5404de9 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-048971893 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_2_9_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_2_9_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_2_9_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_each.sh new file mode 100755 index 0000000..ae4f7ed --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-097114322 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_3_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_3_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_3_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_none.sh new file mode 100755 index 0000000..b748718 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-965794155 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_3_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_3_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_3_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_one.sh new file mode 100755 index 0000000..9b59efa --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-031702193 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_3_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_3_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_3_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_each.sh new file mode 100755 index 0000000..b9b7c4c --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-105671446 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_4_4_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_4_4_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_4_4_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_none.sh new file mode 100755 index 0000000..cdb7bd4 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-977261746 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_4_4_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_4_4_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_4_4_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_one.sh new file mode 100755 index 0000000..9be4647 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-040299572 +# @用例名称: ltp.controllers.cgroup_fj_stress_memory_4_4_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_memory_4_4_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_memory_4_4_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_each.sh new file mode 100755 index 0000000..36683d1 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-893424461 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_10_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_10_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_10_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_none.sh new file mode 100755 index 0000000..f9bf180 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-769083657 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_10_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_10_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_10_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_one.sh new file mode 100755 index 0000000..86df215 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-831269838 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_10_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_10_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_10_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_each.sh new file mode 100755 index 0000000..e3d28b8 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-906531411 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_1_200_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_1_200_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_1_200_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_none.sh new file mode 100755 index 0000000..06f5296 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-777801702 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_1_200_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_1_200_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_1_200_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_one.sh new file mode 100755 index 0000000..cef8765 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-839886094 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_1_200_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_1_200_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_1_200_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_each.sh new file mode 100755 index 0000000..52aa951 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-915190487 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_200_1_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_200_1_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_200_1_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_none.sh new file mode 100755 index 0000000..60372b5 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-786406557 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_200_1_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_200_1_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_200_1_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_one.sh new file mode 100755 index 0000000..f9edb1e --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-848463998 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_200_1_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_200_1_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_200_1_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_each.sh new file mode 100755 index 0000000..bfce400 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-859012950 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_2_2_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_2_2_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_2_2_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_none.sh new file mode 100755 index 0000000..dbc29ff --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-734365962 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_2_2_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_2_2_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_2_2_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_one.sh new file mode 100755 index 0000000..95f2c23 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-796775923 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_2_2_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_2_2_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_2_2_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_each.sh new file mode 100755 index 0000000..c7db107 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-884886673 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_2_9_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_2_9_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_2_9_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_none.sh new file mode 100755 index 0000000..2dea095 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-760151711 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_2_9_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_2_9_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_2_9_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_one.sh new file mode 100755 index 0000000..9b5022c --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-822542755 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_2_9_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_2_9_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_2_9_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_each.sh new file mode 100755 index 0000000..628058e --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-867641268 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_3_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_3_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_3_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_none.sh new file mode 100755 index 0000000..4afdcec --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-742913890 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_3_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_3_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_3_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_one.sh new file mode 100755 index 0000000..5c5b9ba --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-805314342 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_3_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_3_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_3_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_each.sh new file mode 100755 index 0000000..38e7dd4 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-876344997 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_4_4_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_4_4_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_4_4_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_none.sh new file mode 100755 index 0000000..21ee02f --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-751536817 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_4_4_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_4_4_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_4_4_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_one.sh new file mode 100755 index 0000000..606d26e --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-813961636 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_cls_4_4_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_cls_4_4_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_cls_4_4_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_each.sh new file mode 100755 index 0000000..a780eaa --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-274743663 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_10_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_10_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_10_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_none.sh new file mode 100755 index 0000000..ebb39d1 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-149809488 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_10_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_10_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_10_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_one.sh new file mode 100755 index 0000000..59fd8b9 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-212702613 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_10_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_10_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_10_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_each.sh new file mode 100755 index 0000000..8bce282 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-283330092 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_1_200_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_1_200_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_1_200_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_none.sh new file mode 100755 index 0000000..e58ba6d --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-158473041 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_1_200_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_1_200_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_1_200_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_one.sh new file mode 100755 index 0000000..9a6f746 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-221250531 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_1_200_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_1_200_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_1_200_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_each.sh new file mode 100755 index 0000000..36b6809 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-291833637 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_200_1_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_200_1_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_200_1_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_none.sh new file mode 100755 index 0000000..eb749a2 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-167155591 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_200_1_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_200_1_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_200_1_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_one.sh new file mode 100755 index 0000000..8b7b732 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-229863610 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_200_1_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_200_1_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_200_1_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_each.sh new file mode 100755 index 0000000..799bfe8 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-240328554 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_2_2_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_2_2_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_2_2_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_none.sh new file mode 100755 index 0000000..006c8a8 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-114701232 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_2_2_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_2_2_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_2_2_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_one.sh new file mode 100755 index 0000000..d264954 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-178039400 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_2_2_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_2_2_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_2_2_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_each.sh new file mode 100755 index 0000000..be2e9d7 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-266137055 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_2_9_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_2_9_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_2_9_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_none.sh new file mode 100755 index 0000000..79f19c4 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-140186588 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_2_9_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_2_9_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_2_9_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_one.sh new file mode 100755 index 0000000..c3db7ea --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-204073884 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_2_9_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_2_9_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_2_9_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_each.sh new file mode 100755 index 0000000..9b91bcc --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-248916427 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_3_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_3_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_3_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_none.sh new file mode 100755 index 0000000..4229994 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-123225505 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_3_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_3_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_3_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_one.sh new file mode 100755 index 0000000..44eac72 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-186588820 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_3_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_3_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_3_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_each.sh new file mode 100755 index 0000000..43c99f8 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-257477139 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_4_4_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_4_4_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_4_4_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_none.sh new file mode 100755 index 0000000..e6a554b --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-131653800 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_4_4_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_4_4_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_4_4_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_one.sh new file mode 100755 index 0000000..9390b1e --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-195248897 +# @用例名称: ltp.controllers.cgroup_fj_stress_net_prio_4_4_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_net_prio_4_4_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_net_prio_4_4_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_each.sh new file mode 100755 index 0000000..3eba15f --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-086063136 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_10_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_10_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_10_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_none.sh new file mode 100755 index 0000000..9376177 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-961179987 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_10_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_10_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_10_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_one.sh new file mode 100755 index 0000000..6e06e58 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-023999023 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_10_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_10_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_10_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_each.sh new file mode 100755 index 0000000..cdd903c --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-094626783 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_1_200_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_1_200_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_1_200_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_none.sh new file mode 100755 index 0000000..d2d1749 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-969769050 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_1_200_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_1_200_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_1_200_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_one.sh new file mode 100755 index 0000000..679e7d5 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-032609757 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_1_200_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_1_200_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_1_200_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_each.sh new file mode 100755 index 0000000..e8da2a2 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-103232919 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_200_1_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_200_1_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_200_1_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_none.sh new file mode 100755 index 0000000..4298248 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-978554553 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_200_1_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_200_1_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_200_1_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_one.sh new file mode 100755 index 0000000..f19ee53 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-041108272 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_200_1_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_200_1_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_200_1_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_each.sh new file mode 100755 index 0000000..7a4a227 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-051524407 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_2_2_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_2_2_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_2_2_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_none.sh new file mode 100755 index 0000000..c5c2573 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-926806456 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_2_2_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_2_2_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_2_2_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_one.sh new file mode 100755 index 0000000..293066e --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-989229301 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_2_2_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_2_2_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_2_2_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_each.sh new file mode 100755 index 0000000..c81971e --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-077490232 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_2_9_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_2_9_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_2_9_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_none.sh new file mode 100755 index 0000000..cee62d4 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-952508587 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_2_9_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_2_9_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_2_9_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_one.sh new file mode 100755 index 0000000..c000be4 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-015310452 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_2_9_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_2_9_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_2_9_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_each.sh new file mode 100755 index 0000000..9854763 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-060243534 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_3_3_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_3_3_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_3_3_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_none.sh new file mode 100755 index 0000000..d8c53ce --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-935420978 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_3_3_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_3_3_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_3_3_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_one.sh new file mode 100755 index 0000000..5b956f5 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-997805963 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_3_3_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_3_3_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_3_3_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_each.sh new file mode 100755 index 0000000..9875456 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_each.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-068892100 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_4_4_each +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_4_4_each + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_4_4_each + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_none.sh new file mode 100755 index 0000000..b4a21df --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_none.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212950-944040660 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_4_4_none +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_4_4_none + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_4_4_none + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_one.sh new file mode 100755 index 0000000..d578d4b --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_one.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-006545268 +# @用例名称: ltp.controllers.cgroup_fj_stress_perf_event_4_4_one +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_fj_stress_perf_event_4_4_one + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_fj_stress_perf_event_4_4_one + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cgroup_xattr.sh b/testcase/controllers/ltp.controllers.cgroup_xattr.sh new file mode 100755 index 0000000..518eccf --- /dev/null +++ b/testcase/controllers/ltp.controllers.cgroup_xattr.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-691982709 +# @用例名称: ltp.controllers.cgroup_xattr +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cgroup_xattr + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cgroup_xattr + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.controllers.sh b/testcase/controllers/ltp.controllers.controllers.sh new file mode 100755 index 0000000..5fb7022 --- /dev/null +++ b/testcase/controllers/ltp.controllers.controllers.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-496969079 +# @用例名称: ltp.controllers.controllers +# @用例级别: 4 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.controllers + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers controllers + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuacct_100_1.sh b/testcase/controllers/ltp.controllers.cpuacct_100_1.sh new file mode 100755 index 0000000..85eb285 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuacct_100_1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-543965985 +# @用例名称: ltp.controllers.cpuacct_100_1 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuacct_100_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuacct_100_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuacct_100_100.sh b/testcase/controllers/ltp.controllers.cpuacct_100_100.sh new file mode 100755 index 0000000..a8e6850 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuacct_100_100.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-552516958 +# @用例名称: ltp.controllers.cpuacct_100_100 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuacct_100_100 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuacct_100_100 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuacct_10_10.sh b/testcase/controllers/ltp.controllers.cpuacct_10_10.sh new file mode 100755 index 0000000..4ecfdd1 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuacct_10_10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-526994923 +# @用例名称: ltp.controllers.cpuacct_10_10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuacct_10_10 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuacct_10_10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuacct_1_1.sh b/testcase/controllers/ltp.controllers.cpuacct_1_1.sh new file mode 100755 index 0000000..59c583a --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuacct_1_1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-507605425 +# @用例名称: ltp.controllers.cpuacct_1_1 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuacct_1_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuacct_1_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuacct_1_10.sh b/testcase/controllers/ltp.controllers.cpuacct_1_10.sh new file mode 100755 index 0000000..ecd300d --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuacct_1_10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-518371794 +# @用例名称: ltp.controllers.cpuacct_1_10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuacct_1_10 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuacct_1_10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuacct_1_100.sh b/testcase/controllers/ltp.controllers.cpuacct_1_100.sh new file mode 100755 index 0000000..49a5eb5 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuacct_1_100.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-535525729 +# @用例名称: ltp.controllers.cpuacct_1_100 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuacct_1_100 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuacct_1_100 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuset_base_ops.sh b/testcase/controllers/ltp.controllers.cpuset_base_ops.sh new file mode 100755 index 0000000..64075fe --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuset_base_ops.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-562998865 +# @用例名称: ltp.controllers.cpuset_base_ops +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuset_base_ops + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuset_base_ops + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuset_exclusive.sh b/testcase/controllers/ltp.controllers.cpuset_exclusive.sh new file mode 100755 index 0000000..f1e2989 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuset_exclusive.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-580540925 +# @用例名称: ltp.controllers.cpuset_exclusive +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuset_exclusive + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuset_exclusive + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuset_hierarchy.sh b/testcase/controllers/ltp.controllers.cpuset_hierarchy.sh new file mode 100755 index 0000000..51c7d24 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuset_hierarchy.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-589093851 +# @用例名称: ltp.controllers.cpuset_hierarchy +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuset_hierarchy + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuset_hierarchy + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuset_hotplug.sh b/testcase/controllers/ltp.controllers.cpuset_hotplug.sh new file mode 100755 index 0000000..24b6788 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuset_hotplug.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-623924838 +# @用例名称: ltp.controllers.cpuset_hotplug +# @用例级别: 1 +# @用例标签: TK5不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuset_hotplug + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuset_hotplug + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuset_inherit.sh b/testcase/controllers/ltp.controllers.cpuset_inherit.sh new file mode 100755 index 0000000..e288d5d --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuset_inherit.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-571633614 +# @用例名称: ltp.controllers.cpuset_inherit +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuset_inherit + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuset_inherit + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuset_load_balance.sh b/testcase/controllers/ltp.controllers.cpuset_load_balance.sh new file mode 100755 index 0000000..2491068 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuset_load_balance.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-615399152 +# @用例名称: ltp.controllers.cpuset_load_balance +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuset_load_balance + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuset_load_balance + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuset_memory.sh b/testcase/controllers/ltp.controllers.cpuset_memory.sh new file mode 100755 index 0000000..a25a4d3 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuset_memory.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-632599212 +# @用例名称: ltp.controllers.cpuset_memory +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuset_memory + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuset_memory + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuset_memory_pressure.sh b/testcase/controllers/ltp.controllers.cpuset_memory_pressure.sh new file mode 100755 index 0000000..a1162ab --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuset_memory_pressure.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-645720638 +# @用例名称: ltp.controllers.cpuset_memory_pressure +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuset_memory_pressure + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuset_memory_pressure + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuset_memory_spread.sh b/testcase/controllers/ltp.controllers.cpuset_memory_spread.sh new file mode 100755 index 0000000..4582793 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuset_memory_spread.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-657667467 +# @用例名称: ltp.controllers.cpuset_memory_spread +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuset_memory_spread + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuset_memory_spread + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuset_regression_test.sh b/testcase/controllers/ltp.controllers.cpuset_regression_test.sh new file mode 100755 index 0000000..d335b55 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuset_regression_test.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-678854740 +# @用例名称: ltp.controllers.cpuset_regression_test +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuset_regression_test + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuset_regression_test + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuset_sched_domains.sh b/testcase/controllers/ltp.controllers.cpuset_sched_domains.sh new file mode 100755 index 0000000..5e324c6 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuset_sched_domains.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-606501721 +# @用例名称: ltp.controllers.cpuset_sched_domains +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuset_sched_domains + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuset_sched_domains + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.cpuset_syscall.sh b/testcase/controllers/ltp.controllers.cpuset_syscall.sh new file mode 100755 index 0000000..64766b2 --- /dev/null +++ b/testcase/controllers/ltp.controllers.cpuset_syscall.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-597882479 +# @用例名称: ltp.controllers.cpuset_syscall +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.cpuset_syscall + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers cpuset_syscall + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.io_control01.sh b/testcase/controllers/ltp.controllers.io_control01.sh new file mode 100755 index 0000000..8f246c7 --- /dev/null +++ b/testcase/controllers/ltp.controllers.io_control01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141847-641714595 +# @用例名称: ltp.controllers.io_control01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.io_control01 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers io_control01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcg_control.sh b/testcase/controllers/ltp.controllers.memcg_control.sh new file mode 100755 index 0000000..bb73638 --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcg_control.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-035974481 +# @用例名称: ltp.controllers.memcg_control +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcg_control + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcg_control + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcg_failcnt.sh b/testcase/controllers/ltp.controllers.memcg_failcnt.sh new file mode 100755 index 0000000..1b62d88 --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcg_failcnt.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-931120978 +# @用例名称: ltp.controllers.memcg_failcnt +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcg_failcnt + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcg_failcnt + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcg_force_empty.sh b/testcase/controllers/ltp.controllers.memcg_force_empty.sh new file mode 100755 index 0000000..883a7eb --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcg_force_empty.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-939615575 +# @用例名称: ltp.controllers.memcg_force_empty +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcg_force_empty + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcg_force_empty + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcg_limit_in_bytes.sh b/testcase/controllers/ltp.controllers.memcg_limit_in_bytes.sh new file mode 100755 index 0000000..213fccb --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcg_limit_in_bytes.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-948352056 +# @用例名称: ltp.controllers.memcg_limit_in_bytes +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcg_limit_in_bytes + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcg_limit_in_bytes + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcg_max_usage_in_bytes.sh b/testcase/controllers/ltp.controllers.memcg_max_usage_in_bytes.sh new file mode 100755 index 0000000..baddcce --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcg_max_usage_in_bytes.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-974183048 +# @用例名称: ltp.controllers.memcg_max_usage_in_bytes +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcg_max_usage_in_bytes + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcg_max_usage_in_bytes + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcg_memsw_limit_in_bytes.sh b/testcase/controllers/ltp.controllers.memcg_memsw_limit_in_bytes.sh new file mode 100755 index 0000000..0ead08a --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcg_memsw_limit_in_bytes.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-991244038 +# @用例名称: ltp.controllers.memcg_memsw_limit_in_bytes +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcg_memsw_limit_in_bytes + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcg_memsw_limit_in_bytes + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcg_move_charge_at_immigrate.sh b/testcase/controllers/ltp.controllers.memcg_move_charge_at_immigrate.sh new file mode 100755 index 0000000..2da259c --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcg_move_charge_at_immigrate.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-982709455 +# @用例名称: ltp.controllers.memcg_move_charge_at_immigrate +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcg_move_charge_at_immigrate + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcg_move_charge_at_immigrate + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcg_regression.sh b/testcase/controllers/ltp.controllers.memcg_regression.sh new file mode 100755 index 0000000..9db7cbe --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcg_regression.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-914017187 +# @用例名称: ltp.controllers.memcg_regression +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcg_regression + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcg_regression + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcg_stat.sh b/testcase/controllers/ltp.controllers.memcg_stat.sh new file mode 100755 index 0000000..2a5a435 --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcg_stat.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-999740519 +# @用例名称: ltp.controllers.memcg_stat +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcg_stat + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcg_stat + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcg_stat_rss.sh b/testcase/controllers/ltp.controllers.memcg_stat_rss.sh new file mode 100755 index 0000000..e0c26af --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcg_stat_rss.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-956914119 +# @用例名称: ltp.controllers.memcg_stat_rss +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcg_stat_rss + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcg_stat_rss + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcg_stress.sh b/testcase/controllers/ltp.controllers.memcg_stress.sh new file mode 100755 index 0000000..361ad41 --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcg_stress.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-027302552 +# @用例名称: ltp.controllers.memcg_stress +# @用例级别: 5 +# @用例标签: 待分析 +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcg_stress + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcg_stress + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcg_subgroup_charge.sh b/testcase/controllers/ltp.controllers.memcg_subgroup_charge.sh new file mode 100755 index 0000000..05944bb --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcg_subgroup_charge.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-965586951 +# @用例名称: ltp.controllers.memcg_subgroup_charge +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcg_subgroup_charge + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcg_subgroup_charge + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcg_test_3.sh b/testcase/controllers/ltp.controllers.memcg_test_3.sh new file mode 100755 index 0000000..3df8337 --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcg_test_3.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212948-922646907 +# @用例名称: ltp.controllers.memcg_test_3 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcg_test_3 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcg_test_3 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcg_usage_in_bytes.sh b/testcase/controllers/ltp.controllers.memcg_usage_in_bytes.sh new file mode 100755 index 0000000..2c2f7f5 --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcg_usage_in_bytes.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-018490129 +# @用例名称: ltp.controllers.memcg_usage_in_bytes +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcg_usage_in_bytes + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcg_usage_in_bytes + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcg_use_hierarchy.sh b/testcase/controllers/ltp.controllers.memcg_use_hierarchy.sh new file mode 100755 index 0000000..0f31ca0 --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcg_use_hierarchy.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-009106859 +# @用例名称: ltp.controllers.memcg_use_hierarchy +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcg_use_hierarchy + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcg_use_hierarchy + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcontrol01.sh b/testcase/controllers/ltp.controllers.memcontrol01.sh new file mode 100755 index 0000000..511034c --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcontrol01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-047501203 +# @用例名称: ltp.controllers.memcontrol01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcontrol01 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcontrol01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcontrol02.sh b/testcase/controllers/ltp.controllers.memcontrol02.sh new file mode 100755 index 0000000..9612b0b --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcontrol02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212949-056148297 +# @用例名称: ltp.controllers.memcontrol02 +# @用例级别: 2 +# @用例标签: TS2不支持 TK5不支持 eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcontrol02 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcontrol02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcontrol03.sh b/testcase/controllers/ltp.controllers.memcontrol03.sh new file mode 100755 index 0000000..78ff892 --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcontrol03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141847-516331465 +# @用例名称: ltp.controllers.memcontrol03 +# @用例级别: 3 +# @用例标签: TK5不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcontrol03 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcontrol03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.memcontrol04.sh b/testcase/controllers/ltp.controllers.memcontrol04.sh new file mode 100755 index 0000000..3d86c2d --- /dev/null +++ b/testcase/controllers/ltp.controllers.memcontrol04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141847-578660185 +# @用例名称: ltp.controllers.memcontrol04 +# @用例级别: 3 +# @用例标签: TK5不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.memcontrol04 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers memcontrol04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_1_1.sh b/testcase/controllers/ltp.controllers.pids_1_1.sh new file mode 100755 index 0000000..96c3873 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_1_1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-704678649 +# @用例名称: ltp.controllers.pids_1_1 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_1_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_1_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_1_10.sh b/testcase/controllers/ltp.controllers.pids_1_10.sh new file mode 100755 index 0000000..d98d688 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_1_10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-725056977 +# @用例名称: ltp.controllers.pids_1_10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_1_10 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_1_10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_1_100.sh b/testcase/controllers/ltp.controllers.pids_1_100.sh new file mode 100755 index 0000000..26c0304 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_1_100.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-742224707 +# @用例名称: ltp.controllers.pids_1_100 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_1_100 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_1_100 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_1_2.sh b/testcase/controllers/ltp.controllers.pids_1_2.sh new file mode 100755 index 0000000..95ebee6 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_1_2.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-716462723 +# @用例名称: ltp.controllers.pids_1_2 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_1_2 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_1_2 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_1_50.sh b/testcase/controllers/ltp.controllers.pids_1_50.sh new file mode 100755 index 0000000..34d47c3 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_1_50.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-733648136 +# @用例名称: ltp.controllers.pids_1_50 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_1_50 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_1_50 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_2_1.sh b/testcase/controllers/ltp.controllers.pids_2_1.sh new file mode 100755 index 0000000..4279d3e --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_2_1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-750885556 +# @用例名称: ltp.controllers.pids_2_1 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_2_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_2_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_2_10.sh b/testcase/controllers/ltp.controllers.pids_2_10.sh new file mode 100755 index 0000000..e68f362 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_2_10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-768253179 +# @用例名称: ltp.controllers.pids_2_10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_2_10 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_2_10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_2_100.sh b/testcase/controllers/ltp.controllers.pids_2_100.sh new file mode 100755 index 0000000..16321dd --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_2_100.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-786159652 +# @用例名称: ltp.controllers.pids_2_100 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_2_100 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_2_100 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_2_2.sh b/testcase/controllers/ltp.controllers.pids_2_2.sh new file mode 100755 index 0000000..c5e88e7 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_2_2.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-759518803 +# @用例名称: ltp.controllers.pids_2_2 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_2_2 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_2_2 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_2_50.sh b/testcase/controllers/ltp.controllers.pids_2_50.sh new file mode 100755 index 0000000..b3ce066 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_2_50.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-776933144 +# @用例名称: ltp.controllers.pids_2_50 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_2_50 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_2_50 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_3_0.sh b/testcase/controllers/ltp.controllers.pids_3_0.sh new file mode 100755 index 0000000..b44e696 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_3_0.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-794659810 +# @用例名称: ltp.controllers.pids_3_0 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_3_0 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_3_0 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_3_1.sh b/testcase/controllers/ltp.controllers.pids_3_1.sh new file mode 100755 index 0000000..0022573 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_3_1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-803089886 +# @用例名称: ltp.controllers.pids_3_1 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_3_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_3_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_3_10.sh b/testcase/controllers/ltp.controllers.pids_3_10.sh new file mode 100755 index 0000000..364a7a9 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_3_10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-811443050 +# @用例名称: ltp.controllers.pids_3_10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_3_10 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_3_10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_3_100.sh b/testcase/controllers/ltp.controllers.pids_3_100.sh new file mode 100755 index 0000000..8d40659 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_3_100.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-828448175 +# @用例名称: ltp.controllers.pids_3_100 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_3_100 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_3_100 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_3_50.sh b/testcase/controllers/ltp.controllers.pids_3_50.sh new file mode 100755 index 0000000..7e1c6e1 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_3_50.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-819970678 +# @用例名称: ltp.controllers.pids_3_50 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_3_50 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_3_50 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_4_1.sh b/testcase/controllers/ltp.controllers.pids_4_1.sh new file mode 100755 index 0000000..7d9f4b5 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_4_1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-837033712 +# @用例名称: ltp.controllers.pids_4_1 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_4_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_4_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_4_10.sh b/testcase/controllers/ltp.controllers.pids_4_10.sh new file mode 100755 index 0000000..c78121b --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_4_10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-854463071 +# @用例名称: ltp.controllers.pids_4_10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_4_10 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_4_10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_4_100.sh b/testcase/controllers/ltp.controllers.pids_4_100.sh new file mode 100755 index 0000000..9a06728 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_4_100.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-871594363 +# @用例名称: ltp.controllers.pids_4_100 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_4_100 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_4_100 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_4_2.sh b/testcase/controllers/ltp.controllers.pids_4_2.sh new file mode 100755 index 0000000..af23d14 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_4_2.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-845621415 +# @用例名称: ltp.controllers.pids_4_2 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_4_2 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_4_2 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_4_50.sh b/testcase/controllers/ltp.controllers.pids_4_50.sh new file mode 100755 index 0000000..59177da --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_4_50.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-863034132 +# @用例名称: ltp.controllers.pids_4_50 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_4_50 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_4_50 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_5_1.sh b/testcase/controllers/ltp.controllers.pids_5_1.sh new file mode 100755 index 0000000..bc0dc46 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_5_1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-880337296 +# @用例名称: ltp.controllers.pids_5_1 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_5_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_5_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_6_1.sh b/testcase/controllers/ltp.controllers.pids_6_1.sh new file mode 100755 index 0000000..e2f7ff6 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_6_1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-888895753 +# @用例名称: ltp.controllers.pids_6_1 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_6_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_6_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_6_10.sh b/testcase/controllers/ltp.controllers.pids_6_10.sh new file mode 100755 index 0000000..e8d31eb --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_6_10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-905947885 +# @用例名称: ltp.controllers.pids_6_10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_6_10 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_6_10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_6_100.sh b/testcase/controllers/ltp.controllers.pids_6_100.sh new file mode 100755 index 0000000..250fa7a --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_6_100.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-923306673 +# @用例名称: ltp.controllers.pids_6_100 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_6_100 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_6_100 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_6_2.sh b/testcase/controllers/ltp.controllers.pids_6_2.sh new file mode 100755 index 0000000..3b869c7 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_6_2.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-897371585 +# @用例名称: ltp.controllers.pids_6_2 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_6_2 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_6_2 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_6_50.sh b/testcase/controllers/ltp.controllers.pids_6_50.sh new file mode 100755 index 0000000..b4b0d8f --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_6_50.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-914736473 +# @用例名称: ltp.controllers.pids_6_50 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_6_50 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_6_50 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_7_10.sh b/testcase/controllers/ltp.controllers.pids_7_10.sh new file mode 100755 index 0000000..4b1a294 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_7_10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-932008077 +# @用例名称: ltp.controllers.pids_7_10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_7_10 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_7_10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_7_100.sh b/testcase/controllers/ltp.controllers.pids_7_100.sh new file mode 100755 index 0000000..93f7029 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_7_100.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-951616525 +# @用例名称: ltp.controllers.pids_7_100 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_7_100 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_7_100 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_7_1000.sh b/testcase/controllers/ltp.controllers.pids_7_1000.sh new file mode 100755 index 0000000..fbca56a --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_7_1000.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-968762914 +# @用例名称: ltp.controllers.pids_7_1000 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_7_1000 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_7_1000 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_7_50.sh b/testcase/controllers/ltp.controllers.pids_7_50.sh new file mode 100755 index 0000000..baf0581 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_7_50.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-940578477 +# @用例名称: ltp.controllers.pids_7_50 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_7_50 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_7_50 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_7_500.sh b/testcase/controllers/ltp.controllers.pids_7_500.sh new file mode 100755 index 0000000..6f26563 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_7_500.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-960247548 +# @用例名称: ltp.controllers.pids_7_500 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_7_500 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_7_500 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_8_10.sh b/testcase/controllers/ltp.controllers.pids_8_10.sh new file mode 100755 index 0000000..08cd226 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_8_10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-986182005 +# @用例名称: ltp.controllers.pids_8_10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_8_10 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_8_10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_8_100.sh b/testcase/controllers/ltp.controllers.pids_8_100.sh new file mode 100755 index 0000000..1481f64 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_8_100.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-003316963 +# @用例名称: ltp.controllers.pids_8_100 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_8_100 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_8_100 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_8_2.sh b/testcase/controllers/ltp.controllers.pids_8_2.sh new file mode 100755 index 0000000..e079ae8 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_8_2.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-977241051 +# @用例名称: ltp.controllers.pids_8_2 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_8_2 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_8_2 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_8_50.sh b/testcase/controllers/ltp.controllers.pids_8_50.sh new file mode 100755 index 0000000..b76e7e5 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_8_50.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212951-994686401 +# @用例名称: ltp.controllers.pids_8_50 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_8_50 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_8_50 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_9_10.sh b/testcase/controllers/ltp.controllers.pids_9_10.sh new file mode 100755 index 0000000..6fb2fd6 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_9_10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-020830690 +# @用例名称: ltp.controllers.pids_9_10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_9_10 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_9_10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_9_100.sh b/testcase/controllers/ltp.controllers.pids_9_100.sh new file mode 100755 index 0000000..fdd7f3d --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_9_100.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-042416828 +# @用例名称: ltp.controllers.pids_9_100 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_9_100 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_9_100 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_9_2.sh b/testcase/controllers/ltp.controllers.pids_9_2.sh new file mode 100755 index 0000000..499cce8 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_9_2.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-012249681 +# @用例名称: ltp.controllers.pids_9_2 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_9_2 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_9_2 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/controllers/ltp.controllers.pids_9_50.sh b/testcase/controllers/ltp.controllers.pids_9_50.sh new file mode 100755 index 0000000..56988f7 --- /dev/null +++ b/testcase/controllers/ltp.controllers.pids_9_50.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-033876374 +# @用例名称: ltp.controllers.pids_9_50 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.controllers.pids_9_50 + # @预期结果:1: 用例返回0 + ltp_run_testcase controllers pids_9_50 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug02.sh b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug02.sh new file mode 100755 index 0000000..53e0822 --- /dev/null +++ b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-056413804 +# @用例名称: ltp.cpuhotplug.cpuhotplug02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cpuhotplug.cpuhotplug02 + # @预期结果:1: 用例返回0 + ltp_run_testcase cpuhotplug cpuhotplug02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug03.sh b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug03.sh new file mode 100755 index 0000000..c30616a --- /dev/null +++ b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-066804060 +# @用例名称: ltp.cpuhotplug.cpuhotplug03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cpuhotplug.cpuhotplug03 + # @预期结果:1: 用例返回0 + ltp_run_testcase cpuhotplug cpuhotplug03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug04.sh b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug04.sh new file mode 100755 index 0000000..e7c4942 --- /dev/null +++ b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-075782072 +# @用例名称: ltp.cpuhotplug.cpuhotplug04 +# @用例级别: 3 +# @用例标签: aarch64不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cpuhotplug.cpuhotplug04 + # @预期结果:1: 用例返回0 + ltp_run_testcase cpuhotplug cpuhotplug04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug05.sh b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug05.sh new file mode 100755 index 0000000..8963655 --- /dev/null +++ b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-084380644 +# @用例名称: ltp.cpuhotplug.cpuhotplug05 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cpuhotplug.cpuhotplug05 + # @预期结果:1: 用例返回0 + ltp_run_testcase cpuhotplug cpuhotplug05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug06.sh b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug06.sh new file mode 100755 index 0000000..b689dd3 --- /dev/null +++ b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-092949681 +# @用例名称: ltp.cpuhotplug.cpuhotplug06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cpuhotplug.cpuhotplug06 + # @预期结果:1: 用例返回0 + ltp_run_testcase cpuhotplug cpuhotplug06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug07.sh b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug07.sh new file mode 100755 index 0000000..97c4214 --- /dev/null +++ b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-105911209 +# @用例名称: ltp.cpuhotplug.cpuhotplug07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cpuhotplug.cpuhotplug07 + # @预期结果:1: 用例返回0 + ltp_run_testcase cpuhotplug cpuhotplug07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/crashme/ltp.crashme.crash01.sh b/testcase/crashme/ltp.crashme.crash01.sh new file mode 100755 index 0000000..11450b8 --- /dev/null +++ b/testcase/crashme/ltp.crashme.crash01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-129824152 +# @用例名称: ltp.crashme.crash01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.crashme.crash01 + # @预期结果:1: 用例返回0 + ltp_run_testcase crashme crash01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/crashme/ltp.crashme.crash02.sh b/testcase/crashme/ltp.crashme.crash02.sh new file mode 100755 index 0000000..fc93ed0 --- /dev/null +++ b/testcase/crashme/ltp.crashme.crash02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-140406016 +# @用例名称: ltp.crashme.crash02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.crashme.crash02 + # @预期结果:1: 用例返回0 + ltp_run_testcase crashme crash02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/crashme/ltp.crashme.f00f.sh b/testcase/crashme/ltp.crashme.f00f.sh new file mode 100755 index 0000000..8ab5224 --- /dev/null +++ b/testcase/crashme/ltp.crashme.f00f.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-118167837 +# @用例名称: ltp.crashme.f00f +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.crashme.f00f + # @预期结果:1: 用例返回0 + ltp_run_testcase crashme f00f + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/crypto/ltp.crypto.af_alg01.sh b/testcase/crypto/ltp.crypto.af_alg01.sh new file mode 100755 index 0000000..dc5e87a --- /dev/null +++ b/testcase/crypto/ltp.crypto.af_alg01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-163917007 +# @用例名称: ltp.crypto.af_alg01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.crypto.af_alg01 + # @预期结果:1: 用例返回0 + ltp_run_testcase crypto af_alg01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/crypto/ltp.crypto.af_alg02.sh b/testcase/crypto/ltp.crypto.af_alg02.sh new file mode 100755 index 0000000..c4f2d53 --- /dev/null +++ b/testcase/crypto/ltp.crypto.af_alg02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-172443584 +# @用例名称: ltp.crypto.af_alg02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.crypto.af_alg02 + # @预期结果:1: 用例返回0 + ltp_run_testcase crypto af_alg02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/crypto/ltp.crypto.af_alg03.sh b/testcase/crypto/ltp.crypto.af_alg03.sh new file mode 100755 index 0000000..b24dfc7 --- /dev/null +++ b/testcase/crypto/ltp.crypto.af_alg03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-180913125 +# @用例名称: ltp.crypto.af_alg03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.crypto.af_alg03 + # @预期结果:1: 用例返回0 + ltp_run_testcase crypto af_alg03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/crypto/ltp.crypto.af_alg04.sh b/testcase/crypto/ltp.crypto.af_alg04.sh new file mode 100755 index 0000000..9ea77f6 --- /dev/null +++ b/testcase/crypto/ltp.crypto.af_alg04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-190402144 +# @用例名称: ltp.crypto.af_alg04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.crypto.af_alg04 + # @预期结果:1: 用例返回0 + ltp_run_testcase crypto af_alg04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/crypto/ltp.crypto.af_alg05.sh b/testcase/crypto/ltp.crypto.af_alg05.sh new file mode 100755 index 0000000..6a9d19a --- /dev/null +++ b/testcase/crypto/ltp.crypto.af_alg05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-198908844 +# @用例名称: ltp.crypto.af_alg05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.crypto.af_alg05 + # @预期结果:1: 用例返回0 + ltp_run_testcase crypto af_alg05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/crypto/ltp.crypto.af_alg06.sh b/testcase/crypto/ltp.crypto.af_alg06.sh new file mode 100755 index 0000000..513a89c --- /dev/null +++ b/testcase/crypto/ltp.crypto.af_alg06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-207427968 +# @用例名称: ltp.crypto.af_alg06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.crypto.af_alg06 + # @预期结果:1: 用例返回0 + ltp_run_testcase crypto af_alg06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/crypto/ltp.crypto.af_alg07.sh b/testcase/crypto/ltp.crypto.af_alg07.sh new file mode 100755 index 0000000..6fa0679 --- /dev/null +++ b/testcase/crypto/ltp.crypto.af_alg07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-216022783 +# @用例名称: ltp.crypto.af_alg07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.crypto.af_alg07 + # @预期结果:1: 用例返回0 + ltp_run_testcase crypto af_alg07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/crypto/ltp.crypto.crypto_user01.sh b/testcase/crypto/ltp.crypto.crypto_user01.sh new file mode 100755 index 0000000..86d2010 --- /dev/null +++ b/testcase/crypto/ltp.crypto.crypto_user01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-233067603 +# @用例名称: ltp.crypto.crypto_user01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.crypto.crypto_user01 + # @预期结果:1: 用例返回0 + ltp_run_testcase crypto crypto_user01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/crypto/ltp.crypto.crypto_user02.sh b/testcase/crypto/ltp.crypto.crypto_user02.sh new file mode 100755 index 0000000..9a3b56e --- /dev/null +++ b/testcase/crypto/ltp.crypto.crypto_user02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-241532365 +# @用例名称: ltp.crypto.crypto_user02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.crypto.crypto_user02 + # @预期结果:1: 用例返回0 + ltp_run_testcase crypto crypto_user02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/crypto/ltp.crypto.pcrypt_aead01.sh b/testcase/crypto/ltp.crypto.pcrypt_aead01.sh new file mode 100755 index 0000000..e21d11b --- /dev/null +++ b/testcase/crypto/ltp.crypto.pcrypt_aead01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-224509456 +# @用例名称: ltp.crypto.pcrypt_aead01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.crypto.pcrypt_aead01 + # @预期结果:1: 用例返回0 + ltp_run_testcase crypto pcrypt_aead01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2011-0999.sh b/testcase/cve/ltp.cve.cve-2011-0999.sh new file mode 100755 index 0000000..7877a0c --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2011-0999.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-252925076 +# @用例名称: ltp.cve.cve-2011-0999 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2011-0999 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2011-0999 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2011-2183.sh b/testcase/cve/ltp.cve.cve-2011-2183.sh new file mode 100755 index 0000000..36dd397 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2011-2183.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-261718974 +# @用例名称: ltp.cve.cve-2011-2183 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2011-2183 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2011-2183 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2011-2496.sh b/testcase/cve/ltp.cve.cve-2011-2496.sh new file mode 100755 index 0000000..25fb73e --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2011-2496.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-270475141 +# @用例名称: ltp.cve.cve-2011-2496 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2011-2496 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2011-2496 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2012-0957.sh b/testcase/cve/ltp.cve.cve-2012-0957.sh new file mode 100755 index 0000000..dba77d4 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2012-0957.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-279046362 +# @用例名称: ltp.cve.cve-2012-0957 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2012-0957 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2012-0957 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2014-0196.sh b/testcase/cve/ltp.cve.cve-2014-0196.sh new file mode 100755 index 0000000..23f709f --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2014-0196.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-287436254 +# @用例名称: ltp.cve.cve-2014-0196 +# @用例级别: 1 +# @用例标签: CVE +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2014-0196 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2014-0196 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2015-0235.sh b/testcase/cve/ltp.cve.cve-2015-0235.sh new file mode 100755 index 0000000..4b4841c --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2015-0235.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-295784558 +# @用例名称: ltp.cve.cve-2015-0235 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2015-0235 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2015-0235 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2015-3290.sh b/testcase/cve/ltp.cve.cve-2015-3290.sh new file mode 100755 index 0000000..6093dee --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2015-3290.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-320907806 +# @用例名称: ltp.cve.cve-2015-3290 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2015-3290 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2015-3290 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2015-7550.sh b/testcase/cve/ltp.cve.cve-2015-7550.sh new file mode 100755 index 0000000..5c27b2e --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2015-7550.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-304179288 +# @用例名称: ltp.cve.cve-2015-7550 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2015-7550 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2015-7550 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2016-10044.sh b/testcase/cve/ltp.cve.cve-2016-10044.sh new file mode 100755 index 0000000..13504ce --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2016-10044.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-392399834 +# @用例名称: ltp.cve.cve-2016-10044 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2016-10044 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2016-10044 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2016-4470.sh b/testcase/cve/ltp.cve.cve-2016-4470.sh new file mode 100755 index 0000000..ae4ccfc --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2016-4470.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-312567287 +# @用例名称: ltp.cve.cve-2016-4470 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2016-4470 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2016-4470 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2016-4997.sh b/testcase/cve/ltp.cve.cve-2016-4997.sh new file mode 100755 index 0000000..319c45e --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2016-4997.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-329527638 +# @用例名称: ltp.cve.cve-2016-4997 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2016-4997 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2016-4997 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2016-5195.sh b/testcase/cve/ltp.cve.cve-2016-5195.sh new file mode 100755 index 0000000..ab876c4 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2016-5195.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-338140928 +# @用例名称: ltp.cve.cve-2016-5195 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2016-5195 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2016-5195 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2016-7042.sh b/testcase/cve/ltp.cve.cve-2016-7042.sh new file mode 100755 index 0000000..d7acf4c --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2016-7042.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-346854696 +# @用例名称: ltp.cve.cve-2016-7042 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2016-7042 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2016-7042 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2016-7117.sh b/testcase/cve/ltp.cve.cve-2016-7117.sh new file mode 100755 index 0000000..2ecad72 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2016-7117.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-355603039 +# @用例名称: ltp.cve.cve-2016-7117 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2016-7117 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2016-7117 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2016-8655.sh b/testcase/cve/ltp.cve.cve-2016-8655.sh new file mode 100755 index 0000000..258b8c2 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2016-8655.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-366315357 +# @用例名称: ltp.cve.cve-2016-8655 +# @用例级别: 3 +# @用例标签: CVE +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2016-8655 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2016-8655 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2016-9604.sh b/testcase/cve/ltp.cve.cve-2016-9604.sh new file mode 100755 index 0000000..61a530d --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2016-9604.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-374947932 +# @用例名称: ltp.cve.cve-2016-9604 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2016-9604 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2016-9604 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2016-9793.sh b/testcase/cve/ltp.cve.cve-2016-9793.sh new file mode 100755 index 0000000..c26a580 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2016-9793.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-383716032 +# @用例名称: ltp.cve.cve-2016-9793 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2016-9793 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2016-9793 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-1000111.sh b/testcase/cve/ltp.cve.cve-2017-1000111.sh new file mode 100755 index 0000000..db87171 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-1000111.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-640230411 +# @用例名称: ltp.cve.cve-2017-1000111 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-1000111 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-1000111 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-1000112.sh b/testcase/cve/ltp.cve.cve-2017-1000112.sh new file mode 100755 index 0000000..fa5cfc9 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-1000112.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-648954598 +# @用例名称: ltp.cve.cve-2017-1000112 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-1000112 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-1000112 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-1000364.sh b/testcase/cve/ltp.cve.cve-2017-1000364.sh new file mode 100755 index 0000000..d4f45ea --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-1000364.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-573118090 +# @用例名称: ltp.cve.cve-2017-1000364 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-1000364 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-1000364 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-1000380.sh b/testcase/cve/ltp.cve.cve-2017-1000380.sh new file mode 100755 index 0000000..44c748a --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-1000380.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-659111426 +# @用例名称: ltp.cve.cve-2017-1000380 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-1000380 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-1000380 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-1000405.sh b/testcase/cve/ltp.cve.cve-2017-1000405.sh new file mode 100755 index 0000000..1cde424 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-1000405.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-669392677 +# @用例名称: ltp.cve.cve-2017-1000405 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-1000405 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-1000405 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-10661.sh b/testcase/cve/ltp.cve.cve-2017-10661.sh new file mode 100755 index 0000000..9be2a16 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-10661.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-466429411 +# @用例名称: ltp.cve.cve-2017-10661 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-10661 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-10661 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-12192.sh b/testcase/cve/ltp.cve.cve-2017-12192.sh new file mode 100755 index 0000000..bcea3b3 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-12192.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-475184185 +# @用例名称: ltp.cve.cve-2017-12192 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-12192 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-12192 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-12193.sh b/testcase/cve/ltp.cve.cve-2017-12193.sh new file mode 100755 index 0000000..3f6a86d --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-12193.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-483908383 +# @用例名称: ltp.cve.cve-2017-12193 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-12193 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-12193 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-15274.sh b/testcase/cve/ltp.cve.cve-2017-15274.sh new file mode 100755 index 0000000..c8ebf4e --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-15274.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-492447644 +# @用例名称: ltp.cve.cve-2017-15274 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-15274 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-15274 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-15299.sh b/testcase/cve/ltp.cve.cve-2017-15299.sh new file mode 100755 index 0000000..2e62535 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-15299.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-501013335 +# @用例名称: ltp.cve.cve-2017-15299 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-15299 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-15299 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-15537.sh b/testcase/cve/ltp.cve.cve-2017-15537.sh new file mode 100755 index 0000000..bbaf01d --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-15537.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-509710862 +# @用例名称: ltp.cve.cve-2017-15537 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-15537 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-15537 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-15649.sh b/testcase/cve/ltp.cve.cve-2017-15649.sh new file mode 100755 index 0000000..05c29b8 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-15649.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-518376480 +# @用例名称: ltp.cve.cve-2017-15649 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-15649 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-15649 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-15951.sh b/testcase/cve/ltp.cve.cve-2017-15951.sh new file mode 100755 index 0000000..c042cb4 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-15951.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-527009778 +# @用例名称: ltp.cve.cve-2017-15951 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-15951 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-15951 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-16939.sh b/testcase/cve/ltp.cve.cve-2017-16939.sh new file mode 100755 index 0000000..f3ea450 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-16939.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-603808456 +# @用例名称: ltp.cve.cve-2017-16939 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-16939 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-16939 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-16995.sh b/testcase/cve/ltp.cve.cve-2017-16995.sh new file mode 100755 index 0000000..b7464c1 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-16995.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-614253305 +# @用例名称: ltp.cve.cve-2017-16995 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-16995 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-16995 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-17052.sh b/testcase/cve/ltp.cve.cve-2017-17052.sh new file mode 100755 index 0000000..231da9f --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-17052.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-594895266 +# @用例名称: ltp.cve.cve-2017-17052 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-17052 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-17052 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-17053.sh b/testcase/cve/ltp.cve.cve-2017-17053.sh new file mode 100755 index 0000000..b665178 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-17053.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-622942707 +# @用例名称: ltp.cve.cve-2017-17053 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-17053 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-17053 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-17712.sh b/testcase/cve/ltp.cve.cve-2017-17712.sh new file mode 100755 index 0000000..9122a7f --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-17712.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-535544961 +# @用例名称: ltp.cve.cve-2017-17712 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-17712 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-17712 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-17805.sh b/testcase/cve/ltp.cve.cve-2017-17805.sh new file mode 100755 index 0000000..83afe95 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-17805.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-544138995 +# @用例名称: ltp.cve.cve-2017-17805 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-17805 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-17805 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-17806.sh b/testcase/cve/ltp.cve.cve-2017-17806.sh new file mode 100755 index 0000000..ba46d99 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-17806.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-552742827 +# @用例名称: ltp.cve.cve-2017-17806 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-17806 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-17806 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-17807.sh b/testcase/cve/ltp.cve.cve-2017-17807.sh new file mode 100755 index 0000000..89f49cd --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-17807.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-561759402 +# @用例名称: ltp.cve.cve-2017-17807 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-17807 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-17807 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-18075.sh b/testcase/cve/ltp.cve.cve-2017-18075.sh new file mode 100755 index 0000000..7e1ace2 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-18075.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-631538274 +# @用例名称: ltp.cve.cve-2017-18075 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-18075 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-18075 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-18344.sh b/testcase/cve/ltp.cve.cve-2017-18344.sh new file mode 100755 index 0000000..fbb8282 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-18344.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172825-910199422 +# @用例名称: ltp.cve.cve-2017-18344 +# @用例级别: 3 +# @用例标签: CVE +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-18344 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-18344 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-2618.sh b/testcase/cve/ltp.cve.cve-2017-2618.sh new file mode 100755 index 0000000..088868c --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-2618.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-401041497 +# @用例名称: ltp.cve.cve-2017-2618 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-2618 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-2618 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-2636.sh b/testcase/cve/ltp.cve.cve-2017-2636.sh new file mode 100755 index 0000000..cbe5b0e --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-2636.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-409767297 +# @用例名称: ltp.cve.cve-2017-2636 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-2636 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-2636 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-2671.sh b/testcase/cve/ltp.cve.cve-2017-2671.sh new file mode 100755 index 0000000..54721c8 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-2671.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-419703383 +# @用例名称: ltp.cve.cve-2017-2671 +# @用例级别: 1 +# @用例标签: CVE +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-2671 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-2671 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-5754.sh b/testcase/cve/ltp.cve.cve-2017-5754.sh new file mode 100755 index 0000000..1da8401 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-5754.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-581920373 +# @用例名称: ltp.cve.cve-2017-5754 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-5754 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-5754 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-6951.sh b/testcase/cve/ltp.cve.cve-2017-6951.sh new file mode 100755 index 0000000..126326d --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-6951.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-429500748 +# @用例名称: ltp.cve.cve-2017-6951 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-6951 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-6951 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-7308.sh b/testcase/cve/ltp.cve.cve-2017-7308.sh new file mode 100755 index 0000000..eefcb21 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-7308.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-438051641 +# @用例名称: ltp.cve.cve-2017-7308 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-7308 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-7308 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-7472.sh b/testcase/cve/ltp.cve.cve-2017-7472.sh new file mode 100755 index 0000000..6438527 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-7472.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-449127710 +# @用例名称: ltp.cve.cve-2017-7472 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-7472 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-7472 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-7616.sh b/testcase/cve/ltp.cve.cve-2017-7616.sh new file mode 100755 index 0000000..19d9664 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-7616.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-457841127 +# @用例名称: ltp.cve.cve-2017-7616 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-7616 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-7616 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2017-8890.sh b/testcase/cve/ltp.cve.cve-2017-8890.sh new file mode 100755 index 0000000..ea31bcc --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2017-8890.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172825-838739068 +# @用例名称: ltp.cve.cve-2017-8890 +# @用例级别: 3 +# @用例标签: CVE +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2017-8890 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2017-8890 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2018-1000001.sh b/testcase/cve/ltp.cve.cve-2018-1000001.sh new file mode 100755 index 0000000..5422b26 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2018-1000001.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-723150647 +# @用例名称: ltp.cve.cve-2018-1000001 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2018-1000001 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2018-1000001 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2018-1000199.sh b/testcase/cve/ltp.cve.cve-2018-1000199.sh new file mode 100755 index 0000000..ed015ee --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2018-1000199.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-732088874 +# @用例名称: ltp.cve.cve-2018-1000199 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2018-1000199 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2018-1000199 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2018-1000204.sh b/testcase/cve/ltp.cve.cve-2018-1000204.sh new file mode 100755 index 0000000..1b249b5 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2018-1000204.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-741076936 +# @用例名称: ltp.cve.cve-2018-1000204 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2018-1000204 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2018-1000204 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2018-10124.sh b/testcase/cve/ltp.cve.cve-2018-10124.sh new file mode 100755 index 0000000..8df4ea3 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2018-10124.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-714420458 +# @用例名称: ltp.cve.cve-2018-10124 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2018-10124 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2018-10124 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2018-11508.sh b/testcase/cve/ltp.cve.cve-2018-11508.sh new file mode 100755 index 0000000..284c526 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2018-11508.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172826-055232445 +# @用例名称: ltp.cve.cve-2018-11508 +# @用例级别: 3 +# @用例标签: CVE +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2018-11508 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2018-11508 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2018-12896.sh b/testcase/cve/ltp.cve.cve-2018-12896.sh new file mode 100755 index 0000000..2ba2ed4 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2018-12896.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-749792426 +# @用例名称: ltp.cve.cve-2018-12896 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2018-12896 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2018-12896 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2018-13405.sh b/testcase/cve/ltp.cve.cve-2018-13405.sh new file mode 100755 index 0000000..7909d48 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2018-13405.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-758473052 +# @用例名称: ltp.cve.cve-2018-13405 +# @用例级别: 4 +# @用例标签: CVE 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2018-13405 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2018-13405 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2018-18445.sh b/testcase/cve/ltp.cve.cve-2018-18445.sh new file mode 100755 index 0000000..77f1df8 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2018-18445.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-767178555 +# @用例名称: ltp.cve.cve-2018-18445 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2018-18445 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2018-18445 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2018-18559.sh b/testcase/cve/ltp.cve.cve-2018-18559.sh new file mode 100755 index 0000000..ae07fd0 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2018-18559.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-778675071 +# @用例名称: ltp.cve.cve-2018-18559 +# @用例级别: 1 +# @用例标签: CVE +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2018-18559 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2018-18559 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2018-18955.sh b/testcase/cve/ltp.cve.cve-2018-18955.sh new file mode 100755 index 0000000..a824e27 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2018-18955.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-787268343 +# @用例名称: ltp.cve.cve-2018-18955 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2018-18955 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2018-18955 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2018-19854.sh b/testcase/cve/ltp.cve.cve-2018-19854.sh new file mode 100755 index 0000000..2faecb4 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2018-19854.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-795805901 +# @用例名称: ltp.cve.cve-2018-19854 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2018-19854 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2018-19854 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2018-5803.sh b/testcase/cve/ltp.cve.cve-2018-5803.sh new file mode 100755 index 0000000..73f4df9 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2018-5803.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-678262037 +# @用例名称: ltp.cve.cve-2018-5803 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2018-5803 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2018-5803 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2018-6927.sh b/testcase/cve/ltp.cve.cve-2018-6927.sh new file mode 100755 index 0000000..fc0e64a --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2018-6927.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172825-982755415 +# @用例名称: ltp.cve.cve-2018-6927 +# @用例级别: 3 +# @用例标签: CVE +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2018-6927 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2018-6927 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2018-7566.sh b/testcase/cve/ltp.cve.cve-2018-7566.sh new file mode 100755 index 0000000..d2fde8b --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2018-7566.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-686776161 +# @用例名称: ltp.cve.cve-2018-7566 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2018-7566 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2018-7566 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2018-8897.sh b/testcase/cve/ltp.cve.cve-2018-8897.sh new file mode 100755 index 0000000..d0062dc --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2018-8897.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-695567134 +# @用例名称: ltp.cve.cve-2018-8897 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2018-8897 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2018-8897 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2018-9568.sh b/testcase/cve/ltp.cve.cve-2018-9568.sh new file mode 100755 index 0000000..4185bbd --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2018-9568.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-705505433 +# @用例名称: ltp.cve.cve-2018-9568 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2018-9568 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2018-9568 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2019-8912.sh b/testcase/cve/ltp.cve.cve-2019-8912.sh new file mode 100755 index 0000000..4f24ff6 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2019-8912.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-804359529 +# @用例名称: ltp.cve.cve-2019-8912 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2019-8912 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2019-8912 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2020-11494.sh b/testcase/cve/ltp.cve.cve-2020-11494.sh new file mode 100755 index 0000000..cb83d4a --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2020-11494.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-812936471 +# @用例名称: ltp.cve.cve-2020-11494 +# @用例级别: 3 +# @用例标签: CVE aarch64不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2020-11494 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2020-11494 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2020-14386.sh b/testcase/cve/ltp.cve.cve-2020-14386.sh new file mode 100755 index 0000000..45d1180 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2020-14386.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-821635642 +# @用例名称: ltp.cve.cve-2020-14386 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2020-14386 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2020-14386 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2020-14416.sh b/testcase/cve/ltp.cve.cve-2020-14416.sh new file mode 100755 index 0000000..e2cf781 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2020-14416.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-830235978 +# @用例名称: ltp.cve.cve-2020-14416 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2020-14416 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2020-14416 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2020-25704.sh b/testcase/cve/ltp.cve.cve-2020-25704.sh new file mode 100755 index 0000000..3de7ad7 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2020-25704.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-891910211 +# @用例名称: ltp.cve.cve-2020-25704 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2020-25704 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2020-25704 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2020-25705.sh b/testcase/cve/ltp.cve.cve-2020-25705.sh new file mode 100755 index 0000000..c991b5e --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2020-25705.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-838939045 +# @用例名称: ltp.cve.cve-2020-25705 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2020-25705 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2020-25705 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2020-29373.sh b/testcase/cve/ltp.cve.cve-2020-29373.sh new file mode 100755 index 0000000..9370e4b --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2020-29373.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-847462597 +# @用例名称: ltp.cve.cve-2020-29373 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2020-29373 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2020-29373 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2020-36557.sh b/testcase/cve/ltp.cve.cve-2020-36557.sh new file mode 100755 index 0000000..36c92bb --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2020-36557.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172826-129054458 +# @用例名称: ltp.cve.cve-2020-36557 +# @用例级别: 3 +# @用例标签: CVE +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2020-36557 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2020-36557 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2021-22555.sh b/testcase/cve/ltp.cve.cve-2021-22555.sh new file mode 100755 index 0000000..2cbc26f --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2021-22555.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-873585366 +# @用例名称: ltp.cve.cve-2021-22555 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2021-22555 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2021-22555 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2021-22600.sh b/testcase/cve/ltp.cve.cve-2021-22600.sh new file mode 100755 index 0000000..4d7492a --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2021-22600.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141847-773167827 +# @用例名称: ltp.cve.cve-2021-22600 +# @用例级别: 3 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2021-22600 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2021-22600 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2021-26708.sh b/testcase/cve/ltp.cve.cve-2021-26708.sh new file mode 100755 index 0000000..3c1012e --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2021-26708.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-882366620 +# @用例名称: ltp.cve.cve-2021-26708 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2021-26708 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2021-26708 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2021-3444.sh b/testcase/cve/ltp.cve.cve-2021-3444.sh new file mode 100755 index 0000000..9696158 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2021-3444.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-856164883 +# @用例名称: ltp.cve.cve-2021-3444 +# @用例级别: 1 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2021-3444 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2021-3444 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2021-3609.sh b/testcase/cve/ltp.cve.cve-2021-3609.sh new file mode 100755 index 0000000..c8a26bd --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2021-3609.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-864957770 +# @用例名称: ltp.cve.cve-2021-3609 +# @用例级别: 3 +# @用例标签: CVE aarch64不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2021-3609 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2021-3609 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2021-38604.sh b/testcase/cve/ltp.cve.cve-2021-38604.sh new file mode 100755 index 0000000..46ba0a5 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2021-38604.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141847-836412952 +# @用例名称: ltp.cve.cve-2021-38604 +# @用例级别: 4 +# @用例标签: CVE 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2021-38604 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2021-38604 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2021-4034.sh b/testcase/cve/ltp.cve.cve-2021-4034.sh new file mode 100755 index 0000000..c3ceb98 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2021-4034.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141847-707137799 +# @用例名称: ltp.cve.cve-2021-4034 +# @用例级别: 3 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2021-4034 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2021-4034 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2021-4197_1.sh b/testcase/cve/ltp.cve.cve-2021-4197_1.sh new file mode 100755 index 0000000..79f04fc --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2021-4197_1.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172826-207165799 +# @用例名称: ltp.cve.cve-2021-4197_1 +# @用例级别: 3 +# @用例标签: CVE +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2021-4197_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2021-4197_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2021-4197_2.sh b/testcase/cve/ltp.cve.cve-2021-4197_2.sh new file mode 100755 index 0000000..2e6ecf8 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2021-4197_2.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172826-285606895 +# @用例名称: ltp.cve.cve-2021-4197_2 +# @用例级别: 3 +# @用例标签: CVE +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2021-4197_2 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2021-4197_2 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2021-4204.sh b/testcase/cve/ltp.cve.cve-2021-4204.sh new file mode 100755 index 0000000..96f6935 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2021-4204.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172826-360880308 +# @用例名称: ltp.cve.cve-2021-4204 +# @用例级别: 3 +# @用例标签: CVE +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2021-4204 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2021-4204 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2022-0185.sh b/testcase/cve/ltp.cve.cve-2022-0185.sh new file mode 100755 index 0000000..ed67d6f --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2022-0185.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141848-026523165 +# @用例名称: ltp.cve.cve-2022-0185 +# @用例级别: 3 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2022-0185 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2022-0185 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2022-0847.sh b/testcase/cve/ltp.cve.cve-2022-0847.sh new file mode 100755 index 0000000..edba6cf --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2022-0847.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141847-899902045 +# @用例名称: ltp.cve.cve-2022-0847 +# @用例级别: 3 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2022-0847 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2022-0847 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2022-23222.sh b/testcase/cve/ltp.cve.cve-2022-23222.sh new file mode 100755 index 0000000..72f5ade --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2022-23222.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172826-437449460 +# @用例名称: ltp.cve.cve-2022-23222 +# @用例级别: 3 +# @用例标签: CVE +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2022-23222 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2022-23222 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2022-2590.sh b/testcase/cve/ltp.cve.cve-2022-2590.sh new file mode 100755 index 0000000..d36b186 --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2022-2590.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141847-962214922 +# @用例名称: ltp.cve.cve-2022-2590 +# @用例级别: 3 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2022-2590 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2022-2590 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2022-4378.sh b/testcase/cve/ltp.cve.cve-2022-4378.sh new file mode 100755 index 0000000..7e35cbc --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2022-4378.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141848-095793775 +# @用例名称: ltp.cve.cve-2022-4378 +# @用例级别: 3 +# @用例标签: CVE +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2022-4378 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2022-4378 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2023-0461.sh b/testcase/cve/ltp.cve.cve-2023-0461.sh new file mode 100755 index 0000000..598460a --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2023-0461.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172826-596078084 +# @用例名称: ltp.cve.cve-2023-0461 +# @用例级别: 3 +# @用例标签: CVE +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2023-0461 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2023-0461 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2023-1829.sh b/testcase/cve/ltp.cve.cve-2023-1829.sh new file mode 100755 index 0000000..3f4402d --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2023-1829.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172826-520437823 +# @用例名称: ltp.cve.cve-2023-1829 +# @用例级别: 3 +# @用例标签: CVE +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2023-1829 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2023-1829 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/cve/ltp.cve.cve-2023-31248.sh b/testcase/cve/ltp.cve.cve-2023-31248.sh new file mode 100755 index 0000000..d56ce7d --- /dev/null +++ b/testcase/cve/ltp.cve.cve-2023-31248.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172826-669196161 +# @用例名称: ltp.cve.cve-2023-31248 +# @用例级别: 3 +# @用例标签: CVE +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.cve.cve-2023-31248 + # @预期结果:1: 用例返回0 + ltp_run_testcase cve cve-2023-31248 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio01.sh b/testcase/dio/ltp.dio.dio01.sh new file mode 100755 index 0000000..1c5038d --- /dev/null +++ b/testcase/dio/ltp.dio.dio01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-904203267 +# @用例名称: ltp.dio.dio01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio01 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio02.sh b/testcase/dio/ltp.dio.dio02.sh new file mode 100755 index 0000000..ada380f --- /dev/null +++ b/testcase/dio/ltp.dio.dio02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-912767115 +# @用例名称: ltp.dio.dio02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio02 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio03.sh b/testcase/dio/ltp.dio.dio03.sh new file mode 100755 index 0000000..5daea65 --- /dev/null +++ b/testcase/dio/ltp.dio.dio03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-921510528 +# @用例名称: ltp.dio.dio03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio03 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio04.sh b/testcase/dio/ltp.dio.dio04.sh new file mode 100755 index 0000000..31f045b --- /dev/null +++ b/testcase/dio/ltp.dio.dio04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-930162330 +# @用例名称: ltp.dio.dio04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio04 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio05.sh b/testcase/dio/ltp.dio.dio05.sh new file mode 100755 index 0000000..040e96d --- /dev/null +++ b/testcase/dio/ltp.dio.dio05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-938824341 +# @用例名称: ltp.dio.dio05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio05 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio06.sh b/testcase/dio/ltp.dio.dio06.sh new file mode 100755 index 0000000..13032e4 --- /dev/null +++ b/testcase/dio/ltp.dio.dio06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-947422222 +# @用例名称: ltp.dio.dio06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio06 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio07.sh b/testcase/dio/ltp.dio.dio07.sh new file mode 100755 index 0000000..97764c0 --- /dev/null +++ b/testcase/dio/ltp.dio.dio07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-959033703 +# @用例名称: ltp.dio.dio07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio07 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio08.sh b/testcase/dio/ltp.dio.dio08.sh new file mode 100755 index 0000000..e3f6289 --- /dev/null +++ b/testcase/dio/ltp.dio.dio08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-967638267 +# @用例名称: ltp.dio.dio08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio08 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio09.sh b/testcase/dio/ltp.dio.dio09.sh new file mode 100755 index 0000000..1173bc7 --- /dev/null +++ b/testcase/dio/ltp.dio.dio09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-977381551 +# @用例名称: ltp.dio.dio09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio09 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio10.sh b/testcase/dio/ltp.dio.dio10.sh new file mode 100755 index 0000000..5408cae --- /dev/null +++ b/testcase/dio/ltp.dio.dio10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-986064561 +# @用例名称: ltp.dio.dio10 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio10 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio11.sh b/testcase/dio/ltp.dio.dio11.sh new file mode 100755 index 0000000..13b690e --- /dev/null +++ b/testcase/dio/ltp.dio.dio11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212952-994609824 +# @用例名称: ltp.dio.dio11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio11 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio12.sh b/testcase/dio/ltp.dio.dio12.sh new file mode 100755 index 0000000..3cf0adb --- /dev/null +++ b/testcase/dio/ltp.dio.dio12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-003185243 +# @用例名称: ltp.dio.dio12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio12 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio13.sh b/testcase/dio/ltp.dio.dio13.sh new file mode 100755 index 0000000..4e5fa6c --- /dev/null +++ b/testcase/dio/ltp.dio.dio13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-016651735 +# @用例名称: ltp.dio.dio13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio13 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio14.sh b/testcase/dio/ltp.dio.dio14.sh new file mode 100755 index 0000000..6dd0114 --- /dev/null +++ b/testcase/dio/ltp.dio.dio14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-025572130 +# @用例名称: ltp.dio.dio14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio14 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio15.sh b/testcase/dio/ltp.dio.dio15.sh new file mode 100755 index 0000000..291d795 --- /dev/null +++ b/testcase/dio/ltp.dio.dio15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-034096895 +# @用例名称: ltp.dio.dio15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio15 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio16.sh b/testcase/dio/ltp.dio.dio16.sh new file mode 100755 index 0000000..8995ad2 --- /dev/null +++ b/testcase/dio/ltp.dio.dio16.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-043569042 +# @用例名称: ltp.dio.dio16 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio16 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio17.sh b/testcase/dio/ltp.dio.dio17.sh new file mode 100755 index 0000000..c6eca62 --- /dev/null +++ b/testcase/dio/ltp.dio.dio17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-052235561 +# @用例名称: ltp.dio.dio17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio17 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio18.sh b/testcase/dio/ltp.dio.dio18.sh new file mode 100755 index 0000000..c668f09 --- /dev/null +++ b/testcase/dio/ltp.dio.dio18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-067704351 +# @用例名称: ltp.dio.dio18 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio18 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio19.sh b/testcase/dio/ltp.dio.dio19.sh new file mode 100755 index 0000000..a209a5e --- /dev/null +++ b/testcase/dio/ltp.dio.dio19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-076445490 +# @用例名称: ltp.dio.dio19 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio19 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio20.sh b/testcase/dio/ltp.dio.dio20.sh new file mode 100755 index 0000000..e00ab4d --- /dev/null +++ b/testcase/dio/ltp.dio.dio20.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-085030738 +# @用例名称: ltp.dio.dio20 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio20 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio21.sh b/testcase/dio/ltp.dio.dio21.sh new file mode 100755 index 0000000..4f3d540 --- /dev/null +++ b/testcase/dio/ltp.dio.dio21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-093685755 +# @用例名称: ltp.dio.dio21 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio21 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio22.sh b/testcase/dio/ltp.dio.dio22.sh new file mode 100755 index 0000000..8a86506 --- /dev/null +++ b/testcase/dio/ltp.dio.dio22.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-105125515 +# @用例名称: ltp.dio.dio22 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio22 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio23.sh b/testcase/dio/ltp.dio.dio23.sh new file mode 100755 index 0000000..d0971b4 --- /dev/null +++ b/testcase/dio/ltp.dio.dio23.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-113702026 +# @用例名称: ltp.dio.dio23 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio23 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio23 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio24.sh b/testcase/dio/ltp.dio.dio24.sh new file mode 100755 index 0000000..1232226 --- /dev/null +++ b/testcase/dio/ltp.dio.dio24.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-122254913 +# @用例名称: ltp.dio.dio24 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio24 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio24 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio25.sh b/testcase/dio/ltp.dio.dio25.sh new file mode 100755 index 0000000..bbf3ce7 --- /dev/null +++ b/testcase/dio/ltp.dio.dio25.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-131112971 +# @用例名称: ltp.dio.dio25 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio25 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio25 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio26.sh b/testcase/dio/ltp.dio.dio26.sh new file mode 100755 index 0000000..32720d2 --- /dev/null +++ b/testcase/dio/ltp.dio.dio26.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-142656004 +# @用例名称: ltp.dio.dio26 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio26 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio26 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio27.sh b/testcase/dio/ltp.dio.dio27.sh new file mode 100755 index 0000000..be06219 --- /dev/null +++ b/testcase/dio/ltp.dio.dio27.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-151365193 +# @用例名称: ltp.dio.dio27 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio27 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio27 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio28.sh b/testcase/dio/ltp.dio.dio28.sh new file mode 100755 index 0000000..d76fd0c --- /dev/null +++ b/testcase/dio/ltp.dio.dio28.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-160044947 +# @用例名称: ltp.dio.dio28 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio28 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio28 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio29.sh b/testcase/dio/ltp.dio.dio29.sh new file mode 100755 index 0000000..fc9dedc --- /dev/null +++ b/testcase/dio/ltp.dio.dio29.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-171536975 +# @用例名称: ltp.dio.dio29 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio29 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio29 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dio/ltp.dio.dio30.sh b/testcase/dio/ltp.dio.dio30.sh new file mode 100755 index 0000000..040f77f --- /dev/null +++ b/testcase/dio/ltp.dio.dio30.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-180132411 +# @用例名称: ltp.dio.dio30 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dio.dio30 + # @预期结果:1: 用例返回0 + ltp_run_testcase dio dio30 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest1.sh b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest1.sh new file mode 100755 index 0000000..3400160 --- /dev/null +++ b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-218092604 +# @用例名称: ltp.dma_thread_diotest.dma_thread_diotest1 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dma_thread_diotest.dma_thread_diotest1 + # @预期结果:1: 用例返回0 + ltp_run_testcase dma_thread_diotest dma_thread_diotest1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest2.sh b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest2.sh new file mode 100755 index 0000000..6426c2a --- /dev/null +++ b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest2.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-226730599 +# @用例名称: ltp.dma_thread_diotest.dma_thread_diotest2 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dma_thread_diotest.dma_thread_diotest2 + # @预期结果:1: 用例返回0 + ltp_run_testcase dma_thread_diotest dma_thread_diotest2 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest3.sh b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest3.sh new file mode 100755 index 0000000..8d013c0 --- /dev/null +++ b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest3.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-235231609 +# @用例名称: ltp.dma_thread_diotest.dma_thread_diotest3 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dma_thread_diotest.dma_thread_diotest3 + # @预期结果:1: 用例返回0 + ltp_run_testcase dma_thread_diotest dma_thread_diotest3 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest4.sh b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest4.sh new file mode 100755 index 0000000..802c7a7 --- /dev/null +++ b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest4.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-243837496 +# @用例名称: ltp.dma_thread_diotest.dma_thread_diotest4 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dma_thread_diotest.dma_thread_diotest4 + # @预期结果:1: 用例返回0 + ltp_run_testcase dma_thread_diotest dma_thread_diotest4 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest5.sh b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest5.sh new file mode 100755 index 0000000..6a2197b --- /dev/null +++ b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest5.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-252601808 +# @用例名称: ltp.dma_thread_diotest.dma_thread_diotest5 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dma_thread_diotest.dma_thread_diotest5 + # @预期结果:1: 用例返回0 + ltp_run_testcase dma_thread_diotest dma_thread_diotest5 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest6.sh b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest6.sh new file mode 100755 index 0000000..c96264f --- /dev/null +++ b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-263079567 +# @用例名称: ltp.dma_thread_diotest.dma_thread_diotest6 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dma_thread_diotest.dma_thread_diotest6 + # @预期结果:1: 用例返回0 + ltp_run_testcase dma_thread_diotest dma_thread_diotest6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest7.sh b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest7.sh new file mode 100755 index 0000000..2f959be --- /dev/null +++ b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest7.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-272009539 +# @用例名称: ltp.dma_thread_diotest.dma_thread_diotest7 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.dma_thread_diotest.dma_thread_diotest7 + # @预期结果:1: 用例返回0 + ltp_run_testcase dma_thread_diotest dma_thread_diotest7 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fcntl-locktests/ltp.fcntl-locktests.FCNTL_LOCKTESTS.sh b/testcase/fcntl-locktests/ltp.fcntl-locktests.FCNTL_LOCKTESTS.sh new file mode 100755 index 0000000..d0b353f --- /dev/null +++ b/testcase/fcntl-locktests/ltp.fcntl-locktests.FCNTL_LOCKTESTS.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-282479414 +# @用例名称: ltp.fcntl-locktests.FCNTL_LOCKTESTS +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fcntl-locktests.FCNTL_LOCKTESTS + # @预期结果:1: 用例返回0 + ltp_run_testcase fcntl-locktests FCNTL_LOCKTESTS + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.binfmt_misc01.sh b/testcase/fs/ltp.fs.binfmt_misc01.sh new file mode 100755 index 0000000..96dfb28 --- /dev/null +++ b/testcase/fs/ltp.fs.binfmt_misc01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-910041822 +# @用例名称: ltp.fs.binfmt_misc01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.binfmt_misc01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs binfmt_misc01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.binfmt_misc02.sh b/testcase/fs/ltp.fs.binfmt_misc02.sh new file mode 100755 index 0000000..974dd9d --- /dev/null +++ b/testcase/fs/ltp.fs.binfmt_misc02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-918545747 +# @用例名称: ltp.fs.binfmt_misc02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.binfmt_misc02 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs binfmt_misc02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.fs_di.sh b/testcase/fs/ltp.fs.fs_di.sh new file mode 100755 index 0000000..21b639d --- /dev/null +++ b/testcase/fs/ltp.fs.fs_di.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-813333180 +# @用例名称: ltp.fs.fs_di +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.fs_di + # @预期结果:1: 用例返回0 + ltp_run_testcase fs fs_di + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.fs_fill.sh b/testcase/fs/ltp.fs.fs_fill.sh new file mode 100755 index 0000000..acaf471 --- /dev/null +++ b/testcase/fs/ltp.fs.fs_fill.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-899460328 +# @用例名称: ltp.fs.fs_fill +# @用例级别: 3 +# @用例标签: eks不支持 +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.fs_fill + # @预期结果:1: 用例返回0 + ltp_run_testcase fs fs_fill + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.fs_inod01.sh b/testcase/fs/ltp.fs.fs_inod01.sh new file mode 100755 index 0000000..aafb6a3 --- /dev/null +++ b/testcase/fs/ltp.fs.fs_inod01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-630935221 +# @用例名称: ltp.fs.fs_inod01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.fs_inod01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs fs_inod01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.fs_racer.sh b/testcase/fs/ltp.fs.fs_racer.sh new file mode 100755 index 0000000..6d49aec --- /dev/null +++ b/testcase/fs/ltp.fs.fs_racer.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-866427587 +# @用例名称: ltp.fs.fs_racer +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.fs_racer + # @预期结果:1: 用例返回0 + ltp_run_testcase fs fs_racer + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.ftest01.sh b/testcase/fs/ltp.fs.ftest01.sh new file mode 100755 index 0000000..05e7346 --- /dev/null +++ b/testcase/fs/ltp.fs.ftest01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-718452450 +# @用例名称: ltp.fs.ftest01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.ftest01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs ftest01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.ftest02.sh b/testcase/fs/ltp.fs.ftest02.sh new file mode 100755 index 0000000..ecad63c --- /dev/null +++ b/testcase/fs/ltp.fs.ftest02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-727038399 +# @用例名称: ltp.fs.ftest02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.ftest02 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs ftest02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.ftest03.sh b/testcase/fs/ltp.fs.ftest03.sh new file mode 100755 index 0000000..ad6d70a --- /dev/null +++ b/testcase/fs/ltp.fs.ftest03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-735584934 +# @用例名称: ltp.fs.ftest03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.ftest03 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs ftest03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.ftest04.sh b/testcase/fs/ltp.fs.ftest04.sh new file mode 100755 index 0000000..aaf66d0 --- /dev/null +++ b/testcase/fs/ltp.fs.ftest04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-744032825 +# @用例名称: ltp.fs.ftest04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.ftest04 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs ftest04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.ftest05.sh b/testcase/fs/ltp.fs.ftest05.sh new file mode 100755 index 0000000..c169a65 --- /dev/null +++ b/testcase/fs/ltp.fs.ftest05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-752974128 +# @用例名称: ltp.fs.ftest05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.ftest05 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs ftest05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.ftest06.sh b/testcase/fs/ltp.fs.ftest06.sh new file mode 100755 index 0000000..027eee3 --- /dev/null +++ b/testcase/fs/ltp.fs.ftest06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-761484285 +# @用例名称: ltp.fs.ftest06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.ftest06 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs ftest06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.ftest07.sh b/testcase/fs/ltp.fs.ftest07.sh new file mode 100755 index 0000000..a06861d --- /dev/null +++ b/testcase/fs/ltp.fs.ftest07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-769973302 +# @用例名称: ltp.fs.ftest07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.ftest07 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs ftest07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.ftest08.sh b/testcase/fs/ltp.fs.ftest08.sh new file mode 100755 index 0000000..a6e291f --- /dev/null +++ b/testcase/fs/ltp.fs.ftest08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-778895981 +# @用例名称: ltp.fs.ftest08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.ftest08 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs ftest08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf01.sh b/testcase/fs/ltp.fs.gf01.sh new file mode 100755 index 0000000..146ffa1 --- /dev/null +++ b/testcase/fs/ltp.fs.gf01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-308646766 +# @用例名称: ltp.fs.gf01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf02.sh b/testcase/fs/ltp.fs.gf02.sh new file mode 100755 index 0000000..9ac949c --- /dev/null +++ b/testcase/fs/ltp.fs.gf02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-317215363 +# @用例名称: ltp.fs.gf02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf02 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf03.sh b/testcase/fs/ltp.fs.gf03.sh new file mode 100755 index 0000000..5cd02c1 --- /dev/null +++ b/testcase/fs/ltp.fs.gf03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-325746178 +# @用例名称: ltp.fs.gf03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf03 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf04.sh b/testcase/fs/ltp.fs.gf04.sh new file mode 100755 index 0000000..8c44cd7 --- /dev/null +++ b/testcase/fs/ltp.fs.gf04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-334312009 +# @用例名称: ltp.fs.gf04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf04 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf05.sh b/testcase/fs/ltp.fs.gf05.sh new file mode 100755 index 0000000..1b2537f --- /dev/null +++ b/testcase/fs/ltp.fs.gf05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-343603167 +# @用例名称: ltp.fs.gf05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf05 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf06.sh b/testcase/fs/ltp.fs.gf06.sh new file mode 100755 index 0000000..a759183 --- /dev/null +++ b/testcase/fs/ltp.fs.gf06.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-352184798 +# @用例名称: ltp.fs.gf06 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf06 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf07.sh b/testcase/fs/ltp.fs.gf07.sh new file mode 100755 index 0000000..535bad0 --- /dev/null +++ b/testcase/fs/ltp.fs.gf07.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-360820840 +# @用例名称: ltp.fs.gf07 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf07 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf08.sh b/testcase/fs/ltp.fs.gf08.sh new file mode 100755 index 0000000..d114cb1 --- /dev/null +++ b/testcase/fs/ltp.fs.gf08.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-370896918 +# @用例名称: ltp.fs.gf08 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf08 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf09.sh b/testcase/fs/ltp.fs.gf09.sh new file mode 100755 index 0000000..7d37e4f --- /dev/null +++ b/testcase/fs/ltp.fs.gf09.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-379423425 +# @用例名称: ltp.fs.gf09 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf09 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf10.sh b/testcase/fs/ltp.fs.gf10.sh new file mode 100755 index 0000000..d7fdd71 --- /dev/null +++ b/testcase/fs/ltp.fs.gf10.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-388155297 +# @用例名称: ltp.fs.gf10 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf10 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf11.sh b/testcase/fs/ltp.fs.gf11.sh new file mode 100755 index 0000000..fec9c6e --- /dev/null +++ b/testcase/fs/ltp.fs.gf11.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-396790208 +# @用例名称: ltp.fs.gf11 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf11 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf12.sh b/testcase/fs/ltp.fs.gf12.sh new file mode 100755 index 0000000..afb5d16 --- /dev/null +++ b/testcase/fs/ltp.fs.gf12.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-405382538 +# @用例名称: ltp.fs.gf12 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf12 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf13.sh b/testcase/fs/ltp.fs.gf13.sh new file mode 100755 index 0000000..7820650 --- /dev/null +++ b/testcase/fs/ltp.fs.gf13.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-414160867 +# @用例名称: ltp.fs.gf13 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf13 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf14.sh b/testcase/fs/ltp.fs.gf14.sh new file mode 100755 index 0000000..70c221b --- /dev/null +++ b/testcase/fs/ltp.fs.gf14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-422715166 +# @用例名称: ltp.fs.gf14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf14 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf15.sh b/testcase/fs/ltp.fs.gf15.sh new file mode 100755 index 0000000..124e143 --- /dev/null +++ b/testcase/fs/ltp.fs.gf15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-431336881 +# @用例名称: ltp.fs.gf15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf15 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf16.sh b/testcase/fs/ltp.fs.gf16.sh new file mode 100755 index 0000000..311e674 --- /dev/null +++ b/testcase/fs/ltp.fs.gf16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-439844243 +# @用例名称: ltp.fs.gf16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf16 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf17.sh b/testcase/fs/ltp.fs.gf17.sh new file mode 100755 index 0000000..e6781bd --- /dev/null +++ b/testcase/fs/ltp.fs.gf17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-448601793 +# @用例名称: ltp.fs.gf17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf17 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf18.sh b/testcase/fs/ltp.fs.gf18.sh new file mode 100755 index 0000000..6967b8e --- /dev/null +++ b/testcase/fs/ltp.fs.gf18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-457254026 +# @用例名称: ltp.fs.gf18 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf18 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf19.sh b/testcase/fs/ltp.fs.gf19.sh new file mode 100755 index 0000000..de87f19 --- /dev/null +++ b/testcase/fs/ltp.fs.gf19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-466979898 +# @用例名称: ltp.fs.gf19 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf19 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf20.sh b/testcase/fs/ltp.fs.gf20.sh new file mode 100755 index 0000000..7d9097d --- /dev/null +++ b/testcase/fs/ltp.fs.gf20.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-475798402 +# @用例名称: ltp.fs.gf20 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf20 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf21.sh b/testcase/fs/ltp.fs.gf21.sh new file mode 100755 index 0000000..7724b60 --- /dev/null +++ b/testcase/fs/ltp.fs.gf21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-484619731 +# @用例名称: ltp.fs.gf21 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf21 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf22.sh b/testcase/fs/ltp.fs.gf22.sh new file mode 100755 index 0000000..27fd846 --- /dev/null +++ b/testcase/fs/ltp.fs.gf22.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-493107876 +# @用例名称: ltp.fs.gf22 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf22 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf23.sh b/testcase/fs/ltp.fs.gf23.sh new file mode 100755 index 0000000..b543a66 --- /dev/null +++ b/testcase/fs/ltp.fs.gf23.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-501771330 +# @用例名称: ltp.fs.gf23 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf23 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf23 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf24.sh b/testcase/fs/ltp.fs.gf24.sh new file mode 100755 index 0000000..9f01bb8 --- /dev/null +++ b/testcase/fs/ltp.fs.gf24.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-510501389 +# @用例名称: ltp.fs.gf24 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf24 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf24 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf25.sh b/testcase/fs/ltp.fs.gf25.sh new file mode 100755 index 0000000..2c34f7b --- /dev/null +++ b/testcase/fs/ltp.fs.gf25.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-519168489 +# @用例名称: ltp.fs.gf25 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf25 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf25 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf26.sh b/testcase/fs/ltp.fs.gf26.sh new file mode 100755 index 0000000..f4bf284 --- /dev/null +++ b/testcase/fs/ltp.fs.gf26.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-527743948 +# @用例名称: ltp.fs.gf26 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf26 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf26 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf27.sh b/testcase/fs/ltp.fs.gf27.sh new file mode 100755 index 0000000..5e8f26b --- /dev/null +++ b/testcase/fs/ltp.fs.gf27.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-536229379 +# @用例名称: ltp.fs.gf27 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf27 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf27 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf28.sh b/testcase/fs/ltp.fs.gf28.sh new file mode 100755 index 0000000..10e7a41 --- /dev/null +++ b/testcase/fs/ltp.fs.gf28.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-544763461 +# @用例名称: ltp.fs.gf28 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf28 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf28 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf29.sh b/testcase/fs/ltp.fs.gf29.sh new file mode 100755 index 0000000..1aa2b41 --- /dev/null +++ b/testcase/fs/ltp.fs.gf29.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-553359618 +# @用例名称: ltp.fs.gf29 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf29 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf29 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.gf30.sh b/testcase/fs/ltp.fs.gf30.sh new file mode 100755 index 0000000..0aebdf9 --- /dev/null +++ b/testcase/fs/ltp.fs.gf30.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-561936550 +# @用例名称: ltp.fs.gf30 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.gf30 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs gf30 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.inode01.sh b/testcase/fs/ltp.fs.inode01.sh new file mode 100755 index 0000000..d617b19 --- /dev/null +++ b/testcase/fs/ltp.fs.inode01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-656539289 +# @用例名称: ltp.fs.inode01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.inode01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs inode01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.inode02.sh b/testcase/fs/ltp.fs.inode02.sh new file mode 100755 index 0000000..3b85d56 --- /dev/null +++ b/testcase/fs/ltp.fs.inode02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-665556405 +# @用例名称: ltp.fs.inode02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.inode02 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs inode02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.iogen01.sh b/testcase/fs/ltp.fs.iogen01.sh new file mode 100755 index 0000000..84fbff6 --- /dev/null +++ b/testcase/fs/ltp.fs.iogen01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-620400275 +# @用例名称: ltp.fs.iogen01 +# @用例级别: 2 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.iogen01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs iogen01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.isofs.sh b/testcase/fs/ltp.fs.isofs.sh new file mode 100755 index 0000000..b7bbe3e --- /dev/null +++ b/testcase/fs/ltp.fs.isofs.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-888993118 +# @用例名称: ltp.fs.isofs +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.isofs + # @预期结果:1: 用例返回0 + ltp_run_testcase fs isofs + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.lftest01.sh b/testcase/fs/ltp.fs.lftest01.sh new file mode 100755 index 0000000..ea9bbe2 --- /dev/null +++ b/testcase/fs/ltp.fs.lftest01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-789396502 +# @用例名称: ltp.fs.lftest01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.lftest01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs lftest01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.linker01.sh b/testcase/fs/ltp.fs.linker01.sh new file mode 100755 index 0000000..102b7d7 --- /dev/null +++ b/testcase/fs/ltp.fs.linker01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-639453323 +# @用例名称: ltp.fs.linker01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.linker01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs linker01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.openfile01.sh b/testcase/fs/ltp.fs.openfile01.sh new file mode 100755 index 0000000..7673c98 --- /dev/null +++ b/testcase/fs/ltp.fs.openfile01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-647981814 +# @用例名称: ltp.fs.openfile01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.openfile01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs openfile01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.proc01.sh b/testcase/fs/ltp.fs.proc01.sh new file mode 100755 index 0000000..eb37ab9 --- /dev/null +++ b/testcase/fs/ltp.fs.proc01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-826978217 +# @用例名称: ltp.fs.proc01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.proc01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs proc01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.quota_remount_test01.sh b/testcase/fs/ltp.fs.quota_remount_test01.sh new file mode 100755 index 0000000..000fc49 --- /dev/null +++ b/testcase/fs/ltp.fs.quota_remount_test01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-878150076 +# @用例名称: ltp.fs.quota_remount_test01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.quota_remount_test01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs quota_remount_test01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.read_all_dev.sh b/testcase/fs/ltp.fs.read_all_dev.sh new file mode 100755 index 0000000..f3b030d --- /dev/null +++ b/testcase/fs/ltp.fs.read_all_dev.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-837499778 +# @用例名称: ltp.fs.read_all_dev +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.read_all_dev + # @预期结果:1: 用例返回0 + ltp_run_testcase fs read_all_dev + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.read_all_proc.sh b/testcase/fs/ltp.fs.read_all_proc.sh new file mode 100755 index 0000000..a8e377a --- /dev/null +++ b/testcase/fs/ltp.fs.read_all_proc.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-846235408 +# @用例名称: ltp.fs.read_all_proc +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.read_all_proc + # @预期结果:1: 用例返回0 + ltp_run_testcase fs read_all_proc + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.read_all_sys.sh b/testcase/fs/ltp.fs.read_all_sys.sh new file mode 100755 index 0000000..f40ca29 --- /dev/null +++ b/testcase/fs/ltp.fs.read_all_sys.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-854839450 +# @用例名称: ltp.fs.read_all_sys +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.read_all_sys + # @预期结果:1: 用例返回0 + ltp_run_testcase fs read_all_sys + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.rwtest01.sh b/testcase/fs/ltp.fs.rwtest01.sh new file mode 100755 index 0000000..3f8dad6 --- /dev/null +++ b/testcase/fs/ltp.fs.rwtest01.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-572983995 +# @用例名称: ltp.fs.rwtest01 +# @用例级别: 3 +# @用例标签: +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.rwtest01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs rwtest01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.rwtest02.sh b/testcase/fs/ltp.fs.rwtest02.sh new file mode 100755 index 0000000..4774af6 --- /dev/null +++ b/testcase/fs/ltp.fs.rwtest02.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-581759008 +# @用例名称: ltp.fs.rwtest02 +# @用例级别: 3 +# @用例标签: +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.rwtest02 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs rwtest02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.rwtest03.sh b/testcase/fs/ltp.fs.rwtest03.sh new file mode 100755 index 0000000..099ce32 --- /dev/null +++ b/testcase/fs/ltp.fs.rwtest03.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-590437800 +# @用例名称: ltp.fs.rwtest03 +# @用例级别: 3 +# @用例标签: +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.rwtest03 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs rwtest03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.rwtest04.sh b/testcase/fs/ltp.fs.rwtest04.sh new file mode 100755 index 0000000..66e2a74 --- /dev/null +++ b/testcase/fs/ltp.fs.rwtest04.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-599044488 +# @用例名称: ltp.fs.rwtest04 +# @用例级别: 3 +# @用例标签: +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.rwtest04 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs rwtest04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.rwtest05.sh b/testcase/fs/ltp.fs.rwtest05.sh new file mode 100755 index 0000000..0803317 --- /dev/null +++ b/testcase/fs/ltp.fs.rwtest05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-607532503 +# @用例名称: ltp.fs.rwtest05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.rwtest05 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs rwtest05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.squashfs01.sh b/testcase/fs/ltp.fs.squashfs01.sh new file mode 100755 index 0000000..979054c --- /dev/null +++ b/testcase/fs/ltp.fs.squashfs01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-929207500 +# @用例名称: ltp.fs.squashfs01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.squashfs01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs squashfs01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.stream01.sh b/testcase/fs/ltp.fs.stream01.sh new file mode 100755 index 0000000..e309124 --- /dev/null +++ b/testcase/fs/ltp.fs.stream01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-674421606 +# @用例名称: ltp.fs.stream01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.stream01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs stream01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.stream02.sh b/testcase/fs/ltp.fs.stream02.sh new file mode 100755 index 0000000..536140b --- /dev/null +++ b/testcase/fs/ltp.fs.stream02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-683385402 +# @用例名称: ltp.fs.stream02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.stream02 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs stream02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.stream03.sh b/testcase/fs/ltp.fs.stream03.sh new file mode 100755 index 0000000..a402a4d --- /dev/null +++ b/testcase/fs/ltp.fs.stream03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-692149354 +# @用例名称: ltp.fs.stream03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.stream03 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs stream03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.stream04.sh b/testcase/fs/ltp.fs.stream04.sh new file mode 100755 index 0000000..36e3fb0 --- /dev/null +++ b/testcase/fs/ltp.fs.stream04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-700824920 +# @用例名称: ltp.fs.stream04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.stream04 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs stream04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.stream05.sh b/testcase/fs/ltp.fs.stream05.sh new file mode 100755 index 0000000..7428e9c --- /dev/null +++ b/testcase/fs/ltp.fs.stream05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-710012165 +# @用例名称: ltp.fs.stream05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.stream05 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs stream05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs/ltp.fs.writetest01.sh b/testcase/fs/ltp.fs.writetest01.sh new file mode 100755 index 0000000..60e6e10 --- /dev/null +++ b/testcase/fs/ltp.fs.writetest01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-801228827 +# @用例名称: ltp.fs.writetest01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs.writetest01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs writetest01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind01_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind01_sh.sh new file mode 100755 index 0000000..a51b27c --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-942416902 +# @用例名称: ltp.fs_bind.fs_bind01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind02_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind02_sh.sh new file mode 100755 index 0000000..0015d7a --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind02_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-951132372 +# @用例名称: ltp.fs_bind.fs_bind02_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind02_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind02_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind03_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind03_sh.sh new file mode 100755 index 0000000..48ce685 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind03_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-959808470 +# @用例名称: ltp.fs_bind.fs_bind03_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind03_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind03_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind04_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind04_sh.sh new file mode 100755 index 0000000..77387c5 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind04_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-968485209 +# @用例名称: ltp.fs_bind.fs_bind04_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind04_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind04_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind05_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind05_sh.sh new file mode 100755 index 0000000..119278c --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind05_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-977037654 +# @用例名称: ltp.fs_bind.fs_bind05_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind05_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind05_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind06_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind06_sh.sh new file mode 100755 index 0000000..9c9a78d --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind06_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-985717309 +# @用例名称: ltp.fs_bind.fs_bind06_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind06_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind06_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind07-2_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind07-2_sh.sh new file mode 100755 index 0000000..997884e --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind07-2_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-003825628 +# @用例名称: ltp.fs_bind.fs_bind07-2_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind07-2_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind07-2_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind07_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind07_sh.sh new file mode 100755 index 0000000..cdf640e --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind07_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212953-995309710 +# @用例名称: ltp.fs_bind.fs_bind07_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind07_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind07_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind08_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind08_sh.sh new file mode 100755 index 0000000..7496a92 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind08_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-012364489 +# @用例名称: ltp.fs_bind.fs_bind08_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind08_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind08_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind09_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind09_sh.sh new file mode 100755 index 0000000..13cb829 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind09_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-022978483 +# @用例名称: ltp.fs_bind.fs_bind09_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind09_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind09_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind10_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind10_sh.sh new file mode 100755 index 0000000..ca625f9 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind10_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-031461669 +# @用例名称: ltp.fs_bind.fs_bind10_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind10_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind10_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind11_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind11_sh.sh new file mode 100755 index 0000000..12e8c80 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind11_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-041380091 +# @用例名称: ltp.fs_bind.fs_bind11_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind11_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind11_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind12_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind12_sh.sh new file mode 100755 index 0000000..c32021e --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind12_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-050381748 +# @用例名称: ltp.fs_bind.fs_bind12_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind12_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind12_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind13_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind13_sh.sh new file mode 100755 index 0000000..fea90b3 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind13_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-059144157 +# @用例名称: ltp.fs_bind.fs_bind13_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind13_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind13_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind14_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind14_sh.sh new file mode 100755 index 0000000..b799350 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind14_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-067759030 +# @用例名称: ltp.fs_bind.fs_bind14_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind14_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind14_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind15_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind15_sh.sh new file mode 100755 index 0000000..d5f756a --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind15_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-076375225 +# @用例名称: ltp.fs_bind.fs_bind15_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind15_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind15_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind16_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind16_sh.sh new file mode 100755 index 0000000..a043ea0 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind16_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-084988225 +# @用例名称: ltp.fs_bind.fs_bind16_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind16_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind16_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind17_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind17_sh.sh new file mode 100755 index 0000000..2a925b1 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind17_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-093637501 +# @用例名称: ltp.fs_bind.fs_bind17_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind17_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind17_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind18_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind18_sh.sh new file mode 100755 index 0000000..06c9ebd --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind18_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-102330591 +# @用例名称: ltp.fs_bind.fs_bind18_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind18_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind18_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind19_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind19_sh.sh new file mode 100755 index 0000000..4b3eb1b --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind19_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-116120890 +# @用例名称: ltp.fs_bind.fs_bind19_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind19_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind19_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind20_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind20_sh.sh new file mode 100755 index 0000000..12bd937 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind20_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-125071991 +# @用例名称: ltp.fs_bind.fs_bind20_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind20_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind20_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind21_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind21_sh.sh new file mode 100755 index 0000000..c6e8e19 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind21_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-134025528 +# @用例名称: ltp.fs_bind.fs_bind21_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind21_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind21_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind22_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind22_sh.sh new file mode 100755 index 0000000..eaf60a6 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind22_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-142671529 +# @用例名称: ltp.fs_bind.fs_bind22_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind22_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind22_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind23_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind23_sh.sh new file mode 100755 index 0000000..515c1b6 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind23_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-151618784 +# @用例名称: ltp.fs_bind.fs_bind23_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind23_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind23_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind24_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind24_sh.sh new file mode 100755 index 0000000..afb7ce2 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind24_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-160453088 +# @用例名称: ltp.fs_bind.fs_bind24_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind24_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind24_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS01_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS01_sh.sh new file mode 100755 index 0000000..ce348de --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-748038367 +# @用例名称: ltp.fs_bind.fs_bind_cloneNS01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_cloneNS01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_cloneNS01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS02_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS02_sh.sh new file mode 100755 index 0000000..83da113 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS02_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-756629977 +# @用例名称: ltp.fs_bind.fs_bind_cloneNS02_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_cloneNS02_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_cloneNS02_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS03_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS03_sh.sh new file mode 100755 index 0000000..6b7153f --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS03_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-765341651 +# @用例名称: ltp.fs_bind.fs_bind_cloneNS03_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_cloneNS03_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_cloneNS03_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS04_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS04_sh.sh new file mode 100755 index 0000000..7d05d7e --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS04_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-774074835 +# @用例名称: ltp.fs_bind.fs_bind_cloneNS04_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_cloneNS04_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_cloneNS04_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS05_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS05_sh.sh new file mode 100755 index 0000000..6a34211 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS05_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-782733349 +# @用例名称: ltp.fs_bind.fs_bind_cloneNS05_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_cloneNS05_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_cloneNS05_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS06_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS06_sh.sh new file mode 100755 index 0000000..cc8c081 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS06_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-791265397 +# @用例名称: ltp.fs_bind.fs_bind_cloneNS06_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_cloneNS06_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_cloneNS06_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS07_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS07_sh.sh new file mode 100755 index 0000000..f7620f9 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS07_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-799748042 +# @用例名称: ltp.fs_bind.fs_bind_cloneNS07_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_cloneNS07_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_cloneNS07_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move01_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move01_sh.sh new file mode 100755 index 0000000..8d4f7dd --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-173031468 +# @用例名称: ltp.fs_bind.fs_bind_move01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move02_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move02_sh.sh new file mode 100755 index 0000000..cb4710e --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move02_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-181745106 +# @用例名称: ltp.fs_bind.fs_bind_move02_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move02_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move02_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move03_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move03_sh.sh new file mode 100755 index 0000000..6cbc9f4 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move03_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-190369016 +# @用例名称: ltp.fs_bind.fs_bind_move03_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move03_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move03_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move04_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move04_sh.sh new file mode 100755 index 0000000..66ea905 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move04_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-199038551 +# @用例名称: ltp.fs_bind.fs_bind_move04_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move04_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move04_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move05_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move05_sh.sh new file mode 100755 index 0000000..a557b00 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move05_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-208439043 +# @用例名称: ltp.fs_bind.fs_bind_move05_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move05_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move05_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move06_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move06_sh.sh new file mode 100755 index 0000000..d40ded0 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move06_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-217187696 +# @用例名称: ltp.fs_bind.fs_bind_move06_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move06_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move06_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move07_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move07_sh.sh new file mode 100755 index 0000000..990aa62 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move07_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-226196276 +# @用例名称: ltp.fs_bind.fs_bind_move07_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move07_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move07_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move08_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move08_sh.sh new file mode 100755 index 0000000..1c6d75b --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move08_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-235151567 +# @用例名称: ltp.fs_bind.fs_bind_move08_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move08_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move08_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move09_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move09_sh.sh new file mode 100755 index 0000000..b5f94a7 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move09_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-244077872 +# @用例名称: ltp.fs_bind.fs_bind_move09_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move09_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move09_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move10_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move10_sh.sh new file mode 100755 index 0000000..aec9f55 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move10_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-252858906 +# @用例名称: ltp.fs_bind.fs_bind_move10_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move10_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move10_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move11_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move11_sh.sh new file mode 100755 index 0000000..6fa6ef1 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move11_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-261904335 +# @用例名称: ltp.fs_bind.fs_bind_move11_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move11_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move11_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move12_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move12_sh.sh new file mode 100755 index 0000000..56c0365 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move12_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-270729881 +# @用例名称: ltp.fs_bind.fs_bind_move12_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move12_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move12_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move13_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move13_sh.sh new file mode 100755 index 0000000..be50751 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move13_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-280706032 +# @用例名称: ltp.fs_bind.fs_bind_move13_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move13_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move13_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move14_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move14_sh.sh new file mode 100755 index 0000000..02c38be --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move14_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-290441211 +# @用例名称: ltp.fs_bind.fs_bind_move14_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move14_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move14_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move15_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move15_sh.sh new file mode 100755 index 0000000..3bda487 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move15_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-299403244 +# @用例名称: ltp.fs_bind.fs_bind_move15_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move15_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move15_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move16_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move16_sh.sh new file mode 100755 index 0000000..b9643f9 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move16_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-307924071 +# @用例名称: ltp.fs_bind.fs_bind_move16_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move16_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move16_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move17_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move17_sh.sh new file mode 100755 index 0000000..f4ea09e --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move17_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-316477649 +# @用例名称: ltp.fs_bind.fs_bind_move17_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move17_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move17_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move18_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move18_sh.sh new file mode 100755 index 0000000..ed4d34a --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move18_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-324997364 +# @用例名称: ltp.fs_bind.fs_bind_move18_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move18_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move18_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move19_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move19_sh.sh new file mode 100755 index 0000000..d78dff9 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move19_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-333857996 +# @用例名称: ltp.fs_bind.fs_bind_move19_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move19_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move19_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move20_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move20_sh.sh new file mode 100755 index 0000000..efb5682 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move20_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-343115351 +# @用例名称: ltp.fs_bind.fs_bind_move20_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move20_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move20_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move21_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move21_sh.sh new file mode 100755 index 0000000..ac2bb81 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move21_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-351848876 +# @用例名称: ltp.fs_bind.fs_bind_move21_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move21_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move21_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move22_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move22_sh.sh new file mode 100755 index 0000000..0aede6f --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move22_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-361865302 +# @用例名称: ltp.fs_bind.fs_bind_move22_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_move22_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_move22_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind01_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind01_sh.sh new file mode 100755 index 0000000..1932306 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-374229932 +# @用例名称: ltp.fs_bind.fs_bind_rbind01_sh +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind02_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind02_sh.sh new file mode 100755 index 0000000..0a2ebd1 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind02_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-382991970 +# @用例名称: ltp.fs_bind.fs_bind_rbind02_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind02_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind02_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind03_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind03_sh.sh new file mode 100755 index 0000000..0ffbe84 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind03_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-391719865 +# @用例名称: ltp.fs_bind.fs_bind_rbind03_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind03_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind03_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind04_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind04_sh.sh new file mode 100755 index 0000000..5974cfd --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind04_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-400489477 +# @用例名称: ltp.fs_bind.fs_bind_rbind04_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind04_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind04_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind05_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind05_sh.sh new file mode 100755 index 0000000..1b3a249 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind05_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-409188237 +# @用例名称: ltp.fs_bind.fs_bind_rbind05_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind05_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind05_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind06_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind06_sh.sh new file mode 100755 index 0000000..50f52b5 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind06_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-418072694 +# @用例名称: ltp.fs_bind.fs_bind_rbind06_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind06_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind06_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07-2_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07-2_sh.sh new file mode 100755 index 0000000..9e9e801 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07-2_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-426669744 +# @用例名称: ltp.fs_bind.fs_bind_rbind07-2_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind07-2_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind07-2_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07_sh.sh new file mode 100755 index 0000000..98ec54e --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-435358746 +# @用例名称: ltp.fs_bind.fs_bind_rbind07_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind07_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind07_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind08_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind08_sh.sh new file mode 100755 index 0000000..69bbc55 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind08_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-444108531 +# @用例名称: ltp.fs_bind.fs_bind_rbind08_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind08_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind08_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind09_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind09_sh.sh new file mode 100755 index 0000000..cba499d --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind09_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-452889645 +# @用例名称: ltp.fs_bind.fs_bind_rbind09_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind09_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind09_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind10_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind10_sh.sh new file mode 100755 index 0000000..9973967 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind10_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-461493537 +# @用例名称: ltp.fs_bind.fs_bind_rbind10_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind10_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind10_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind11_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind11_sh.sh new file mode 100755 index 0000000..941bb3b --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind11_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-470207294 +# @用例名称: ltp.fs_bind.fs_bind_rbind11_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind11_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind11_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind12_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind12_sh.sh new file mode 100755 index 0000000..3661875 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind12_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-478999469 +# @用例名称: ltp.fs_bind.fs_bind_rbind12_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind12_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind12_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind13_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind13_sh.sh new file mode 100755 index 0000000..0c7480d --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind13_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-487584166 +# @用例名称: ltp.fs_bind.fs_bind_rbind13_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind13_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind13_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind14_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind14_sh.sh new file mode 100755 index 0000000..e6c1dbf --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind14_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-496510431 +# @用例名称: ltp.fs_bind.fs_bind_rbind14_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind14_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind14_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind15_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind15_sh.sh new file mode 100755 index 0000000..bdb3270 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind15_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-505103333 +# @用例名称: ltp.fs_bind.fs_bind_rbind15_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind15_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind15_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind16_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind16_sh.sh new file mode 100755 index 0000000..af5b67a --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind16_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-513841937 +# @用例名称: ltp.fs_bind.fs_bind_rbind16_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind16_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind16_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind17_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind17_sh.sh new file mode 100755 index 0000000..a894a39 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind17_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-522425352 +# @用例名称: ltp.fs_bind.fs_bind_rbind17_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind17_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind17_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind18_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind18_sh.sh new file mode 100755 index 0000000..c1c3649 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind18_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-531805316 +# @用例名称: ltp.fs_bind.fs_bind_rbind18_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind18_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind18_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind19_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind19_sh.sh new file mode 100755 index 0000000..74648de --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind19_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-540462137 +# @用例名称: ltp.fs_bind.fs_bind_rbind19_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind19_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind19_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind20_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind20_sh.sh new file mode 100755 index 0000000..9676f87 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind20_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-549098991 +# @用例名称: ltp.fs_bind.fs_bind_rbind20_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind20_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind20_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind21_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind21_sh.sh new file mode 100755 index 0000000..940a48f --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind21_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-557812178 +# @用例名称: ltp.fs_bind.fs_bind_rbind21_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind21_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind21_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind22_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind22_sh.sh new file mode 100755 index 0000000..53cb36d --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind22_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-566582381 +# @用例名称: ltp.fs_bind.fs_bind_rbind22_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind22_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind22_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind23_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind23_sh.sh new file mode 100755 index 0000000..1b15e12 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind23_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-575362463 +# @用例名称: ltp.fs_bind.fs_bind_rbind23_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind23_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind23_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind24_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind24_sh.sh new file mode 100755 index 0000000..20d93b3 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind24_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-584049952 +# @用例名称: ltp.fs_bind.fs_bind_rbind24_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind24_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind24_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind25_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind25_sh.sh new file mode 100755 index 0000000..26d2201 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind25_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-592609141 +# @用例名称: ltp.fs_bind.fs_bind_rbind25_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind25_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind25_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind26_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind26_sh.sh new file mode 100755 index 0000000..fe8c5d3 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind26_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-601359327 +# @用例名称: ltp.fs_bind.fs_bind_rbind26_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind26_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind26_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind27_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind27_sh.sh new file mode 100755 index 0000000..0f452f0 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind27_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-610046755 +# @用例名称: ltp.fs_bind.fs_bind_rbind27_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind27_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind27_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind28_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind28_sh.sh new file mode 100755 index 0000000..4e989b1 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind28_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-618769319 +# @用例名称: ltp.fs_bind.fs_bind_rbind28_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind28_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind28_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind29_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind29_sh.sh new file mode 100755 index 0000000..a1ebc9e --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind29_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-629762293 +# @用例名称: ltp.fs_bind.fs_bind_rbind29_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind29_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind29_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind30_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind30_sh.sh new file mode 100755 index 0000000..99d7ca1 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind30_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-639928098 +# @用例名称: ltp.fs_bind.fs_bind_rbind30_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind30_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind30_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind31_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind31_sh.sh new file mode 100755 index 0000000..d66b403 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind31_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-649598536 +# @用例名称: ltp.fs_bind.fs_bind_rbind31_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind31_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind31_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind32_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind32_sh.sh new file mode 100755 index 0000000..8f9cb37 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind32_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-659114727 +# @用例名称: ltp.fs_bind.fs_bind_rbind32_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind32_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind32_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind33_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind33_sh.sh new file mode 100755 index 0000000..d480dbe --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind33_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-668629233 +# @用例名称: ltp.fs_bind.fs_bind_rbind33_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind33_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind33_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind34_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind34_sh.sh new file mode 100755 index 0000000..4174201 --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind34_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-678416460 +# @用例名称: ltp.fs_bind.fs_bind_rbind34_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind34_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind34_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind35_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind35_sh.sh new file mode 100755 index 0000000..f283c4e --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind35_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-688171126 +# @用例名称: ltp.fs_bind.fs_bind_rbind35_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind35_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind35_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind36_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind36_sh.sh new file mode 100755 index 0000000..672606d --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind36_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-696944145 +# @用例名称: ltp.fs_bind.fs_bind_rbind36_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind36_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind36_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind37_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind37_sh.sh new file mode 100755 index 0000000..a318aff --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind37_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-705624470 +# @用例名称: ltp.fs_bind.fs_bind_rbind37_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind37_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind37_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind38_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind38_sh.sh new file mode 100755 index 0000000..d11000f --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind38_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-714409721 +# @用例名称: ltp.fs_bind.fs_bind_rbind38_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind38_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind38_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind39_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind39_sh.sh new file mode 100755 index 0000000..c832e2e --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind39_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-723069548 +# @用例名称: ltp.fs_bind.fs_bind_rbind39_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_rbind39_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_rbind39_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_regression_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_regression_sh.sh new file mode 100755 index 0000000..f6ff80c --- /dev/null +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_regression_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-735586223 +# @用例名称: ltp.fs_bind.fs_bind_regression_sh +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_bind.fs_bind_regression_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_bind fs_bind_regression_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms01.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms01.sh new file mode 100755 index 0000000..c464844 --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-819414789 +# @用例名称: ltp.fs_perms_simple.fs_perms01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms02.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms02.sh new file mode 100755 index 0000000..3e39516 --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-828458254 +# @用例名称: ltp.fs_perms_simple.fs_perms02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms02 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms03.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms03.sh new file mode 100755 index 0000000..6d241d5 --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-837232455 +# @用例名称: ltp.fs_perms_simple.fs_perms03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms03 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms04.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms04.sh new file mode 100755 index 0000000..835cf3f --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-845931866 +# @用例名称: ltp.fs_perms_simple.fs_perms04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms04 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms05.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms05.sh new file mode 100755 index 0000000..67fecfe --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-854630826 +# @用例名称: ltp.fs_perms_simple.fs_perms05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms05 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms06.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms06.sh new file mode 100755 index 0000000..effcf1a --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-863486380 +# @用例名称: ltp.fs_perms_simple.fs_perms06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms06 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms07.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms07.sh new file mode 100755 index 0000000..e28830b --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-872057029 +# @用例名称: ltp.fs_perms_simple.fs_perms07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms07 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms08.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms08.sh new file mode 100755 index 0000000..9fcd595 --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-880537210 +# @用例名称: ltp.fs_perms_simple.fs_perms08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms08 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms09.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms09.sh new file mode 100755 index 0000000..104a15d --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-889102460 +# @用例名称: ltp.fs_perms_simple.fs_perms09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms09 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms10.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms10.sh new file mode 100755 index 0000000..f83f482 --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-897726280 +# @用例名称: ltp.fs_perms_simple.fs_perms10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms10 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms11.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms11.sh new file mode 100755 index 0000000..013018f --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-907413339 +# @用例名称: ltp.fs_perms_simple.fs_perms11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms11 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms12.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms12.sh new file mode 100755 index 0000000..72cbaf3 --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-915971315 +# @用例名称: ltp.fs_perms_simple.fs_perms12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms12 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms13.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms13.sh new file mode 100755 index 0000000..121641c --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-924482825 +# @用例名称: ltp.fs_perms_simple.fs_perms13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms13 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms14.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms14.sh new file mode 100755 index 0000000..f628848 --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-933066078 +# @用例名称: ltp.fs_perms_simple.fs_perms14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms14 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms15.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms15.sh new file mode 100755 index 0000000..5521d08 --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-942192939 +# @用例名称: ltp.fs_perms_simple.fs_perms15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms15 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms16.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms16.sh new file mode 100755 index 0000000..b2be035 --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-950901537 +# @用例名称: ltp.fs_perms_simple.fs_perms16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms16 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms17.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms17.sh new file mode 100755 index 0000000..67acd77 --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-963882741 +# @用例名称: ltp.fs_perms_simple.fs_perms17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms17 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms18.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms18.sh new file mode 100755 index 0000000..aa5b3b4 --- /dev/null +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-972706575 +# @用例名称: ltp.fs_perms_simple.fs_perms18 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_perms_simple.fs_perms18 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_perms_simple fs_perms18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind01.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind01.sh new file mode 100755 index 0000000..93ef854 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-983168435 +# @用例名称: ltp.fs_readonly.test_robind01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind01 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind02.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind02.sh new file mode 100755 index 0000000..c9be839 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212954-991725720 +# @用例名称: ltp.fs_readonly.test_robind02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind02 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind03.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind03.sh new file mode 100755 index 0000000..8ffefa3 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-000336986 +# @用例名称: ltp.fs_readonly.test_robind03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind03 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind04.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind04.sh new file mode 100755 index 0000000..8c063fa --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-009095368 +# @用例名称: ltp.fs_readonly.test_robind04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind04 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind05.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind05.sh new file mode 100755 index 0000000..b740a69 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-018466004 +# @用例名称: ltp.fs_readonly.test_robind05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind05 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind06.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind06.sh new file mode 100755 index 0000000..5838920 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-027111124 +# @用例名称: ltp.fs_readonly.test_robind06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind06 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind07.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind07.sh new file mode 100755 index 0000000..a2ae431 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-035736867 +# @用例名称: ltp.fs_readonly.test_robind07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind07 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind08.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind08.sh new file mode 100755 index 0000000..8516e8f --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-044360326 +# @用例名称: ltp.fs_readonly.test_robind08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind08 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind09.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind09.sh new file mode 100755 index 0000000..48fbd1b --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-052925015 +# @用例名称: ltp.fs_readonly.test_robind09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind09 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind10.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind10.sh new file mode 100755 index 0000000..b89f726 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-064580668 +# @用例名称: ltp.fs_readonly.test_robind10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind10 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind11.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind11.sh new file mode 100755 index 0000000..9a89ebc --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-073234725 +# @用例名称: ltp.fs_readonly.test_robind11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind11 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind12.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind12.sh new file mode 100755 index 0000000..d34d3b0 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-082025046 +# @用例名称: ltp.fs_readonly.test_robind12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind12 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind13.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind13.sh new file mode 100755 index 0000000..90b354e --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-090935342 +# @用例名称: ltp.fs_readonly.test_robind13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind13 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind14.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind14.sh new file mode 100755 index 0000000..be39472 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-099511462 +# @用例名称: ltp.fs_readonly.test_robind14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind14 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind15.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind15.sh new file mode 100755 index 0000000..3b67e45 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-108136143 +# @用例名称: ltp.fs_readonly.test_robind15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind15 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind16.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind16.sh new file mode 100755 index 0000000..4bbfa9d --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-116759091 +# @用例名称: ltp.fs_readonly.test_robind16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind16 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind17.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind17.sh new file mode 100755 index 0000000..3d5b0ad --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-125384593 +# @用例名称: ltp.fs_readonly.test_robind17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind17 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind18.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind18.sh new file mode 100755 index 0000000..37b6769 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-133952539 +# @用例名称: ltp.fs_readonly.test_robind18 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind18 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind19.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind19.sh new file mode 100755 index 0000000..e06a7c5 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-142584333 +# @用例名称: ltp.fs_readonly.test_robind19 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind19 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind20.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind20.sh new file mode 100755 index 0000000..e80b0cb --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind20.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-151164871 +# @用例名称: ltp.fs_readonly.test_robind20 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind20 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind21.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind21.sh new file mode 100755 index 0000000..92edea3 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-159881825 +# @用例名称: ltp.fs_readonly.test_robind21 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind21 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind22.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind22.sh new file mode 100755 index 0000000..64298fa --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind22.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-168500786 +# @用例名称: ltp.fs_readonly.test_robind22 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind22 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind23.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind23.sh new file mode 100755 index 0000000..67fca33 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind23.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-177227198 +# @用例名称: ltp.fs_readonly.test_robind23 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind23 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind23 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind24.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind24.sh new file mode 100755 index 0000000..abe7362 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind24.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-185870884 +# @用例名称: ltp.fs_readonly.test_robind24 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind24 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind24 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind25.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind25.sh new file mode 100755 index 0000000..102ea5c --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind25.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-194432818 +# @用例名称: ltp.fs_readonly.test_robind25 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind25 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind25 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind26.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind26.sh new file mode 100755 index 0000000..2193829 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind26.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-206181265 +# @用例名称: ltp.fs_readonly.test_robind26 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind26 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind26 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind27.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind27.sh new file mode 100755 index 0000000..a5ca759 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind27.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-215050574 +# @用例名称: ltp.fs_readonly.test_robind27 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind27 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind27 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind28.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind28.sh new file mode 100755 index 0000000..2cb5098 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind28.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-224885429 +# @用例名称: ltp.fs_readonly.test_robind28 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind28 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind28 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind29.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind29.sh new file mode 100755 index 0000000..42f7b33 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind29.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-233459646 +# @用例名称: ltp.fs_readonly.test_robind29 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind29 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind29 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind30.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind30.sh new file mode 100755 index 0000000..982d5e5 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind30.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-242004548 +# @用例名称: ltp.fs_readonly.test_robind30 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind30 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind30 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind31.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind31.sh new file mode 100755 index 0000000..dcf5e84 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind31.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-251596260 +# @用例名称: ltp.fs_readonly.test_robind31 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind31 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind31 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind32.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind32.sh new file mode 100755 index 0000000..da5e33b --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind32.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-260100896 +# @用例名称: ltp.fs_readonly.test_robind32 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind32 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind32 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind33.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind33.sh new file mode 100755 index 0000000..c4bf0ce --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind33.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-268940399 +# @用例名称: ltp.fs_readonly.test_robind33 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind33 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind33 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind34.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind34.sh new file mode 100755 index 0000000..765ad6e --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind34.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-277711624 +# @用例名称: ltp.fs_readonly.test_robind34 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind34 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind34 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind35.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind35.sh new file mode 100755 index 0000000..97b8b5e --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind35.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-286166397 +# @用例名称: ltp.fs_readonly.test_robind35 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind35 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind35 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind36.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind36.sh new file mode 100755 index 0000000..324bc3e --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind36.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-296411141 +# @用例名称: ltp.fs_readonly.test_robind36 +# @用例级别: 3 +# @用例标签: +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind36 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind36 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind37.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind37.sh new file mode 100755 index 0000000..267d40b --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind37.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-306365721 +# @用例名称: ltp.fs_readonly.test_robind37 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind37 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind37 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind38.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind38.sh new file mode 100755 index 0000000..2c81e08 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind38.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-314945027 +# @用例名称: ltp.fs_readonly.test_robind38 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind38 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind38 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind39.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind39.sh new file mode 100755 index 0000000..15e3bfd --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind39.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-323945552 +# @用例名称: ltp.fs_readonly.test_robind39 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind39 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind39 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind40.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind40.sh new file mode 100755 index 0000000..78cf0df --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind40.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-332565604 +# @用例名称: ltp.fs_readonly.test_robind40 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind40 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind40 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind41.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind41.sh new file mode 100755 index 0000000..cd177b2 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind41.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-341216855 +# @用例名称: ltp.fs_readonly.test_robind41 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind41 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind41 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind42.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind42.sh new file mode 100755 index 0000000..9657c31 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind42.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-349844431 +# @用例名称: ltp.fs_readonly.test_robind42 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind42 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind42 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind43.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind43.sh new file mode 100755 index 0000000..8f78372 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind43.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-358562788 +# @用例名称: ltp.fs_readonly.test_robind43 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind43 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind43 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind44.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind44.sh new file mode 100755 index 0000000..6ac8c84 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind44.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-367903880 +# @用例名称: ltp.fs_readonly.test_robind44 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind44 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind44 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind45.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind45.sh new file mode 100755 index 0000000..257a8db --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind45.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-376621214 +# @用例名称: ltp.fs_readonly.test_robind45 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind45 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind45 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind46.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind46.sh new file mode 100755 index 0000000..1780164 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind46.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-385217753 +# @用例名称: ltp.fs_readonly.test_robind46 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind46 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind46 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind47.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind47.sh new file mode 100755 index 0000000..b4182a2 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind47.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-393788062 +# @用例名称: ltp.fs_readonly.test_robind47 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind47 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind47 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind48.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind48.sh new file mode 100755 index 0000000..7a6a876 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind48.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-402360646 +# @用例名称: ltp.fs_readonly.test_robind48 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind48 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind48 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind49.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind49.sh new file mode 100755 index 0000000..32190c2 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind49.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-410932619 +# @用例名称: ltp.fs_readonly.test_robind49 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind49 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind49 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind50.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind50.sh new file mode 100755 index 0000000..4e7628e --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind50.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-419631549 +# @用例名称: ltp.fs_readonly.test_robind50 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind50 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind50 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind51.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind51.sh new file mode 100755 index 0000000..aa0f3aa --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind51.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-428225893 +# @用例名称: ltp.fs_readonly.test_robind51 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind51 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind51 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind52.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind52.sh new file mode 100755 index 0000000..f935c8e --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind52.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-438993395 +# @用例名称: ltp.fs_readonly.test_robind52 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind52 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind52 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind53.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind53.sh new file mode 100755 index 0000000..e341172 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind53.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-447531133 +# @用例名称: ltp.fs_readonly.test_robind53 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind53 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind53 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind54.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind54.sh new file mode 100755 index 0000000..b577ff6 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind54.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-456320522 +# @用例名称: ltp.fs_readonly.test_robind54 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind54 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind54 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind55.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind55.sh new file mode 100755 index 0000000..05ef832 --- /dev/null +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind55.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-464990889 +# @用例名称: ltp.fs_readonly.test_robind55 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.fs_readonly.test_robind55 + # @预期结果:1: 用例返回0 + ltp_run_testcase fs_readonly test_robind55 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugefallocate01.sh b/testcase/hugetlb/ltp.hugetlb.hugefallocate01.sh new file mode 100755 index 0000000..a6fdf79 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugefallocate01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141848-159070093 +# @用例名称: ltp.hugetlb.hugefallocate01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugefallocate01 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugefallocate01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugefallocate02.sh b/testcase/hugetlb/ltp.hugetlb.hugefallocate02.sh new file mode 100755 index 0000000..a19992f --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugefallocate02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141848-222332703 +# @用例名称: ltp.hugetlb.hugefallocate02 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugefallocate02 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugefallocate02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugefork01.sh b/testcase/hugetlb/ltp.hugetlb.hugefork01.sh new file mode 100755 index 0000000..ef013fb --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugefork01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141848-285761736 +# @用例名称: ltp.hugetlb.hugefork01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugefork01 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugefork01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugefork02.sh b/testcase/hugetlb/ltp.hugetlb.hugefork02.sh new file mode 100755 index 0000000..cb58bd4 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugefork02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141848-348640760 +# @用例名称: ltp.hugetlb.hugefork02 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugefork02 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugefork02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap01.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap01.sh new file mode 100755 index 0000000..b7a4157 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-494015919 +# @用例名称: ltp.hugetlb.hugemmap01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap01 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap02.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap02.sh new file mode 100755 index 0000000..7f868a4 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-502794970 +# @用例名称: ltp.hugetlb.hugemmap02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap02 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap04.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap04.sh new file mode 100755 index 0000000..f76f7db --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-511557860 +# @用例名称: ltp.hugetlb.hugemmap04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap04 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap05.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap05.sh new file mode 100755 index 0000000..7ea92fc --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-520118661 +# @用例名称: ltp.hugetlb.hugemmap05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap05 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap05_1.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap05_1.sh new file mode 100755 index 0000000..686ee25 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap05_1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-537399842 +# @用例名称: ltp.hugetlb.hugemmap05_1 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap05_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap05_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap05_2.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap05_2.sh new file mode 100755 index 0000000..e2d191a --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap05_2.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-546200162 +# @用例名称: ltp.hugetlb.hugemmap05_2 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap05_2 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap05_2 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap05_3.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap05_3.sh new file mode 100755 index 0000000..c2f32dd --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap05_3.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-554785210 +# @用例名称: ltp.hugetlb.hugemmap05_3 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap05_3 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap05_3 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap06.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap06.sh new file mode 100755 index 0000000..972d2ba --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-528895186 +# @用例名称: ltp.hugetlb.hugemmap06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap06 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap07.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap07.sh new file mode 100755 index 0000000..a88fc4d --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141848-412160359 +# @用例名称: ltp.hugetlb.hugemmap07 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap07 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap08.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap08.sh new file mode 100755 index 0000000..007acef --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141848-476310138 +# @用例名称: ltp.hugetlb.hugemmap08 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap08 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap09.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap09.sh new file mode 100755 index 0000000..dcdeaad --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141848-540373848 +# @用例名称: ltp.hugetlb.hugemmap09 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap09 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap10.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap10.sh new file mode 100755 index 0000000..95b4980 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141848-603395198 +# @用例名称: ltp.hugetlb.hugemmap10 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap10 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap11.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap11.sh new file mode 100755 index 0000000..047fb6e --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141848-666298380 +# @用例名称: ltp.hugetlb.hugemmap11 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap11 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap12.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap12.sh new file mode 100755 index 0000000..684b629 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141848-729388677 +# @用例名称: ltp.hugetlb.hugemmap12 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap12 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap13.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap13.sh new file mode 100755 index 0000000..5301fa8 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141848-793654781 +# @用例名称: ltp.hugetlb.hugemmap13 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap13 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap14.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap14.sh new file mode 100755 index 0000000..f925c63 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141848-857307101 +# @用例名称: ltp.hugetlb.hugemmap14 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap14 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap15.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap15.sh new file mode 100755 index 0000000..f87386c --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141848-920819059 +# @用例名称: ltp.hugetlb.hugemmap15 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap15 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap16.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap16.sh new file mode 100755 index 0000000..b54bfe8 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141848-984573084 +# @用例名称: ltp.hugetlb.hugemmap16 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap16 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap17.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap17.sh new file mode 100755 index 0000000..a39d089 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141849-047293185 +# @用例名称: ltp.hugetlb.hugemmap17 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap17 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap18.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap18.sh new file mode 100755 index 0000000..9f77fa7 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141849-112283799 +# @用例名称: ltp.hugetlb.hugemmap18 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap18 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap19.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap19.sh new file mode 100755 index 0000000..dcb7d1d --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141849-174740127 +# @用例名称: ltp.hugetlb.hugemmap19 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap19 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap20.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap20.sh new file mode 100755 index 0000000..e1965a5 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap20.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141849-241306488 +# @用例名称: ltp.hugetlb.hugemmap20 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap20 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap21.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap21.sh new file mode 100755 index 0000000..e065062 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141849-309883572 +# @用例名称: ltp.hugetlb.hugemmap21 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap21 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap22.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap22.sh new file mode 100755 index 0000000..68a976d --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap22.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141849-374185257 +# @用例名称: ltp.hugetlb.hugemmap22 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap22 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap23.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap23.sh new file mode 100755 index 0000000..907260e --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap23.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141849-436969183 +# @用例名称: ltp.hugetlb.hugemmap23 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap23 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap23 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap24.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap24.sh new file mode 100755 index 0000000..edf8224 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap24.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141849-500650141 +# @用例名称: ltp.hugetlb.hugemmap24 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap24 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap24 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap25.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap25.sh new file mode 100755 index 0000000..cc51646 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap25.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141849-564480848 +# @用例名称: ltp.hugetlb.hugemmap25 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap25 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap25 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap26.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap26.sh new file mode 100755 index 0000000..e6f385a --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap26.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141849-627853087 +# @用例名称: ltp.hugetlb.hugemmap26 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap26 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap26 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap27.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap27.sh new file mode 100755 index 0000000..1fa6c70 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap27.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141849-693879916 +# @用例名称: ltp.hugetlb.hugemmap27 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap27 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap27 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap28.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap28.sh new file mode 100755 index 0000000..1402bf7 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap28.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141849-756876608 +# @用例名称: ltp.hugetlb.hugemmap28 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap28 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap28 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap29.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap29.sh new file mode 100755 index 0000000..e38993b --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap29.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141849-820947152 +# @用例名称: ltp.hugetlb.hugemmap29 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap29 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap29 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap30.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap30.sh new file mode 100755 index 0000000..01b4c32 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap30.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141849-886743326 +# @用例名称: ltp.hugetlb.hugemmap30 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap30 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap30 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap31.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap31.sh new file mode 100755 index 0000000..8173d79 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap31.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141849-949423043 +# @用例名称: ltp.hugetlb.hugemmap31 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap31 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap31 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap32.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap32.sh new file mode 100755 index 0000000..b6de2b0 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap32.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141850-013436511 +# @用例名称: ltp.hugetlb.hugemmap32 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap32 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap32 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmat01.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmat01.sh new file mode 100755 index 0000000..8ad4a15 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-565204940 +# @用例名称: ltp.hugetlb.hugeshmat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugeshmat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugeshmat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmat02.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmat02.sh new file mode 100755 index 0000000..5daed9f --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmat02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-573956538 +# @用例名称: ltp.hugetlb.hugeshmat02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugeshmat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugeshmat02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmat03.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmat03.sh new file mode 100755 index 0000000..1714cc9 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmat03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-586654112 +# @用例名称: ltp.hugetlb.hugeshmat03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugeshmat03 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugeshmat03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmat04.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmat04.sh new file mode 100755 index 0000000..20f732e --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmat04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-595223570 +# @用例名称: ltp.hugetlb.hugeshmat04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugeshmat04 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugeshmat04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmat05.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmat05.sh new file mode 100755 index 0000000..cec7bf8 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmat05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-603809168 +# @用例名称: ltp.hugetlb.hugeshmat05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugeshmat05 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugeshmat05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmctl01.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmctl01.sh new file mode 100755 index 0000000..97a4ad0 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmctl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-614430266 +# @用例名称: ltp.hugetlb.hugeshmctl01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugeshmctl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugeshmctl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmctl02.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmctl02.sh new file mode 100755 index 0000000..5d01aea --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmctl02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-622987881 +# @用例名称: ltp.hugetlb.hugeshmctl02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugeshmctl02 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugeshmctl02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmctl03.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmctl03.sh new file mode 100755 index 0000000..d74d19e --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmctl03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-632475367 +# @用例名称: ltp.hugetlb.hugeshmctl03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugeshmctl03 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugeshmctl03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmdt01.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmdt01.sh new file mode 100755 index 0000000..8ad1347 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmdt01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-642940152 +# @用例名称: ltp.hugetlb.hugeshmdt01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugeshmdt01 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugeshmdt01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmget01.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmget01.sh new file mode 100755 index 0000000..c655e39 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmget01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-653370533 +# @用例名称: ltp.hugetlb.hugeshmget01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugeshmget01 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugeshmget01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmget02.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmget02.sh new file mode 100755 index 0000000..21ce9c8 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmget02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-665138837 +# @用例名称: ltp.hugetlb.hugeshmget02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugeshmget02 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugeshmget02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmget03.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmget03.sh new file mode 100755 index 0000000..3153099 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmget03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-673963212 +# @用例名称: ltp.hugetlb.hugeshmget03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugeshmget03 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugeshmget03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmget05.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmget05.sh new file mode 100755 index 0000000..6fac8d0 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmget05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-682727485 +# @用例名称: ltp.hugetlb.hugeshmget05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugeshmget05 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugeshmget05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hyperthreading/ltp.hyperthreading.smt_smp_affinity.sh b/testcase/hyperthreading/ltp.hyperthreading.smt_smp_affinity.sh new file mode 100755 index 0000000..b874ca2 --- /dev/null +++ b/testcase/hyperthreading/ltp.hyperthreading.smt_smp_affinity.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-702811512 +# @用例名称: ltp.hyperthreading.smt_smp_affinity +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hyperthreading.smt_smp_affinity + # @预期结果:1: 用例返回0 + ltp_run_testcase hyperthreading smt_smp_affinity + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hyperthreading/ltp.hyperthreading.smt_smp_enabled.sh b/testcase/hyperthreading/ltp.hyperthreading.smt_smp_enabled.sh new file mode 100755 index 0000000..7e9037b --- /dev/null +++ b/testcase/hyperthreading/ltp.hyperthreading.smt_smp_enabled.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-694161413 +# @用例名称: ltp.hyperthreading.smt_smp_enabled +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hyperthreading.smt_smp_enabled + # @预期结果:1: 用例返回0 + ltp_run_testcase hyperthreading smt_smp_enabled + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ima/ltp.ima.evm_overlay.sh b/testcase/ima/ltp.ima.evm_overlay.sh new file mode 100755 index 0000000..961af45 --- /dev/null +++ b/testcase/ima/ltp.ima.evm_overlay.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-792384619 +# @用例名称: ltp.ima.evm_overlay +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ima.evm_overlay + # @预期结果:1: 用例返回0 + ltp_run_testcase ima evm_overlay + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ima/ltp.ima.ima_conditionals.sh b/testcase/ima/ltp.ima.ima_conditionals.sh new file mode 100755 index 0000000..12dce6b --- /dev/null +++ b/testcase/ima/ltp.ima.ima_conditionals.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-777207214 +# @用例名称: ltp.ima.ima_conditionals +# @用例级别: 1 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ima.ima_conditionals + # @预期结果:1: 用例返回0 + ltp_run_testcase ima ima_conditionals + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ima/ltp.ima.ima_kexec.sh b/testcase/ima/ltp.ima.ima_kexec.sh new file mode 100755 index 0000000..692e144 --- /dev/null +++ b/testcase/ima/ltp.ima.ima_kexec.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-759868073 +# @用例名称: ltp.ima.ima_kexec +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ima.ima_kexec + # @预期结果:1: 用例返回0 + ltp_run_testcase ima ima_kexec + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ima/ltp.ima.ima_keys.sh b/testcase/ima/ltp.ima.ima_keys.sh new file mode 100755 index 0000000..03992cd --- /dev/null +++ b/testcase/ima/ltp.ima.ima_keys.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-751054098 +# @用例名称: ltp.ima.ima_keys +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ima.ima_keys + # @预期结果:1: 用例返回0 + ltp_run_testcase ima ima_keys + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ima/ltp.ima.ima_measurements.sh b/testcase/ima/ltp.ima.ima_measurements.sh new file mode 100755 index 0000000..1985b03 --- /dev/null +++ b/testcase/ima/ltp.ima.ima_measurements.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-716148903 +# @用例名称: ltp.ima.ima_measurements +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ima.ima_measurements + # @预期结果:1: 用例返回0 + ltp_run_testcase ima ima_measurements + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ima/ltp.ima.ima_policy.sh b/testcase/ima/ltp.ima.ima_policy.sh new file mode 100755 index 0000000..dd3d36a --- /dev/null +++ b/testcase/ima/ltp.ima.ima_policy.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-724963630 +# @用例名称: ltp.ima.ima_policy +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ima.ima_policy + # @预期结果:1: 用例返回0 + ltp_run_testcase ima ima_policy + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ima/ltp.ima.ima_selinux.sh b/testcase/ima/ltp.ima.ima_selinux.sh new file mode 100755 index 0000000..fcd913e --- /dev/null +++ b/testcase/ima/ltp.ima.ima_selinux.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-768522361 +# @用例名称: ltp.ima.ima_selinux +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ima.ima_selinux + # @预期结果:1: 用例返回0 + ltp_run_testcase ima ima_selinux + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ima/ltp.ima.ima_tpm.sh b/testcase/ima/ltp.ima.ima_tpm.sh new file mode 100755 index 0000000..7543fea --- /dev/null +++ b/testcase/ima/ltp.ima.ima_tpm.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-733664754 +# @用例名称: ltp.ima.ima_tpm +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ima.ima_tpm + # @预期结果:1: 用例返回0 + ltp_run_testcase ima ima_tpm + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ima/ltp.ima.ima_violations.sh b/testcase/ima/ltp.ima.ima_violations.sh new file mode 100755 index 0000000..30e3496 --- /dev/null +++ b/testcase/ima/ltp.ima.ima_violations.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-742409099 +# @用例名称: ltp.ima.ima_violations +# @用例级别: 1 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ima.ima_violations + # @预期结果:1: 用例返回0 + ltp_run_testcase ima ima_violations + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/input/ltp.input.input01.sh b/testcase/input/ltp.input.input01.sh new file mode 100755 index 0000000..c911854 --- /dev/null +++ b/testcase/input/ltp.input.input01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-802708009 +# @用例名称: ltp.input.input01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.input.input01 + # @预期结果:1: 用例返回0 + ltp_run_testcase input input01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/input/ltp.input.input02.sh b/testcase/input/ltp.input.input02.sh new file mode 100755 index 0000000..9bb4ea5 --- /dev/null +++ b/testcase/input/ltp.input.input02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-811499493 +# @用例名称: ltp.input.input02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.input.input02 + # @预期结果:1: 用例返回0 + ltp_run_testcase input input02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/input/ltp.input.input03.sh b/testcase/input/ltp.input.input03.sh new file mode 100755 index 0000000..f26de4d --- /dev/null +++ b/testcase/input/ltp.input.input03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-819924380 +# @用例名称: ltp.input.input03 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.input.input03 + # @预期结果:1: 用例返回0 + ltp_run_testcase input input03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/input/ltp.input.input04.sh b/testcase/input/ltp.input.input04.sh new file mode 100755 index 0000000..584d41a --- /dev/null +++ b/testcase/input/ltp.input.input04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-828354446 +# @用例名称: ltp.input.input04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.input.input04 + # @预期结果:1: 用例返回0 + ltp_run_testcase input input04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/input/ltp.input.input05.sh b/testcase/input/ltp.input.input05.sh new file mode 100755 index 0000000..08f898e --- /dev/null +++ b/testcase/input/ltp.input.input05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-837079505 +# @用例名称: ltp.input.input05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.input.input05 + # @预期结果:1: 用例返回0 + ltp_run_testcase input input05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/input/ltp.input.input06.sh b/testcase/input/ltp.input.input06.sh new file mode 100755 index 0000000..7177088 --- /dev/null +++ b/testcase/input/ltp.input.input06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-845599220 +# @用例名称: ltp.input.input06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.input.input06 + # @预期结果:1: 用例返回0 + ltp_run_testcase input input06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ipc/ltp.ipc.pipeio_1.sh b/testcase/ipc/ltp.ipc.pipeio_1.sh new file mode 100755 index 0000000..9ba7d6e --- /dev/null +++ b/testcase/ipc/ltp.ipc.pipeio_1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-879124844 +# @用例名称: ltp.ipc.pipeio_1 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ipc.pipeio_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase ipc pipeio_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ipc/ltp.ipc.pipeio_3.sh b/testcase/ipc/ltp.ipc.pipeio_3.sh new file mode 100755 index 0000000..81adab1 --- /dev/null +++ b/testcase/ipc/ltp.ipc.pipeio_3.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-893927236 +# @用例名称: ltp.ipc.pipeio_3 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ipc.pipeio_3 + # @预期结果:1: 用例返回0 + ltp_run_testcase ipc pipeio_3 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ipc/ltp.ipc.pipeio_4.sh b/testcase/ipc/ltp.ipc.pipeio_4.sh new file mode 100755 index 0000000..2c2a8d0 --- /dev/null +++ b/testcase/ipc/ltp.ipc.pipeio_4.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-904547332 +# @用例名称: ltp.ipc.pipeio_4 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ipc.pipeio_4 + # @预期结果:1: 用例返回0 + ltp_run_testcase ipc pipeio_4 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ipc/ltp.ipc.pipeio_5.sh b/testcase/ipc/ltp.ipc.pipeio_5.sh new file mode 100755 index 0000000..bff50ad --- /dev/null +++ b/testcase/ipc/ltp.ipc.pipeio_5.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-915119648 +# @用例名称: ltp.ipc.pipeio_5 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ipc.pipeio_5 + # @预期结果:1: 用例返回0 + ltp_run_testcase ipc pipeio_5 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ipc/ltp.ipc.pipeio_6.sh b/testcase/ipc/ltp.ipc.pipeio_6.sh new file mode 100755 index 0000000..8e95b43 --- /dev/null +++ b/testcase/ipc/ltp.ipc.pipeio_6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-925739233 +# @用例名称: ltp.ipc.pipeio_6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ipc.pipeio_6 + # @预期结果:1: 用例返回0 + ltp_run_testcase ipc pipeio_6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ipc/ltp.ipc.pipeio_8.sh b/testcase/ipc/ltp.ipc.pipeio_8.sh new file mode 100755 index 0000000..ba57ad2 --- /dev/null +++ b/testcase/ipc/ltp.ipc.pipeio_8.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-940376326 +# @用例名称: ltp.ipc.pipeio_8 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ipc.pipeio_8 + # @预期结果:1: 用例返回0 + ltp_run_testcase ipc pipeio_8 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/irq/ltp.irq.irqbalance01.sh b/testcase/irq/ltp.irq.irqbalance01.sh new file mode 100755 index 0000000..54a7164 --- /dev/null +++ b/testcase/irq/ltp.irq.irqbalance01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-973412975 +# @用例名称: ltp.irq.irqbalance01 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.irq.irqbalance01 + # @预期结果:1: 用例返回0 + ltp_run_testcase irq irqbalance01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.aslr01.sh b/testcase/kernel_misc/ltp.kernel_misc.aslr01.sh new file mode 100755 index 0000000..d3d3f94 --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.aslr01.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172826-823089924 +# @用例名称: ltp.kernel_misc.aslr01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.aslr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc aslr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.block_dev.sh b/testcase/kernel_misc/ltp.kernel_misc.block_dev.sh new file mode 100755 index 0000000..900580c --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.block_dev.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-018324336 +# @用例名称: ltp.kernel_misc.block_dev +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.block_dev + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc block_dev + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.cn_pec_sh.sh b/testcase/kernel_misc/ltp.kernel_misc.cn_pec_sh.sh new file mode 100755 index 0000000..37100ca --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.cn_pec_sh.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172826-747161450 +# @用例名称: ltp.kernel_misc.cn_pec_sh +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.cn_pec_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc cn_pec_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.cpufreq_boost.sh b/testcase/kernel_misc/ltp.kernel_misc.cpufreq_boost.sh new file mode 100755 index 0000000..97841d1 --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.cpufreq_boost.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-056569151 +# @用例名称: ltp.kernel_misc.cpufreq_boost +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.cpufreq_boost + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc cpufreq_boost + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.fw_load.sh b/testcase/kernel_misc/ltp.kernel_misc.fw_load.sh new file mode 100755 index 0000000..bc8afa1 --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.fw_load.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-992342701 +# @用例名称: ltp.kernel_misc.fw_load +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.fw_load + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc fw_load + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.kmsg01.sh b/testcase/kernel_misc/ltp.kernel_misc.kmsg01.sh new file mode 100755 index 0000000..38d589b --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.kmsg01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212955-983662537 +# @用例名称: ltp.kernel_misc.kmsg01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.kmsg01 + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc kmsg01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.lock_torture.sh b/testcase/kernel_misc/ltp.kernel_misc.lock_torture.sh new file mode 100755 index 0000000..bd06083 --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.lock_torture.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-082406045 +# @用例名称: ltp.kernel_misc.lock_torture +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.lock_torture + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc lock_torture + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.ltp_acpi.sh b/testcase/kernel_misc/ltp.kernel_misc.ltp_acpi.sh new file mode 100755 index 0000000..dbb0a31 --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.ltp_acpi.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-048063464 +# @用例名称: ltp.kernel_misc.ltp_acpi +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.ltp_acpi + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc ltp_acpi + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.rcu_torture.sh b/testcase/kernel_misc/ltp.kernel_misc.rcu_torture.sh new file mode 100755 index 0000000..abaea2c --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.rcu_torture.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-073833972 +# @用例名称: ltp.kernel_misc.rcu_torture +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.rcu_torture + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc rcu_torture + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.rtc01.sh b/testcase/kernel_misc/ltp.kernel_misc.rtc01.sh new file mode 100755 index 0000000..42e2abd --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.rtc01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-001002348 +# @用例名称: ltp.kernel_misc.rtc01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.rtc01 + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc rtc01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.rtc02.sh b/testcase/kernel_misc/ltp.kernel_misc.rtc02.sh new file mode 100755 index 0000000..efe9b47 --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.rtc02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-009612572 +# @用例名称: ltp.kernel_misc.rtc02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.rtc02 + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc rtc02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.tbio.sh b/testcase/kernel_misc/ltp.kernel_misc.tbio.sh new file mode 100755 index 0000000..3f88a0f --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.tbio.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-035552729 +# @用例名称: ltp.kernel_misc.tbio +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.tbio + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc tbio + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.tpci.sh b/testcase/kernel_misc/ltp.kernel_misc.tpci.sh new file mode 100755 index 0000000..4c9061a --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.tpci.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-026931816 +# @用例名称: ltp.kernel_misc.tpci +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.tpci + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc tpci + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.uaccess.sh b/testcase/kernel_misc/ltp.kernel_misc.uaccess.sh new file mode 100755 index 0000000..14174e7 --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.uaccess.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-065268803 +# @用例名称: ltp.kernel_misc.uaccess +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.uaccess + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc uaccess + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.umip_basic_test.sh b/testcase/kernel_misc/ltp.kernel_misc.umip_basic_test.sh new file mode 100755 index 0000000..0958d0b --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.umip_basic_test.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-116994799 +# @用例名称: ltp.kernel_misc.umip_basic_test +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.umip_basic_test + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc umip_basic_test + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.zram01.sh b/testcase/kernel_misc/ltp.kernel_misc.zram01.sh new file mode 100755 index 0000000..cc1d750 --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.zram01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-091003586 +# @用例名称: ltp.kernel_misc.zram01 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.zram01 + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc zram01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.zram02.sh b/testcase/kernel_misc/ltp.kernel_misc.zram02.sh new file mode 100755 index 0000000..d4b3927 --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.zram02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-099516017 +# @用例名称: ltp.kernel_misc.zram02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.zram02 + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc zram02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kernel_misc/ltp.kernel_misc.zram03.sh b/testcase/kernel_misc/ltp.kernel_misc.zram03.sh new file mode 100755 index 0000000..1acbc6e --- /dev/null +++ b/testcase/kernel_misc/ltp.kernel_misc.zram03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-108089712 +# @用例名称: ltp.kernel_misc.zram03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kernel_misc.zram03 + # @预期结果:1: 用例返回0 + ltp_run_testcase kernel_misc zram03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kvm/ltp.kvm.kvm_pagefault01.sh b/testcase/kvm/ltp.kvm.kvm_pagefault01.sh new file mode 100755 index 0000000..07e01d0 --- /dev/null +++ b/testcase/kvm/ltp.kvm.kvm_pagefault01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141850-078252357 +# @用例名称: ltp.kvm.kvm_pagefault01 +# @用例级别: 3 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kvm.kvm_pagefault01 + # @预期结果:1: 用例返回0 + ltp_run_testcase kvm kvm_pagefault01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kvm/ltp.kvm.kvm_svm01.sh b/testcase/kvm/ltp.kvm.kvm_svm01.sh new file mode 100755 index 0000000..a8fea69 --- /dev/null +++ b/testcase/kvm/ltp.kvm.kvm_svm01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141850-143626652 +# @用例名称: ltp.kvm.kvm_svm01 +# @用例级别: 3 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kvm.kvm_svm01 + # @预期结果:1: 用例返回0 + ltp_run_testcase kvm kvm_svm01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kvm/ltp.kvm.kvm_svm02.sh b/testcase/kvm/ltp.kvm.kvm_svm02.sh new file mode 100755 index 0000000..d4b25e4 --- /dev/null +++ b/testcase/kvm/ltp.kvm.kvm_svm02.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172826-897205131 +# @用例名称: ltp.kvm.kvm_svm02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kvm.kvm_svm02 + # @预期结果:1: 用例返回0 + ltp_run_testcase kvm kvm_svm02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kvm/ltp.kvm.kvm_svm03.sh b/testcase/kvm/ltp.kvm.kvm_svm03.sh new file mode 100755 index 0000000..73d4c2d --- /dev/null +++ b/testcase/kvm/ltp.kvm.kvm_svm03.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172826-972335434 +# @用例名称: ltp.kvm.kvm_svm03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kvm.kvm_svm03 + # @预期结果:1: 用例返回0 + ltp_run_testcase kvm kvm_svm03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kvm/ltp.kvm.kvm_svm04.sh b/testcase/kvm/ltp.kvm.kvm_svm04.sh new file mode 100755 index 0000000..52cece7 --- /dev/null +++ b/testcase/kvm/ltp.kvm.kvm_svm04.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172827-045452845 +# @用例名称: ltp.kvm.kvm_svm04 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kvm.kvm_svm04 + # @预期结果:1: 用例返回0 + ltp_run_testcase kvm kvm_svm04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1000.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1000.sh new file mode 100755 index 0000000..bf25f04 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1000.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-740608977 +# @用例名称: ltp.ltp-aio-stress.ADS1000 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1000 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1000 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1001.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1001.sh new file mode 100755 index 0000000..59502bb --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1001.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-749455744 +# @用例名称: ltp.ltp-aio-stress.ADS1001 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1001 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1001 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1002.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1002.sh new file mode 100755 index 0000000..8a8cf15 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1002.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-758228412 +# @用例名称: ltp.ltp-aio-stress.ADS1002 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1002 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1002 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1003.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1003.sh new file mode 100755 index 0000000..54c930b --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1003.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-766925589 +# @用例名称: ltp.ltp-aio-stress.ADS1003 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1003 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1003 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1004.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1004.sh new file mode 100755 index 0000000..e18e68a --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1004.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-775662109 +# @用例名称: ltp.ltp-aio-stress.ADS1004 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1004 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1004 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1005.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1005.sh new file mode 100755 index 0000000..2d43f35 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1005.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-784532841 +# @用例名称: ltp.ltp-aio-stress.ADS1005 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1005 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1005 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1006.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1006.sh new file mode 100755 index 0000000..8ecd2b6 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1006.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-793138957 +# @用例名称: ltp.ltp-aio-stress.ADS1006 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1006 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1006 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1007.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1007.sh new file mode 100755 index 0000000..3465074 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1007.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-801707624 +# @用例名称: ltp.ltp-aio-stress.ADS1007 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1007 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1007 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1008.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1008.sh new file mode 100755 index 0000000..8223021 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1008.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-810424608 +# @用例名称: ltp.ltp-aio-stress.ADS1008 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1008 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1008 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1009.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1009.sh new file mode 100755 index 0000000..b4be039 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1009.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-819166879 +# @用例名称: ltp.ltp-aio-stress.ADS1009 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1009 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1009 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1010.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1010.sh new file mode 100755 index 0000000..f338f3f --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1010.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-827934367 +# @用例名称: ltp.ltp-aio-stress.ADS1010 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1010 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1010 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1011.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1011.sh new file mode 100755 index 0000000..0d4c11e --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1011.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-836608601 +# @用例名称: ltp.ltp-aio-stress.ADS1011 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1011 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1011 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1012.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1012.sh new file mode 100755 index 0000000..ce773bb --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1012.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-845328290 +# @用例名称: ltp.ltp-aio-stress.ADS1012 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1012 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1012 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1013.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1013.sh new file mode 100755 index 0000000..79e870b --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1013.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-853963832 +# @用例名称: ltp.ltp-aio-stress.ADS1013 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1013 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1013 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1014.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1014.sh new file mode 100755 index 0000000..a661c5d --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1014.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-862724537 +# @用例名称: ltp.ltp-aio-stress.ADS1014 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1014 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1014 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1015.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1015.sh new file mode 100755 index 0000000..252e5cd --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1015.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-871654810 +# @用例名称: ltp.ltp-aio-stress.ADS1015 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1015 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1015 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1016.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1016.sh new file mode 100755 index 0000000..d8bd3f9 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1016.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-880385850 +# @用例名称: ltp.ltp-aio-stress.ADS1016 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1016 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1016 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1017.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1017.sh new file mode 100755 index 0000000..dfc14b2 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1017.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-889049826 +# @用例名称: ltp.ltp-aio-stress.ADS1017 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1017 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1017 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1018.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1018.sh new file mode 100755 index 0000000..72d6c0f --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1018.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-897603493 +# @用例名称: ltp.ltp-aio-stress.ADS1018 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1018 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1018 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1019.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1019.sh new file mode 100755 index 0000000..ea364dd --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1019.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-906205833 +# @用例名称: ltp.ltp-aio-stress.ADS1019 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1019 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1019 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1020.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1020.sh new file mode 100755 index 0000000..89cbc0d --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1020.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-914835783 +# @用例名称: ltp.ltp-aio-stress.ADS1020 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1020 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1020 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1021.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1021.sh new file mode 100755 index 0000000..939f3f5 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1021.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-923421602 +# @用例名称: ltp.ltp-aio-stress.ADS1021 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1021 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1021 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1022.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1022.sh new file mode 100755 index 0000000..b99c5d2 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1022.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-932226260 +# @用例名称: ltp.ltp-aio-stress.ADS1022 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1022 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1022 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1023.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1023.sh new file mode 100755 index 0000000..6a11145 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1023.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-940968451 +# @用例名称: ltp.ltp-aio-stress.ADS1023 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1023 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1023 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1024.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1024.sh new file mode 100755 index 0000000..798b724 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1024.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-950930215 +# @用例名称: ltp.ltp-aio-stress.ADS1024 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1024 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1024 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1025.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1025.sh new file mode 100755 index 0000000..d10200c --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1025.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-959792932 +# @用例名称: ltp.ltp-aio-stress.ADS1025 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1025 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1025 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1026.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1026.sh new file mode 100755 index 0000000..97e6ca6 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1026.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-968492874 +# @用例名称: ltp.ltp-aio-stress.ADS1026 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1026 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1026 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1027.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1027.sh new file mode 100755 index 0000000..a32ef1d --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1027.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-977022828 +# @用例名称: ltp.ltp-aio-stress.ADS1027 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1027 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1027 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1028.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1028.sh new file mode 100755 index 0000000..649b325 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1028.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-985589199 +# @用例名称: ltp.ltp-aio-stress.ADS1028 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1028 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1028 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1029.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1029.sh new file mode 100755 index 0000000..f1a41fc --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1029.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-995421570 +# @用例名称: ltp.ltp-aio-stress.ADS1029 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1029 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1029 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1030.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1030.sh new file mode 100755 index 0000000..9dde391 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1030.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-004050260 +# @用例名称: ltp.ltp-aio-stress.ADS1030 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1030 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1030 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1031.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1031.sh new file mode 100755 index 0000000..ef37e51 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1031.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-012735494 +# @用例名称: ltp.ltp-aio-stress.ADS1031 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1031 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1031 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1032.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1032.sh new file mode 100755 index 0000000..622eeaa --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1032.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-021355657 +# @用例名称: ltp.ltp-aio-stress.ADS1032 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1032 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1032 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1033.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1033.sh new file mode 100755 index 0000000..f1d6b1b --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1033.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-030164572 +# @用例名称: ltp.ltp-aio-stress.ADS1033 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1033 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1033 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1034.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1034.sh new file mode 100755 index 0000000..9328151 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1034.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-038888970 +# @用例名称: ltp.ltp-aio-stress.ADS1034 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1034 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1034 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1035.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1035.sh new file mode 100755 index 0000000..2d48b1c --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1035.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-047658452 +# @用例名称: ltp.ltp-aio-stress.ADS1035 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1035 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1035 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1036.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1036.sh new file mode 100755 index 0000000..d29de2e --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1036.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-056511591 +# @用例名称: ltp.ltp-aio-stress.ADS1036 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1036 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1036 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1037.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1037.sh new file mode 100755 index 0000000..3fd77b0 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1037.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-068235793 +# @用例名称: ltp.ltp-aio-stress.ADS1037 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1037 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1037 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1038.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1038.sh new file mode 100755 index 0000000..ac0ea05 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1038.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-077199960 +# @用例名称: ltp.ltp-aio-stress.ADS1038 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1038 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1038 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1039.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1039.sh new file mode 100755 index 0000000..e62d79c --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1039.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-086554005 +# @用例名称: ltp.ltp-aio-stress.ADS1039 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1039 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1039 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1040.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1040.sh new file mode 100755 index 0000000..78b5d5a --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1040.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-095356720 +# @用例名称: ltp.ltp-aio-stress.ADS1040 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1040 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1040 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1041.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1041.sh new file mode 100755 index 0000000..e764edb --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1041.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-104027507 +# @用例名称: ltp.ltp-aio-stress.ADS1041 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1041 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1041 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1042.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1042.sh new file mode 100755 index 0000000..6d44c4a --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1042.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-112985383 +# @用例名称: ltp.ltp-aio-stress.ADS1042 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1042 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1042 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1043.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1043.sh new file mode 100755 index 0000000..1d8c43c --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1043.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-121677079 +# @用例名称: ltp.ltp-aio-stress.ADS1043 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1043 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1043 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1044.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1044.sh new file mode 100755 index 0000000..58fd643 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1044.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-131195352 +# @用例名称: ltp.ltp-aio-stress.ADS1044 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1044 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1044 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1045.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1045.sh new file mode 100755 index 0000000..a84c0cd --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1045.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-140060964 +# @用例名称: ltp.ltp-aio-stress.ADS1045 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1045 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1045 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1046.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1046.sh new file mode 100755 index 0000000..0d3efa8 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1046.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-149413257 +# @用例名称: ltp.ltp-aio-stress.ADS1046 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1046 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1046 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1047.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1047.sh new file mode 100755 index 0000000..e8bcdcd --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1047.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-158231621 +# @用例名称: ltp.ltp-aio-stress.ADS1047 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1047 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1047 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1048.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1048.sh new file mode 100755 index 0000000..7407db9 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1048.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-166980184 +# @用例名称: ltp.ltp-aio-stress.ADS1048 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1048 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1048 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1049.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1049.sh new file mode 100755 index 0000000..79c1b40 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1049.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-175638638 +# @用例名称: ltp.ltp-aio-stress.ADS1049 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1049 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1049 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1050.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1050.sh new file mode 100755 index 0000000..5749b97 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1050.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-184416516 +# @用例名称: ltp.ltp-aio-stress.ADS1050 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1050 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1050 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1051.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1051.sh new file mode 100755 index 0000000..9fd1e63 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1051.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-150321-363386216 +# @用例名称: ltp.ltp-aio-stress.ADS1051 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1051 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1051 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1052.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1052.sh new file mode 100755 index 0000000..0b5c382 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1052.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-150321-428201671 +# @用例名称: ltp.ltp-aio-stress.ADS1052 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1052 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1052 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1053.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1053.sh new file mode 100755 index 0000000..8f69672 --- /dev/null +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1053.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-150344-665374327 +# @用例名称: ltp.ltp-aio-stress.ADS1053 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aio-stress.ADS1053 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aio-stress ADS1053 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD001.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD001.sh new file mode 100755 index 0000000..ab4d680 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD001.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-129530720 +# @用例名称: ltp.ltp-aiodio.part1.AD001 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD001 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD001 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD002.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD002.sh new file mode 100755 index 0000000..1bf3afd --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD002.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-138241432 +# @用例名称: ltp.ltp-aiodio.part1.AD002 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD002 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD002 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD003.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD003.sh new file mode 100755 index 0000000..b25001d --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD003.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-147425680 +# @用例名称: ltp.ltp-aiodio.part1.AD003 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD003 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD003 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD004.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD004.sh new file mode 100755 index 0000000..13299c4 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD004.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-155995218 +# @用例名称: ltp.ltp-aiodio.part1.AD004 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD004 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD004 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD005.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD005.sh new file mode 100755 index 0000000..3a988bc --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD005.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-164603900 +# @用例名称: ltp.ltp-aiodio.part1.AD005 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD005 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD005 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD006.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD006.sh new file mode 100755 index 0000000..d8dbfee --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD006.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-173076646 +# @用例名称: ltp.ltp-aiodio.part1.AD006 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD006 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD006 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD007.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD007.sh new file mode 100755 index 0000000..3d3255d --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD007.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-181553992 +# @用例名称: ltp.ltp-aiodio.part1.AD007 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD007 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD007 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD008.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD008.sh new file mode 100755 index 0000000..8540d92 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD008.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-190057125 +# @用例名称: ltp.ltp-aiodio.part1.AD008 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD008 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD008 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD009.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD009.sh new file mode 100755 index 0000000..541d3dd --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD009.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-198599803 +# @用例名称: ltp.ltp-aiodio.part1.AD009 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD009 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD009 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD010.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD010.sh new file mode 100755 index 0000000..77685df --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD010.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-207092708 +# @用例名称: ltp.ltp-aiodio.part1.AD010 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD010 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD010 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD011.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD011.sh new file mode 100755 index 0000000..fbe6c85 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD011.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141850-207610435 +# @用例名称: ltp.ltp-aiodio.part1.AD011 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD011 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD011 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD012.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD012.sh new file mode 100755 index 0000000..3d0e2c1 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD012.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-215575373 +# @用例名称: ltp.ltp-aiodio.part1.AD012 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD012 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD012 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD013.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD013.sh new file mode 100755 index 0000000..31c26b7 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD013.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-224124453 +# @用例名称: ltp.ltp-aiodio.part1.AD013 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD013 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD013 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD014.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD014.sh new file mode 100755 index 0000000..4a807a6 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD014.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-232595456 +# @用例名称: ltp.ltp-aiodio.part1.AD014 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD014 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD014 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD015.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD015.sh new file mode 100755 index 0000000..42c7a3a --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD015.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-241299416 +# @用例名称: ltp.ltp-aiodio.part1.AD015 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD015 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD015 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD016.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD016.sh new file mode 100755 index 0000000..5297564 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD016.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-249819231 +# @用例名称: ltp.ltp-aiodio.part1.AD016 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD016 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD016 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD017.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD017.sh new file mode 100755 index 0000000..c554a58 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD017.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-258449572 +# @用例名称: ltp.ltp-aiodio.part1.AD017 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD017 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD017 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD018.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD018.sh new file mode 100755 index 0000000..5a7f8df --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD018.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-267139305 +# @用例名称: ltp.ltp-aiodio.part1.AD018 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD018 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD018 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD019.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD019.sh new file mode 100755 index 0000000..e898b3c --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD019.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-275682994 +# @用例名称: ltp.ltp-aiodio.part1.AD019 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD019 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD019 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD020.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD020.sh new file mode 100755 index 0000000..1eccb1e --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD020.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-284242123 +# @用例名称: ltp.ltp-aiodio.part1.AD020 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD020 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD020 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD021.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD021.sh new file mode 100755 index 0000000..f5a9b35 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD021.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-292785522 +# @用例名称: ltp.ltp-aiodio.part1.AD021 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD021 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD021 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD022.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD022.sh new file mode 100755 index 0000000..7a9fde5 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD022.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-301311659 +# @用例名称: ltp.ltp-aiodio.part1.AD022 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD022 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD022 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD023.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD023.sh new file mode 100755 index 0000000..8c0ed40 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD023.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-311516267 +# @用例名称: ltp.ltp-aiodio.part1.AD023 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD023 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD023 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD024.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD024.sh new file mode 100755 index 0000000..e1a6920 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD024.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-320009492 +# @用例名称: ltp.ltp-aiodio.part1.AD024 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD024 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD024 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD025.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD025.sh new file mode 100755 index 0000000..a137959 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD025.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-328529047 +# @用例名称: ltp.ltp-aiodio.part1.AD025 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD025 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD025 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD026.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD026.sh new file mode 100755 index 0000000..44bea49 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD026.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-337036398 +# @用例名称: ltp.ltp-aiodio.part1.AD026 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD026 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD026 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD027.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD027.sh new file mode 100755 index 0000000..442aefc --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD027.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-345707957 +# @用例名称: ltp.ltp-aiodio.part1.AD027 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD027 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD027 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD028.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD028.sh new file mode 100755 index 0000000..aee90ff --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD028.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-354414130 +# @用例名称: ltp.ltp-aiodio.part1.AD028 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD028 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD028 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD029.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD029.sh new file mode 100755 index 0000000..6c741b1 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD029.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-363006271 +# @用例名称: ltp.ltp-aiodio.part1.AD029 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD029 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD029 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD030.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD030.sh new file mode 100755 index 0000000..8c35f1b --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD030.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-371528390 +# @用例名称: ltp.ltp-aiodio.part1.AD030 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD030 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD030 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD031.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD031.sh new file mode 100755 index 0000000..10398d9 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD031.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-379993272 +# @用例名称: ltp.ltp-aiodio.part1.AD031 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD031 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD031 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD032.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD032.sh new file mode 100755 index 0000000..823813e --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD032.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-388417678 +# @用例名称: ltp.ltp-aiodio.part1.AD032 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD032 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD032 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD033.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD033.sh new file mode 100755 index 0000000..6533e1e --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD033.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-397037010 +# @用例名称: ltp.ltp-aiodio.part1.AD033 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD033 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD033 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD034.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD034.sh new file mode 100755 index 0000000..87af55f --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD034.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-405583745 +# @用例名称: ltp.ltp-aiodio.part1.AD034 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD034 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD034 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD035.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD035.sh new file mode 100755 index 0000000..0aaff02 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD035.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-414102689 +# @用例名称: ltp.ltp-aiodio.part1.AD035 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD035 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD035 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD036.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD036.sh new file mode 100755 index 0000000..6e9580a --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD036.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-422543566 +# @用例名称: ltp.ltp-aiodio.part1.AD036 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD036 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD036 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD037.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD037.sh new file mode 100755 index 0000000..ca55830 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD037.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-431156474 +# @用例名称: ltp.ltp-aiodio.part1.AD037 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD037 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD037 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD038.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD038.sh new file mode 100755 index 0000000..6ccbfc3 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD038.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-439741942 +# @用例名称: ltp.ltp-aiodio.part1.AD038 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD038 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD038 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD039.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD039.sh new file mode 100755 index 0000000..a738d47 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD039.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-448380369 +# @用例名称: ltp.ltp-aiodio.part1.AD039 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD039 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD039 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD040.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD040.sh new file mode 100755 index 0000000..1176df7 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD040.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-457013957 +# @用例名称: ltp.ltp-aiodio.part1.AD040 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD040 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD040 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD041.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD041.sh new file mode 100755 index 0000000..fc569cc --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD041.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-465942887 +# @用例名称: ltp.ltp-aiodio.part1.AD041 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD041 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD041 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD042.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD042.sh new file mode 100755 index 0000000..0154b7c --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD042.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-474468022 +# @用例名称: ltp.ltp-aiodio.part1.AD042 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD042 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD042 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD043.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD043.sh new file mode 100755 index 0000000..380c4e8 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD043.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-483104184 +# @用例名称: ltp.ltp-aiodio.part1.AD043 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD043 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD043 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD044.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD044.sh new file mode 100755 index 0000000..02c8b01 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD044.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-491747140 +# @用例名称: ltp.ltp-aiodio.part1.AD044 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD044 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD044 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD045.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD045.sh new file mode 100755 index 0000000..34b4a85 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD045.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-500238752 +# @用例名称: ltp.ltp-aiodio.part1.AD045 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD045 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD045 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD046.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD046.sh new file mode 100755 index 0000000..05cd1c7 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD046.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-508833818 +# @用例名称: ltp.ltp-aiodio.part1.AD046 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD046 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD046 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD047.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD047.sh new file mode 100755 index 0000000..9cb579b --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD047.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-517433062 +# @用例名称: ltp.ltp-aiodio.part1.AD047 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD047 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD047 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD048.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD048.sh new file mode 100755 index 0000000..df826ec --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD048.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-526029190 +# @用例名称: ltp.ltp-aiodio.part1.AD048 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD048 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD048 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD049.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD049.sh new file mode 100755 index 0000000..03c1cf6 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD049.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-534731937 +# @用例名称: ltp.ltp-aiodio.part1.AD049 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD049 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD049 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD050.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD050.sh new file mode 100755 index 0000000..4e5e4b6 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD050.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-543307446 +# @用例名称: ltp.ltp-aiodio.part1.AD050 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD050 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD050 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD051.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD051.sh new file mode 100755 index 0000000..7fba931 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD051.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-551890899 +# @用例名称: ltp.ltp-aiodio.part1.AD051 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD051 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD051 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD052.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD052.sh new file mode 100755 index 0000000..3ecf7ea --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD052.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-560557610 +# @用例名称: ltp.ltp-aiodio.part1.AD052 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD052 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD052 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD053.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD053.sh new file mode 100755 index 0000000..59afc33 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD053.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-569402142 +# @用例名称: ltp.ltp-aiodio.part1.AD053 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD053 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD053 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD054.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD054.sh new file mode 100755 index 0000000..c8db25b --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD054.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-577997098 +# @用例名称: ltp.ltp-aiodio.part1.AD054 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD054 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD054 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD055.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD055.sh new file mode 100755 index 0000000..1cd41c6 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD055.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-586577065 +# @用例名称: ltp.ltp-aiodio.part1.AD055 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD055 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD055 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD056.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD056.sh new file mode 100755 index 0000000..223557b --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD056.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-595707152 +# @用例名称: ltp.ltp-aiodio.part1.AD056 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD056 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD056 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD057.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD057.sh new file mode 100755 index 0000000..500ba0d --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD057.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-604781916 +# @用例名称: ltp.ltp-aiodio.part1.AD057 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD057 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD057 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD058.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD058.sh new file mode 100755 index 0000000..4ee6da4 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD058.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-613537943 +# @用例名称: ltp.ltp-aiodio.part1.AD058 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD058 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD058 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD059.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD059.sh new file mode 100755 index 0000000..e48d35c --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD059.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-622214982 +# @用例名称: ltp.ltp-aiodio.part1.AD059 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD059 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD059 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD060.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD060.sh new file mode 100755 index 0000000..a5c56d0 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD060.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-630717995 +# @用例名称: ltp.ltp-aiodio.part1.AD060 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD060 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD060 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD061.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD061.sh new file mode 100755 index 0000000..eaa6cdf --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD061.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-639248951 +# @用例名称: ltp.ltp-aiodio.part1.AD061 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD061 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD061 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD062.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD062.sh new file mode 100755 index 0000000..ee88ef8 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD062.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-647839668 +# @用例名称: ltp.ltp-aiodio.part1.AD062 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD062 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD062 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD063.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD063.sh new file mode 100755 index 0000000..79aee76 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD063.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-656333825 +# @用例名称: ltp.ltp-aiodio.part1.AD063 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD063 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD063 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD064.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD064.sh new file mode 100755 index 0000000..6f4783e --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD064.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-666113658 +# @用例名称: ltp.ltp-aiodio.part1.AD064 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD064 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD064 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD065.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD065.sh new file mode 100755 index 0000000..0280f63 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD065.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-674865587 +# @用例名称: ltp.ltp-aiodio.part1.AD065 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD065 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD065 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD066.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD066.sh new file mode 100755 index 0000000..2457e04 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD066.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-683403466 +# @用例名称: ltp.ltp-aiodio.part1.AD066 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD066 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD066 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD067.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD067.sh new file mode 100755 index 0000000..247900a --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD067.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-692047754 +# @用例名称: ltp.ltp-aiodio.part1.AD067 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD067 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD067 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD068.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD068.sh new file mode 100755 index 0000000..15ff035 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD068.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-700610279 +# @用例名称: ltp.ltp-aiodio.part1.AD068 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD068 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD068 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD069.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD069.sh new file mode 100755 index 0000000..d8227fd --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD069.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-709167203 +# @用例名称: ltp.ltp-aiodio.part1.AD069 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD069 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD069 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD070.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD070.sh new file mode 100755 index 0000000..d1925b3 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD070.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-717826460 +# @用例名称: ltp.ltp-aiodio.part1.AD070 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD070 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD070 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD071.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD071.sh new file mode 100755 index 0000000..75ecb39 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD071.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-726470627 +# @用例名称: ltp.ltp-aiodio.part1.AD071 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD071 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD071 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD072.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD072.sh new file mode 100755 index 0000000..66d2a0c --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD072.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-735164808 +# @用例名称: ltp.ltp-aiodio.part1.AD072 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD072 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD072 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD073.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD073.sh new file mode 100755 index 0000000..540dc3a --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD073.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-743738193 +# @用例名称: ltp.ltp-aiodio.part1.AD073 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD073 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD073 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD074.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD074.sh new file mode 100755 index 0000000..5cc88cc --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD074.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-752824388 +# @用例名称: ltp.ltp-aiodio.part1.AD074 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD074 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD074 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD075.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD075.sh new file mode 100755 index 0000000..349daa8 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD075.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-761472313 +# @用例名称: ltp.ltp-aiodio.part1.AD075 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD075 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD075 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD076.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD076.sh new file mode 100755 index 0000000..9405822 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD076.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-772346865 +# @用例名称: ltp.ltp-aiodio.part1.AD076 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD076 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD076 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD077.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD077.sh new file mode 100755 index 0000000..208748b --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD077.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-780885966 +# @用例名称: ltp.ltp-aiodio.part1.AD077 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD077 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD077 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD078.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD078.sh new file mode 100755 index 0000000..5094c27 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD078.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-789368651 +# @用例名称: ltp.ltp-aiodio.part1.AD078 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD078 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD078 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD079.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD079.sh new file mode 100755 index 0000000..afab818 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD079.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-797901199 +# @用例名称: ltp.ltp-aiodio.part1.AD079 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD079 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD079 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD080.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD080.sh new file mode 100755 index 0000000..c1443ff --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD080.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-806349190 +# @用例名称: ltp.ltp-aiodio.part1.AD080 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD080 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD080 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD081.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD081.sh new file mode 100755 index 0000000..69d1c38 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD081.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-814780830 +# @用例名称: ltp.ltp-aiodio.part1.AD081 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD081 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD081 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD082.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD082.sh new file mode 100755 index 0000000..1283bc3 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD082.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-825954591 +# @用例名称: ltp.ltp-aiodio.part1.AD082 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD082 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD082 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD083.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD083.sh new file mode 100755 index 0000000..68ef41e --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD083.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-834561059 +# @用例名称: ltp.ltp-aiodio.part1.AD083 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD083 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD083 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD084.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD084.sh new file mode 100755 index 0000000..023813a --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD084.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-843161405 +# @用例名称: ltp.ltp-aiodio.part1.AD084 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD084 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD084 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD085.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD085.sh new file mode 100755 index 0000000..b8f80d0 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD085.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-851807686 +# @用例名称: ltp.ltp-aiodio.part1.AD085 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD085 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD085 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD086.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD086.sh new file mode 100755 index 0000000..10240b8 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD086.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-860421477 +# @用例名称: ltp.ltp-aiodio.part1.AD086 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD086 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD086 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD087.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD087.sh new file mode 100755 index 0000000..a754df0 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD087.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-873362456 +# @用例名称: ltp.ltp-aiodio.part1.AD087 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD087 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD087 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD088.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD088.sh new file mode 100755 index 0000000..2d3217b --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD088.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-882010301 +# @用例名称: ltp.ltp-aiodio.part1.AD088 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD088 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD088 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD089.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD089.sh new file mode 100755 index 0000000..a77bb5d --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD089.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-890631976 +# @用例名称: ltp.ltp-aiodio.part1.AD089 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD089 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD089 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD090.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD090.sh new file mode 100755 index 0000000..604007e --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD090.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-899363316 +# @用例名称: ltp.ltp-aiodio.part1.AD090 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD090 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD090 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD091.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD091.sh new file mode 100755 index 0000000..6aa87d4 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD091.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-908110547 +# @用例名称: ltp.ltp-aiodio.part1.AD091 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD091 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD091 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD092.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD092.sh new file mode 100755 index 0000000..7babb3d --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD092.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-916894166 +# @用例名称: ltp.ltp-aiodio.part1.AD092 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD092 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD092 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD093.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD093.sh new file mode 100755 index 0000000..0cb7649 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD093.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-925577897 +# @用例名称: ltp.ltp-aiodio.part1.AD093 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD093 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD093 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD094.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD094.sh new file mode 100755 index 0000000..b0bf427 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD094.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-934867362 +# @用例名称: ltp.ltp-aiodio.part1.AD094 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD094 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD094 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD095.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD095.sh new file mode 100755 index 0000000..e284e0d --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD095.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-943707948 +# @用例名称: ltp.ltp-aiodio.part1.AD095 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD095 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD095 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD096.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD096.sh new file mode 100755 index 0000000..d36b7c2 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD096.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-952377583 +# @用例名称: ltp.ltp-aiodio.part1.AD096 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD096 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD096 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD097.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD097.sh new file mode 100755 index 0000000..bcc0820 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD097.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-960980444 +# @用例名称: ltp.ltp-aiodio.part1.AD097 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD097 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD097 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD098.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD098.sh new file mode 100755 index 0000000..6546905 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD098.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-969454623 +# @用例名称: ltp.ltp-aiodio.part1.AD098 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD098 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD098 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD099.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD099.sh new file mode 100755 index 0000000..ed29e6f --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD099.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-978910449 +# @用例名称: ltp.ltp-aiodio.part1.AD099 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD099 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD099 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD100.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD100.sh new file mode 100755 index 0000000..a0ab419 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD100.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141850-271195675 +# @用例名称: ltp.ltp-aiodio.part1.AD100 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD100 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD100 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD101.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD101.sh new file mode 100755 index 0000000..ee99686 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD101.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-987544579 +# @用例名称: ltp.ltp-aiodio.part1.AD101 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD101 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD101 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD102.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD102.sh new file mode 100755 index 0000000..a063163 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD102.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212956-996140275 +# @用例名称: ltp.ltp-aiodio.part1.AD102 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD102 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD102 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD103.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD103.sh new file mode 100755 index 0000000..2f38877 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD103.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-004748556 +# @用例名称: ltp.ltp-aiodio.part1.AD103 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD103 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD103 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD104.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD104.sh new file mode 100755 index 0000000..faf08c1 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD104.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-013456513 +# @用例名称: ltp.ltp-aiodio.part1.AD104 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD104 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD104 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD105.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD105.sh new file mode 100755 index 0000000..3887721 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD105.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-022111029 +# @用例名称: ltp.ltp-aiodio.part1.AD105 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD105 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD105 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD106.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD106.sh new file mode 100755 index 0000000..b5ebfe2 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD106.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-030743816 +# @用例名称: ltp.ltp-aiodio.part1.AD106 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD106 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD106 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD107.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD107.sh new file mode 100755 index 0000000..10f732b --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD107.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-039563994 +# @用例名称: ltp.ltp-aiodio.part1.AD107 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD107 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD107 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD108.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD108.sh new file mode 100755 index 0000000..11d05b3 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD108.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-048185067 +# @用例名称: ltp.ltp-aiodio.part1.AD108 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD108 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD108 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD109.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD109.sh new file mode 100755 index 0000000..ef6273e --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD109.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-056925565 +# @用例名称: ltp.ltp-aiodio.part1.AD109 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD109 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD109 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD110.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD110.sh new file mode 100755 index 0000000..52c3293 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD110.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-065781991 +# @用例名称: ltp.ltp-aiodio.part1.AD110 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD110 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD110 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD111.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD111.sh new file mode 100755 index 0000000..211311e --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD111.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141850-335392741 +# @用例名称: ltp.ltp-aiodio.part1.AD111 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD111 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD111 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD112.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD112.sh new file mode 100755 index 0000000..75ddad6 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD112.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-074480961 +# @用例名称: ltp.ltp-aiodio.part1.AD112 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD112 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD112 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD113.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD113.sh new file mode 100755 index 0000000..44554c7 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD113.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-083073672 +# @用例名称: ltp.ltp-aiodio.part1.AD113 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD113 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD113 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD114.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD114.sh new file mode 100755 index 0000000..2bb381e --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD114.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-091633151 +# @用例名称: ltp.ltp-aiodio.part1.AD114 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD114 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD114 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD115.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD115.sh new file mode 100755 index 0000000..2a5f8e6 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD115.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-100175859 +# @用例名称: ltp.ltp-aiodio.part1.AD115 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD115 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD115 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD116.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD116.sh new file mode 100755 index 0000000..98f2eb9 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD116.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-108732202 +# @用例名称: ltp.ltp-aiodio.part1.AD116 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD116 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD116 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD117.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD117.sh new file mode 100755 index 0000000..f803a13 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD117.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-117395886 +# @用例名称: ltp.ltp-aiodio.part1.AD117 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD117 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD117 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD118.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD118.sh new file mode 100755 index 0000000..bb21459 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD118.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-125975012 +# @用例名称: ltp.ltp-aiodio.part1.AD118 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD118 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD118 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD119.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD119.sh new file mode 100755 index 0000000..7521024 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD119.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-134577652 +# @用例名称: ltp.ltp-aiodio.part1.AD119 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD119 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD119 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD120.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD120.sh new file mode 100755 index 0000000..9b1b361 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD120.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-143247528 +# @用例名称: ltp.ltp-aiodio.part1.AD120 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD120 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD120 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD121.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD121.sh new file mode 100755 index 0000000..9bbf071 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD121.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-151741384 +# @用例名称: ltp.ltp-aiodio.part1.AD121 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD121 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD121 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD122.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD122.sh new file mode 100755 index 0000000..c65874a --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD122.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-160235571 +# @用例名称: ltp.ltp-aiodio.part1.AD122 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD122 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD122 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD123.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD123.sh new file mode 100755 index 0000000..164bcf9 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD123.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-169040931 +# @用例名称: ltp.ltp-aiodio.part1.AD123 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD123 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD123 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD124.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD124.sh new file mode 100755 index 0000000..cb4cbb4 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD124.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-177713411 +# @用例名称: ltp.ltp-aiodio.part1.AD124 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD124 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD124 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD125.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD125.sh new file mode 100755 index 0000000..4cd3b80 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD125.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-186313996 +# @用例名称: ltp.ltp-aiodio.part1.AD125 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD125 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD125 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD126.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD126.sh new file mode 100755 index 0000000..e8b978f --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD126.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-194842057 +# @用例名称: ltp.ltp-aiodio.part1.AD126 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD126 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD126 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD127.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD127.sh new file mode 100755 index 0000000..1521753 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD127.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-203431302 +# @用例名称: ltp.ltp-aiodio.part1.AD127 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD127 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD127 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD128.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD128.sh new file mode 100755 index 0000000..599f2f0 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD128.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-212161501 +# @用例名称: ltp.ltp-aiodio.part1.AD128 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD128 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD128 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD129.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD129.sh new file mode 100755 index 0000000..5c7b72c --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD129.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-220821297 +# @用例名称: ltp.ltp-aiodio.part1.AD129 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD129 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD129 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD130.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD130.sh new file mode 100755 index 0000000..6bd8daf --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD130.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-229458352 +# @用例名称: ltp.ltp-aiodio.part1.AD130 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD130 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD130 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD131.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD131.sh new file mode 100755 index 0000000..6df6ee5 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD131.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-237938322 +# @用例名称: ltp.ltp-aiodio.part1.AD131 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD131 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD131 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD132.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD132.sh new file mode 100755 index 0000000..bd808c5 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD132.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-246461183 +# @用例名称: ltp.ltp-aiodio.part1.AD132 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD132 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD132 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD133.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD133.sh new file mode 100755 index 0000000..09c2dbc --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD133.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-255037873 +# @用例名称: ltp.ltp-aiodio.part1.AD133 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD133 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD133 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD134.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD134.sh new file mode 100755 index 0000000..3e3f666 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD134.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-263990609 +# @用例名称: ltp.ltp-aiodio.part1.AD134 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD134 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD134 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD135.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD135.sh new file mode 100755 index 0000000..631fc6e --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD135.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-272878813 +# @用例名称: ltp.ltp-aiodio.part1.AD135 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD135 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD135 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD136.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD136.sh new file mode 100755 index 0000000..4113051 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD136.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-281530876 +# @用例名称: ltp.ltp-aiodio.part1.AD136 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD136 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD136 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD137.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD137.sh new file mode 100755 index 0000000..1268860 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD137.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-289994055 +# @用例名称: ltp.ltp-aiodio.part1.AD137 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD137 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD137 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD138.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD138.sh new file mode 100755 index 0000000..ed5ad9c --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD138.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-298493542 +# @用例名称: ltp.ltp-aiodio.part1.AD138 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD138 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD138 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD139.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD139.sh new file mode 100755 index 0000000..8b0ef1e --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD139.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-306985845 +# @用例名称: ltp.ltp-aiodio.part1.AD139 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD139 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD139 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD140.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD140.sh new file mode 100755 index 0000000..14bc990 --- /dev/null +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD140.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212957-315377790 +# @用例名称: ltp.ltp-aiodio.part1.AD140 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part1.AD140 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part1 AD140 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP000.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP000.sh new file mode 100755 index 0000000..78b8aa3 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP000.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-006512674 +# @用例名称: ltp.ltp-aiodio.part2.ADSP000 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP000 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP000 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP001.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP001.sh new file mode 100755 index 0000000..85fd78d --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP001.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-014986052 +# @用例名称: ltp.ltp-aiodio.part2.ADSP001 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP001 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP001 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP002.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP002.sh new file mode 100755 index 0000000..c34bec9 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP002.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-023542576 +# @用例名称: ltp.ltp-aiodio.part2.ADSP002 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP002 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP002 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP003.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP003.sh new file mode 100755 index 0000000..3b820eb --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP003.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-032163489 +# @用例名称: ltp.ltp-aiodio.part2.ADSP003 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP003 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP003 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP004.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP004.sh new file mode 100755 index 0000000..af7bc1f --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP004.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-040724522 +# @用例名称: ltp.ltp-aiodio.part2.ADSP004 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP004 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP004 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP005.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP005.sh new file mode 100755 index 0000000..5c10c39 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP005.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-050046719 +# @用例名称: ltp.ltp-aiodio.part2.ADSP005 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP005 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP005 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP006.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP006.sh new file mode 100755 index 0000000..3076da0 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP006.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-058555703 +# @用例名称: ltp.ltp-aiodio.part2.ADSP006 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP006 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP006 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP007.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP007.sh new file mode 100755 index 0000000..c9837b9 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP007.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-067245506 +# @用例名称: ltp.ltp-aiodio.part2.ADSP007 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP007 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP007 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP008.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP008.sh new file mode 100755 index 0000000..fe5f27a --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP008.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-075976977 +# @用例名称: ltp.ltp-aiodio.part2.ADSP008 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP008 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP008 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP009.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP009.sh new file mode 100755 index 0000000..a22e186 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP009.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-084541997 +# @用例名称: ltp.ltp-aiodio.part2.ADSP009 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP009 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP009 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP010.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP010.sh new file mode 100755 index 0000000..39925dc --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP010.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-092987322 +# @用例名称: ltp.ltp-aiodio.part2.ADSP010 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP010 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP010 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP011.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP011.sh new file mode 100755 index 0000000..74c0443 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP011.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-101452715 +# @用例名称: ltp.ltp-aiodio.part2.ADSP011 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP011 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP011 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP012.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP012.sh new file mode 100755 index 0000000..e99b0dc --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP012.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-110766306 +# @用例名称: ltp.ltp-aiodio.part2.ADSP012 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP012 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP012 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP013.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP013.sh new file mode 100755 index 0000000..3e544ba --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP013.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-119969279 +# @用例名称: ltp.ltp-aiodio.part2.ADSP013 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP013 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP013 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP014.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP014.sh new file mode 100755 index 0000000..db35daf --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP014.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-128553885 +# @用例名称: ltp.ltp-aiodio.part2.ADSP014 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP014 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP014 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP015.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP015.sh new file mode 100755 index 0000000..e175482 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP015.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-137205777 +# @用例名称: ltp.ltp-aiodio.part2.ADSP015 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP015 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP015 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP016.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP016.sh new file mode 100755 index 0000000..b85ba44 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP016.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-145700565 +# @用例名称: ltp.ltp-aiodio.part2.ADSP016 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP016 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP016 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP017.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP017.sh new file mode 100755 index 0000000..3ba3c1b --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP017.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-154248563 +# @用例名称: ltp.ltp-aiodio.part2.ADSP017 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP017 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP017 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP018.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP018.sh new file mode 100755 index 0000000..1ef01bf --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP018.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-162956169 +# @用例名称: ltp.ltp-aiodio.part2.ADSP018 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP018 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP018 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP019.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP019.sh new file mode 100755 index 0000000..9fee74c --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP019.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-171515007 +# @用例名称: ltp.ltp-aiodio.part2.ADSP019 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP019 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP019 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP020.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP020.sh new file mode 100755 index 0000000..520ad9d --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP020.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-180355062 +# @用例名称: ltp.ltp-aiodio.part2.ADSP020 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP020 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP020 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP021.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP021.sh new file mode 100755 index 0000000..6bdaa7e --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP021.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-189682497 +# @用例名称: ltp.ltp-aiodio.part2.ADSP021 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP021 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP021 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP022.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP022.sh new file mode 100755 index 0000000..128f894 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP022.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-198271482 +# @用例名称: ltp.ltp-aiodio.part2.ADSP022 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP022 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP022 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP023.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP023.sh new file mode 100755 index 0000000..8a00a29 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP023.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-206949713 +# @用例名称: ltp.ltp-aiodio.part2.ADSP023 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP023 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP023 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP024.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP024.sh new file mode 100755 index 0000000..5707b52 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP024.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-215424293 +# @用例名称: ltp.ltp-aiodio.part2.ADSP024 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP024 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP024 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP025.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP025.sh new file mode 100755 index 0000000..84d7ecb --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP025.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-226004484 +# @用例名称: ltp.ltp-aiodio.part2.ADSP025 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP025 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP025 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP026.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP026.sh new file mode 100755 index 0000000..c8652dd --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP026.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-234540419 +# @用例名称: ltp.ltp-aiodio.part2.ADSP026 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP026 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP026 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP027.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP027.sh new file mode 100755 index 0000000..c33c751 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP027.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-243148240 +# @用例名称: ltp.ltp-aiodio.part2.ADSP027 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP027 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP027 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP028.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP028.sh new file mode 100755 index 0000000..7d8282a --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP028.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-251663356 +# @用例名称: ltp.ltp-aiodio.part2.ADSP028 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP028 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP028 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP029.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP029.sh new file mode 100755 index 0000000..89baaaa --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP029.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-260214378 +# @用例名称: ltp.ltp-aiodio.part2.ADSP029 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP029 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP029 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP030.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP030.sh new file mode 100755 index 0000000..9369bd7 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP030.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-268799997 +# @用例名称: ltp.ltp-aiodio.part2.ADSP030 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP030 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP030 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP031.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP031.sh new file mode 100755 index 0000000..99ab620 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP031.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-277503495 +# @用例名称: ltp.ltp-aiodio.part2.ADSP031 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP031 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP031 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP032.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP032.sh new file mode 100755 index 0000000..60b2b88 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP032.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-285942489 +# @用例名称: ltp.ltp-aiodio.part2.ADSP032 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP032 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP032 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP033.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP033.sh new file mode 100755 index 0000000..d21ee84 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP033.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-294426768 +# @用例名称: ltp.ltp-aiodio.part2.ADSP033 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP033 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP033 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP034.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP034.sh new file mode 100755 index 0000000..f7f090d --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP034.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-302934540 +# @用例名称: ltp.ltp-aiodio.part2.ADSP034 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP034 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP034 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP035.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP035.sh new file mode 100755 index 0000000..257143f --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP035.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-311657094 +# @用例名称: ltp.ltp-aiodio.part2.ADSP035 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP035 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP035 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP036.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP036.sh new file mode 100755 index 0000000..220cb03 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP036.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-320345955 +# @用例名称: ltp.ltp-aiodio.part2.ADSP036 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP036 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP036 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP037.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP037.sh new file mode 100755 index 0000000..09f1de0 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP037.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-329098416 +# @用例名称: ltp.ltp-aiodio.part2.ADSP037 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP037 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP037 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP038.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP038.sh new file mode 100755 index 0000000..29be6d5 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP038.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-337665409 +# @用例名称: ltp.ltp-aiodio.part2.ADSP038 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP038 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP038 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP039.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP039.sh new file mode 100755 index 0000000..a266e53 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP039.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-346337729 +# @用例名称: ltp.ltp-aiodio.part2.ADSP039 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP039 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP039 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP040.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP040.sh new file mode 100755 index 0000000..3c0250b --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP040.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-354894654 +# @用例名称: ltp.ltp-aiodio.part2.ADSP040 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP040 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP040 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP041.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP041.sh new file mode 100755 index 0000000..085c3e9 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP041.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-363470383 +# @用例名称: ltp.ltp-aiodio.part2.ADSP041 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP041 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP041 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP042.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP042.sh new file mode 100755 index 0000000..79ce82b --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP042.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-372114020 +# @用例名称: ltp.ltp-aiodio.part2.ADSP042 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP042 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP042 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP043.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP043.sh new file mode 100755 index 0000000..03320c0 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP043.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-381351117 +# @用例名称: ltp.ltp-aiodio.part2.ADSP043 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP043 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP043 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP044.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP044.sh new file mode 100755 index 0000000..c5373e2 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP044.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-389886722 +# @用例名称: ltp.ltp-aiodio.part2.ADSP044 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP044 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP044 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP045.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP045.sh new file mode 100755 index 0000000..b98fadc --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP045.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-398444878 +# @用例名称: ltp.ltp-aiodio.part2.ADSP045 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP045 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP045 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP046.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP046.sh new file mode 100755 index 0000000..f0dc286 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP046.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-407106108 +# @用例名称: ltp.ltp-aiodio.part2.ADSP046 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP046 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP046 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP047.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP047.sh new file mode 100755 index 0000000..06b05f7 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP047.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-415623288 +# @用例名称: ltp.ltp-aiodio.part2.ADSP047 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP047 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP047 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP048.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP048.sh new file mode 100755 index 0000000..3ca958d --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP048.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-424154314 +# @用例名称: ltp.ltp-aiodio.part2.ADSP048 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP048 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP048 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP049.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP049.sh new file mode 100755 index 0000000..5719bb7 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP049.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-432676622 +# @用例名称: ltp.ltp-aiodio.part2.ADSP049 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP049 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP049 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP050.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP050.sh new file mode 100755 index 0000000..63d943c --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP050.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-441251651 +# @用例名称: ltp.ltp-aiodio.part2.ADSP050 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP050 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP050 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP051.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP051.sh new file mode 100755 index 0000000..c717d29 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP051.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-449835716 +# @用例名称: ltp.ltp-aiodio.part2.ADSP051 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP051 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP051 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP052.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP052.sh new file mode 100755 index 0000000..0d97206 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP052.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-458562599 +# @用例名称: ltp.ltp-aiodio.part2.ADSP052 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP052 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP052 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP053.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP053.sh new file mode 100755 index 0000000..3b639a7 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP053.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-467411068 +# @用例名称: ltp.ltp-aiodio.part2.ADSP053 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP053 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP053 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP054.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP054.sh new file mode 100755 index 0000000..ec5912b --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP054.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-476094550 +# @用例名称: ltp.ltp-aiodio.part2.ADSP054 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP054 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP054 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP055.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP055.sh new file mode 100755 index 0000000..93b2df0 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP055.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-484645393 +# @用例名称: ltp.ltp-aiodio.part2.ADSP055 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP055 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP055 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP056.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP056.sh new file mode 100755 index 0000000..b992f62 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP056.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-493237152 +# @用例名称: ltp.ltp-aiodio.part2.ADSP056 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP056 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP056 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP057.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP057.sh new file mode 100755 index 0000000..a320728 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP057.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-501716662 +# @用例名称: ltp.ltp-aiodio.part2.ADSP057 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP057 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP057 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP058.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP058.sh new file mode 100755 index 0000000..f287567 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP058.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-510238510 +# @用例名称: ltp.ltp-aiodio.part2.ADSP058 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP058 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP058 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP059.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP059.sh new file mode 100755 index 0000000..ce03706 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP059.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-518842473 +# @用例名称: ltp.ltp-aiodio.part2.ADSP059 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP059 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP059 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP060.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP060.sh new file mode 100755 index 0000000..d3e9ed3 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP060.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-527343753 +# @用例名称: ltp.ltp-aiodio.part2.ADSP060 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP060 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP060 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP061.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP061.sh new file mode 100755 index 0000000..a9e9cc5 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP061.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-535986328 +# @用例名称: ltp.ltp-aiodio.part2.ADSP061 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP061 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP061 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP062.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP062.sh new file mode 100755 index 0000000..3d34b2a --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP062.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-544542411 +# @用例名称: ltp.ltp-aiodio.part2.ADSP062 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP062 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP062 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP063.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP063.sh new file mode 100755 index 0000000..ac6778f --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP063.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-553133429 +# @用例名称: ltp.ltp-aiodio.part2.ADSP063 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP063 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP063 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP064.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP064.sh new file mode 100755 index 0000000..751868e --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP064.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-561745707 +# @用例名称: ltp.ltp-aiodio.part2.ADSP064 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP064 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP064 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP065.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP065.sh new file mode 100755 index 0000000..99ff7db --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP065.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-570345401 +# @用例名称: ltp.ltp-aiodio.part2.ADSP065 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP065 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP065 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP066.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP066.sh new file mode 100755 index 0000000..8448ed7 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP066.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-578867971 +# @用例名称: ltp.ltp-aiodio.part2.ADSP066 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP066 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP066 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP067.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP067.sh new file mode 100755 index 0000000..56b1272 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP067.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-587486621 +# @用例名称: ltp.ltp-aiodio.part2.ADSP067 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP067 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP067 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP068.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP068.sh new file mode 100755 index 0000000..a22613b --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP068.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-595965569 +# @用例名称: ltp.ltp-aiodio.part2.ADSP068 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP068 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP068 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP069.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP069.sh new file mode 100755 index 0000000..2767cbd --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP069.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-604518366 +# @用例名称: ltp.ltp-aiodio.part2.ADSP069 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP069 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP069 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP070.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP070.sh new file mode 100755 index 0000000..45285cc --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP070.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-613812340 +# @用例名称: ltp.ltp-aiodio.part2.ADSP070 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP070 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP070 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP071.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP071.sh new file mode 100755 index 0000000..6723acb --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP071.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-622427232 +# @用例名称: ltp.ltp-aiodio.part2.ADSP071 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP071 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP071 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP072.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP072.sh new file mode 100755 index 0000000..5f698d2 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP072.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-630954531 +# @用例名称: ltp.ltp-aiodio.part2.ADSP072 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP072 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP072 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP073.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP073.sh new file mode 100755 index 0000000..41ed1ab --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP073.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-639514461 +# @用例名称: ltp.ltp-aiodio.part2.ADSP073 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP073 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP073 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP074.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP074.sh new file mode 100755 index 0000000..6b8973e --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP074.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-648378911 +# @用例名称: ltp.ltp-aiodio.part2.ADSP074 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP074 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP074 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP075.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP075.sh new file mode 100755 index 0000000..d7561d3 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP075.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-657046653 +# @用例名称: ltp.ltp-aiodio.part2.ADSP075 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP075 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP075 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP076.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP076.sh new file mode 100755 index 0000000..0153d98 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP076.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-665856010 +# @用例名称: ltp.ltp-aiodio.part2.ADSP076 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP076 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP076 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP077.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP077.sh new file mode 100755 index 0000000..403c49a --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP077.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-674740838 +# @用例名称: ltp.ltp-aiodio.part2.ADSP077 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP077 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP077 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP078.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP078.sh new file mode 100755 index 0000000..7b427a1 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP078.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-683538112 +# @用例名称: ltp.ltp-aiodio.part2.ADSP078 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP078 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP078 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP079.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP079.sh new file mode 100755 index 0000000..2e8e02c --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP079.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-692255156 +# @用例名称: ltp.ltp-aiodio.part2.ADSP079 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP079 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP079 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP080.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP080.sh new file mode 100755 index 0000000..0f8b128 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP080.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-701096904 +# @用例名称: ltp.ltp-aiodio.part2.ADSP080 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP080 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP080 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP081.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP081.sh new file mode 100755 index 0000000..a54a723 --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP081.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-709748665 +# @用例名称: ltp.ltp-aiodio.part2.ADSP081 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP081 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP081 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP082.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP082.sh new file mode 100755 index 0000000..573279c --- /dev/null +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP082.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212958-718510533 +# @用例名称: ltp.ltp-aiodio.part2.ADSP082 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part2.ADSP082 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part2 ADSP082 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx01.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx01.sh new file mode 100755 index 0000000..7ea7367 --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx01.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172827-118648064 +# @用例名称: ltp.ltp-aiodio.part3.fsx01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx01 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx02.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx02.sh new file mode 100755 index 0000000..405c2c8 --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx02.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172827-196275349 +# @用例名称: ltp.ltp-aiodio.part3.fsx02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx02 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx03.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx03.sh new file mode 100755 index 0000000..a993039 --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx03.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172827-273121090 +# @用例名称: ltp.ltp-aiodio.part3.fsx03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx03 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx04.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx04.sh new file mode 100755 index 0000000..966979f --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx04.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172827-349843058 +# @用例名称: ltp.ltp-aiodio.part3.fsx04 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx04 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx05.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx05.sh new file mode 100755 index 0000000..ca5dbf0 --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx05.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172827-425096820 +# @用例名称: ltp.ltp-aiodio.part3.fsx05 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx05 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx06.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx06.sh new file mode 100755 index 0000000..e032736 --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx06.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172827-503011362 +# @用例名称: ltp.ltp-aiodio.part3.fsx06 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx06 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx07.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx07.sh new file mode 100755 index 0000000..4f62833 --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx07.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172827-582217652 +# @用例名称: ltp.ltp-aiodio.part3.fsx07 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx07 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx08.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx08.sh new file mode 100755 index 0000000..9b3e0a9 --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx08.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172827-654223851 +# @用例名称: ltp.ltp-aiodio.part3.fsx08 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx08 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx09.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx09.sh new file mode 100755 index 0000000..74c7e32 --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx09.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172827-725231108 +# @用例名称: ltp.ltp-aiodio.part3.fsx09 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx09 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx10.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx10.sh new file mode 100755 index 0000000..f0b59ab --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx10.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172827-798680337 +# @用例名称: ltp.ltp-aiodio.part3.fsx10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx10 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx12.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx12.sh new file mode 100755 index 0000000..b4a7257 --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx12.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172827-872403481 +# @用例名称: ltp.ltp-aiodio.part3.fsx12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx12 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx13.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx13.sh new file mode 100755 index 0000000..6619bb2 --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx13.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172827-946457724 +# @用例名称: ltp.ltp-aiodio.part3.fsx13 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx13 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx14.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx14.sh new file mode 100755 index 0000000..72bb12e --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx14.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172828-021288789 +# @用例名称: ltp.ltp-aiodio.part3.fsx14 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx14 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx15.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx15.sh new file mode 100755 index 0000000..a20c6f5 --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx15.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172828-099489428 +# @用例名称: ltp.ltp-aiodio.part3.fsx15 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx15 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx16.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx16.sh new file mode 100755 index 0000000..1fe5c8b --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx16.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172828-176711810 +# @用例名称: ltp.ltp-aiodio.part3.fsx16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx16 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx17.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx17.sh new file mode 100755 index 0000000..f19aceb --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx17.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172828-252167774 +# @用例名称: ltp.ltp-aiodio.part3.fsx17 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx17 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx18.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx18.sh new file mode 100755 index 0000000..138e4e7 --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx18.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172828-329161390 +# @用例名称: ltp.ltp-aiodio.part3.fsx18 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx18 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx19.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx19.sh new file mode 100755 index 0000000..7dd70e6 --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx19.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172828-406565846 +# @用例名称: ltp.ltp-aiodio.part3.fsx19 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx19 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx20.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx20.sh new file mode 100755 index 0000000..99c278c --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx20.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172828-484106291 +# @用例名称: ltp.ltp-aiodio.part3.fsx20 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx20 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx21.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx21.sh new file mode 100755 index 0000000..3f7d7db --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx21.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172828-561107766 +# @用例名称: ltp.ltp-aiodio.part3.fsx21 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx21 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx22.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx22.sh new file mode 100755 index 0000000..d362f71 --- /dev/null +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx22.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172828-643296735 +# @用例名称: ltp.ltp-aiodio.part3.fsx22 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part3.fsx22 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part3 fsx22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD000.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD000.sh new file mode 100755 index 0000000..467b431 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD000.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-455822277 +# @用例名称: ltp.ltp-aiodio.part4.AD000 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.AD000 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 AD000 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD001.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD001.sh new file mode 100755 index 0000000..e285bc5 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD001.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-464487875 +# @用例名称: ltp.ltp-aiodio.part4.AD001 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.AD001 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 AD001 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD002.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD002.sh new file mode 100755 index 0000000..eaa4fda --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD002.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-473322279 +# @用例名称: ltp.ltp-aiodio.part4.AD002 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.AD002 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 AD002 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD003.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD003.sh new file mode 100755 index 0000000..7171eff --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD003.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-482006772 +# @用例名称: ltp.ltp-aiodio.part4.AD003 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.AD003 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 AD003 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD004.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD004.sh new file mode 100755 index 0000000..b174f67 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD004.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-490547295 +# @用例名称: ltp.ltp-aiodio.part4.AD004 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.AD004 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 AD004 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD005.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD005.sh new file mode 100755 index 0000000..62ae425 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD005.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-499220046 +# @用例名称: ltp.ltp-aiodio.part4.AD005 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.AD005 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 AD005 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD006.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD006.sh new file mode 100755 index 0000000..49bcba6 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD006.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-508244085 +# @用例名称: ltp.ltp-aiodio.part4.AD006 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.AD006 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 AD006 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD007.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD007.sh new file mode 100755 index 0000000..1cf08ca --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD007.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-517178535 +# @用例名称: ltp.ltp-aiodio.part4.AD007 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.AD007 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 AD007 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD008.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD008.sh new file mode 100755 index 0000000..855881d --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD008.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-525847149 +# @用例名称: ltp.ltp-aiodio.part4.AD008 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.AD008 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 AD008 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD009.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD009.sh new file mode 100755 index 0000000..76bf6ce --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD009.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-534636007 +# @用例名称: ltp.ltp-aiodio.part4.AD009 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.AD009 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 AD009 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI000.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI000.sh new file mode 100755 index 0000000..28d1b3a --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI000.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-544299282 +# @用例名称: ltp.ltp-aiodio.part4.ADI000 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.ADI000 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 ADI000 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI001.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI001.sh new file mode 100755 index 0000000..7187c99 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI001.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-553619305 +# @用例名称: ltp.ltp-aiodio.part4.ADI001 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.ADI001 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 ADI001 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI002.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI002.sh new file mode 100755 index 0000000..bd71d4f --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI002.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-562331790 +# @用例名称: ltp.ltp-aiodio.part4.ADI002 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.ADI002 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 ADI002 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI003.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI003.sh new file mode 100755 index 0000000..3371033 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI003.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-570930783 +# @用例名称: ltp.ltp-aiodio.part4.ADI003 +# @用例级别: 1 +# @用例标签: +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.ADI003 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 ADI003 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI004.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI004.sh new file mode 100755 index 0000000..f965a86 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI004.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-579517443 +# @用例名称: ltp.ltp-aiodio.part4.ADI004 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.ADI004 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 ADI004 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI005.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI005.sh new file mode 100755 index 0000000..7ed7050 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI005.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-588006270 +# @用例名称: ltp.ltp-aiodio.part4.ADI005 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.ADI005 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 ADI005 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI006.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI006.sh new file mode 100755 index 0000000..adce211 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI006.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-596658783 +# @用例名称: ltp.ltp-aiodio.part4.ADI006 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.ADI006 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 ADI006 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI007.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI007.sh new file mode 100755 index 0000000..d7c3172 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI007.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-605306959 +# @用例名称: ltp.ltp-aiodio.part4.ADI007 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.ADI007 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 ADI007 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI008.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI008.sh new file mode 100755 index 0000000..c07e047 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI008.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-614060621 +# @用例名称: ltp.ltp-aiodio.part4.ADI008 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.ADI008 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 ADI008 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI009.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI009.sh new file mode 100755 index 0000000..d2191a4 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI009.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-627056072 +# @用例名称: ltp.ltp-aiodio.part4.ADI009 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.ADI009 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 ADI009 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI000.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI000.sh new file mode 100755 index 0000000..4b4c792 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI000.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-185768810 +# @用例名称: ltp.ltp-aiodio.part4.DI000 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DI000 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DI000 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI001.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI001.sh new file mode 100755 index 0000000..0072273 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI001.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-203461001 +# @用例名称: ltp.ltp-aiodio.part4.DI001 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DI001 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DI001 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI002.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI002.sh new file mode 100755 index 0000000..1dec9a5 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI002.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-221013160 +# @用例名称: ltp.ltp-aiodio.part4.DI002 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DI002 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DI002 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI003.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI003.sh new file mode 100755 index 0000000..e0d4391 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI003.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-238368931 +# @用例名称: ltp.ltp-aiodio.part4.DI003 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DI003 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DI003 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI004.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI004.sh new file mode 100755 index 0000000..cd67a9f --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI004.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-255531792 +# @用例名称: ltp.ltp-aiodio.part4.DI004 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DI004 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DI004 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI005.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI005.sh new file mode 100755 index 0000000..0e7973b --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI005.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-272926887 +# @用例名称: ltp.ltp-aiodio.part4.DI005 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DI005 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DI005 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI006.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI006.sh new file mode 100755 index 0000000..b00f929 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI006.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-290724315 +# @用例名称: ltp.ltp-aiodio.part4.DI006 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DI006 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DI006 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI007.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI007.sh new file mode 100755 index 0000000..4c64799 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI007.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-311858077 +# @用例名称: ltp.ltp-aiodio.part4.DI007 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DI007 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DI007 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI008.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI008.sh new file mode 100755 index 0000000..ec04330 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI008.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-329127587 +# @用例名称: ltp.ltp-aiodio.part4.DI008 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DI008 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DI008 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI009.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI009.sh new file mode 100755 index 0000000..d07e393 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI009.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-349466251 +# @用例名称: ltp.ltp-aiodio.part4.DI009 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DI009 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DI009 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO00.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO00.sh new file mode 100755 index 0000000..d98f8a6 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO00.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-367937179 +# @用例名称: ltp.ltp-aiodio.part4.DIO00 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DIO00 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DIO00 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO01.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO01.sh new file mode 100755 index 0000000..a8804b6 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-376525643 +# @用例名称: ltp.ltp-aiodio.part4.DIO01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DIO01 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DIO01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO02.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO02.sh new file mode 100755 index 0000000..2c80169 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-385268736 +# @用例名称: ltp.ltp-aiodio.part4.DIO02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DIO02 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DIO02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO03.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO03.sh new file mode 100755 index 0000000..f0e223b --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-393869983 +# @用例名称: ltp.ltp-aiodio.part4.DIO03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DIO03 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DIO03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO04.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO04.sh new file mode 100755 index 0000000..836844d --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-402457845 +# @用例名称: ltp.ltp-aiodio.part4.DIO04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DIO04 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DIO04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO05.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO05.sh new file mode 100755 index 0000000..cec49fa --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-411266170 +# @用例名称: ltp.ltp-aiodio.part4.DIO05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DIO05 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DIO05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO06.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO06.sh new file mode 100755 index 0000000..6cd7e31 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-419920396 +# @用例名称: ltp.ltp-aiodio.part4.DIO06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DIO06 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DIO06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO07.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO07.sh new file mode 100755 index 0000000..decf3e0 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-428762956 +# @用例名称: ltp.ltp-aiodio.part4.DIO07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DIO07 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DIO07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO08.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO08.sh new file mode 100755 index 0000000..a62d69e --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-437344706 +# @用例名称: ltp.ltp-aiodio.part4.DIO08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DIO08 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DIO08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO09.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO09.sh new file mode 100755 index 0000000..6c78668 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-445998191 +# @用例名称: ltp.ltp-aiodio.part4.DIO09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DIO09 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DIO09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT000.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT000.sh new file mode 100755 index 0000000..c55abeb --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT000.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-636782626 +# @用例名称: ltp.ltp-aiodio.part4.DIT000 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DIT000 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DIT000 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT001.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT001.sh new file mode 100755 index 0000000..5a37444 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT001.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-645337335 +# @用例名称: ltp.ltp-aiodio.part4.DIT001 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DIT001 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DIT001 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT002.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT002.sh new file mode 100755 index 0000000..c9417ca --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT002.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-655935169 +# @用例名称: ltp.ltp-aiodio.part4.DIT002 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DIT002 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DIT002 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR000.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR000.sh new file mode 100755 index 0000000..0266c44 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR000.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-669555059 +# @用例名称: ltp.ltp-aiodio.part4.DOR000 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DOR000 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DOR000 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR001.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR001.sh new file mode 100755 index 0000000..a179e0e --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR001.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-679438957 +# @用例名称: ltp.ltp-aiodio.part4.DOR001 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DOR001 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DOR001 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR002.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR002.sh new file mode 100755 index 0000000..47af955 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR002.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-688645687 +# @用例名称: ltp.ltp-aiodio.part4.DOR002 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DOR002 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DOR002 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR003.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR003.sh new file mode 100755 index 0000000..dd99a31 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR003.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-698444666 +# @用例名称: ltp.ltp-aiodio.part4.DOR003 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DOR003 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DOR003 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS000.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS000.sh new file mode 100755 index 0000000..6d2b90c --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS000.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-194758204 +# @用例名称: ltp.ltp-aiodio.part4.DS000 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DS000 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DS000 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS001.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS001.sh new file mode 100755 index 0000000..5b3a7f2 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS001.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-212396544 +# @用例名称: ltp.ltp-aiodio.part4.DS001 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DS001 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DS001 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS002.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS002.sh new file mode 100755 index 0000000..6359b66 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS002.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-229666835 +# @用例名称: ltp.ltp-aiodio.part4.DS002 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DS002 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DS002 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS003.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS003.sh new file mode 100755 index 0000000..9afb3bd --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS003.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-246962875 +# @用例名称: ltp.ltp-aiodio.part4.DS003 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DS003 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DS003 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS004.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS004.sh new file mode 100755 index 0000000..faaacd2 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS004.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-264162705 +# @用例名称: ltp.ltp-aiodio.part4.DS004 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DS004 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DS004 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS005.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS005.sh new file mode 100755 index 0000000..f4125ce --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS005.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-281498820 +# @用例名称: ltp.ltp-aiodio.part4.DS005 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DS005 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DS005 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS006.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS006.sh new file mode 100755 index 0000000..52cf4e8 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS006.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-301879282 +# @用例名称: ltp.ltp-aiodio.part4.DS006 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DS006 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DS006 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS007.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS007.sh new file mode 100755 index 0000000..f219e57 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS007.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-320476666 +# @用例名称: ltp.ltp-aiodio.part4.DS007 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DS007 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DS007 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS008.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS008.sh new file mode 100755 index 0000000..b54698f --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS008.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-340841620 +# @用例名称: ltp.ltp-aiodio.part4.DS008 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DS008 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DS008 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS009.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS009.sh new file mode 100755 index 0000000..818ad88 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS009.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-212959-358201960 +# @用例名称: ltp.ltp-aiodio.part4.DS009 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.DS009 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 DS009 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio01.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio01.sh new file mode 100755 index 0000000..5523bd5 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio01.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172828-716782951 +# @用例名称: ltp.ltp-aiodio.part4.aio01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.aio01 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 aio01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio02.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio02.sh new file mode 100755 index 0000000..15546d0 --- /dev/null +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio02.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172828-791065733 +# @用例名称: ltp.ltp-aiodio.part4.aio02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.ltp-aiodio.part4.aio02 + # @预期结果:1: 用例返回0 + ltp_run_testcase ltp-aiodio.part4 aio02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/math/ltp.math.abs01.sh b/testcase/math/ltp.math.abs01.sh new file mode 100755 index 0000000..ca378c3 --- /dev/null +++ b/testcase/math/ltp.math.abs01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-318682976 +# @用例名称: ltp.math.abs01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.math.abs01 + # @预期结果:1: 用例返回0 + ltp_run_testcase math abs01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/math/ltp.math.atof01.sh b/testcase/math/ltp.math.atof01.sh new file mode 100755 index 0000000..bc1b9bc --- /dev/null +++ b/testcase/math/ltp.math.atof01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-329315034 +# @用例名称: ltp.math.atof01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.math.atof01 + # @预期结果:1: 用例返回0 + ltp_run_testcase math atof01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/math/ltp.math.float_bessel.sh b/testcase/math/ltp.math.float_bessel.sh new file mode 100755 index 0000000..869692f --- /dev/null +++ b/testcase/math/ltp.math.float_bessel.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-339844671 +# @用例名称: ltp.math.float_bessel +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.math.float_bessel + # @预期结果:1: 用例返回0 + ltp_run_testcase math float_bessel + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/math/ltp.math.float_exp_log.sh b/testcase/math/ltp.math.float_exp_log.sh new file mode 100755 index 0000000..e271303 --- /dev/null +++ b/testcase/math/ltp.math.float_exp_log.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-348492696 +# @用例名称: ltp.math.float_exp_log +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.math.float_exp_log + # @预期结果:1: 用例返回0 + ltp_run_testcase math float_exp_log + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/math/ltp.math.float_iperb.sh b/testcase/math/ltp.math.float_iperb.sh new file mode 100755 index 0000000..45e6a65 --- /dev/null +++ b/testcase/math/ltp.math.float_iperb.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-361717606 +# @用例名称: ltp.math.float_iperb +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.math.float_iperb + # @预期结果:1: 用例返回0 + ltp_run_testcase math float_iperb + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/math/ltp.math.float_power.sh b/testcase/math/ltp.math.float_power.sh new file mode 100755 index 0000000..efdb3f8 --- /dev/null +++ b/testcase/math/ltp.math.float_power.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-372884796 +# @用例名称: ltp.math.float_power +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.math.float_power + # @预期结果:1: 用例返回0 + ltp_run_testcase math float_power + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/math/ltp.math.float_trigo.sh b/testcase/math/ltp.math.float_trigo.sh new file mode 100755 index 0000000..41bb37b --- /dev/null +++ b/testcase/math/ltp.math.float_trigo.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-381475233 +# @用例名称: ltp.math.float_trigo +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.math.float_trigo + # @预期结果:1: 用例返回0 + ltp_run_testcase math float_trigo + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/math/ltp.math.fptest01.sh b/testcase/math/ltp.math.fptest01.sh new file mode 100755 index 0000000..7a93aff --- /dev/null +++ b/testcase/math/ltp.math.fptest01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-392031749 +# @用例名称: ltp.math.fptest01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.math.fptest01 + # @预期结果:1: 用例返回0 + ltp_run_testcase math fptest01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/math/ltp.math.fptest02.sh b/testcase/math/ltp.math.fptest02.sh new file mode 100755 index 0000000..8eb9691 --- /dev/null +++ b/testcase/math/ltp.math.fptest02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-400816069 +# @用例名称: ltp.math.fptest02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.math.fptest02 + # @预期结果:1: 用例返回0 + ltp_run_testcase math fptest02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/math/ltp.math.nextafter01.sh b/testcase/math/ltp.math.nextafter01.sh new file mode 100755 index 0000000..90f1eb3 --- /dev/null +++ b/testcase/math/ltp.math.nextafter01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-411553615 +# @用例名称: ltp.math.nextafter01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.math.nextafter01 + # @预期结果:1: 用例返回0 + ltp_run_testcase math nextafter01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.cpuset01.sh b/testcase/mm/ltp.mm.cpuset01.sh new file mode 100755 index 0000000..bbd4e76 --- /dev/null +++ b/testcase/mm/ltp.mm.cpuset01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-910758089 +# @用例名称: ltp.mm.cpuset01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.cpuset01 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm cpuset01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.data_space.sh b/testcase/mm/ltp.mm.data_space.sh new file mode 100755 index 0000000..c189c5f --- /dev/null +++ b/testcase/mm/ltp.mm.data_space.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-541497365 +# @用例名称: ltp.mm.data_space +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.data_space + # @预期结果:1: 用例返回0 + ltp_run_testcase mm data_space + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.kallsyms.sh b/testcase/mm/ltp.mm.kallsyms.sh new file mode 100755 index 0000000..051612d --- /dev/null +++ b/testcase/mm/ltp.mm.kallsyms.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172828-865469825 +# @用例名称: ltp.mm.kallsyms +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.kallsyms + # @预期结果:1: 用例返回0 + ltp_run_testcase mm kallsyms + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.ksm01.sh b/testcase/mm/ltp.mm.ksm01.sh new file mode 100755 index 0000000..8cc7150 --- /dev/null +++ b/testcase/mm/ltp.mm.ksm01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-803652109 +# @用例名称: ltp.mm.ksm01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.ksm01 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm ksm01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.ksm01_1.sh b/testcase/mm/ltp.mm.ksm01_1.sh new file mode 100755 index 0000000..11fbf85 --- /dev/null +++ b/testcase/mm/ltp.mm.ksm01_1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-812443643 +# @用例名称: ltp.mm.ksm01_1 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.ksm01_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm ksm01_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.ksm02.sh b/testcase/mm/ltp.mm.ksm02.sh new file mode 100755 index 0000000..5d88dc6 --- /dev/null +++ b/testcase/mm/ltp.mm.ksm02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-820983656 +# @用例名称: ltp.mm.ksm02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.ksm02 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm ksm02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.ksm02_1.sh b/testcase/mm/ltp.mm.ksm02_1.sh new file mode 100755 index 0000000..bcd760b --- /dev/null +++ b/testcase/mm/ltp.mm.ksm02_1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-829799615 +# @用例名称: ltp.mm.ksm02_1 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.ksm02_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm ksm02_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.ksm03.sh b/testcase/mm/ltp.mm.ksm03.sh new file mode 100755 index 0000000..0535efd --- /dev/null +++ b/testcase/mm/ltp.mm.ksm03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-838861555 +# @用例名称: ltp.mm.ksm03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.ksm03 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm ksm03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.ksm03_1.sh b/testcase/mm/ltp.mm.ksm03_1.sh new file mode 100755 index 0000000..a1cbfc3 --- /dev/null +++ b/testcase/mm/ltp.mm.ksm03_1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-847574711 +# @用例名称: ltp.mm.ksm03_1 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.ksm03_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm ksm03_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.ksm04.sh b/testcase/mm/ltp.mm.ksm04.sh new file mode 100755 index 0000000..d13ce5a --- /dev/null +++ b/testcase/mm/ltp.mm.ksm04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-856335147 +# @用例名称: ltp.mm.ksm04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.ksm04 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm ksm04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.ksm04_1.sh b/testcase/mm/ltp.mm.ksm04_1.sh new file mode 100755 index 0000000..6bd8aed --- /dev/null +++ b/testcase/mm/ltp.mm.ksm04_1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-865319170 +# @用例名称: ltp.mm.ksm04_1 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.ksm04_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm ksm04_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.ksm05.sh b/testcase/mm/ltp.mm.ksm05.sh new file mode 100755 index 0000000..e03432c --- /dev/null +++ b/testcase/mm/ltp.mm.ksm05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-874039711 +# @用例名称: ltp.mm.ksm05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.ksm05 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm ksm05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.ksm06.sh b/testcase/mm/ltp.mm.ksm06.sh new file mode 100755 index 0000000..99927b3 --- /dev/null +++ b/testcase/mm/ltp.mm.ksm06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-883072205 +# @用例名称: ltp.mm.ksm06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.ksm06 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm ksm06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.ksm06_1.sh b/testcase/mm/ltp.mm.ksm06_1.sh new file mode 100755 index 0000000..676280c --- /dev/null +++ b/testcase/mm/ltp.mm.ksm06_1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-891607659 +# @用例名称: ltp.mm.ksm06_1 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.ksm06_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm ksm06_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.ksm06_2.sh b/testcase/mm/ltp.mm.ksm06_2.sh new file mode 100755 index 0000000..7bfe446 --- /dev/null +++ b/testcase/mm/ltp.mm.ksm06_2.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-900270181 +# @用例名称: ltp.mm.ksm06_2 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.ksm06_2 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm ksm06_2 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.ksm07.sh b/testcase/mm/ltp.mm.ksm07.sh new file mode 100755 index 0000000..f0e5233 --- /dev/null +++ b/testcase/mm/ltp.mm.ksm07.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172828-939113493 +# @用例名称: ltp.mm.ksm07 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.ksm07 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm ksm07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mallocstress01.sh b/testcase/mm/ltp.mm.mallocstress01.sh new file mode 100755 index 0000000..5182e59 --- /dev/null +++ b/testcase/mm/ltp.mm.mallocstress01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-651020638 +# @用例名称: ltp.mm.mallocstress01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mallocstress01 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mallocstress01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.max_map_count.sh b/testcase/mm/ltp.mm.max_map_count.sh new file mode 100755 index 0000000..dd51db2 --- /dev/null +++ b/testcase/mm/ltp.mm.max_map_count.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-145566495 +# @用例名称: ltp.mm.max_map_count +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.max_map_count + # @预期结果:1: 用例返回0 + ltp_run_testcase mm max_map_count + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mem02.sh b/testcase/mm/ltp.mm.mem02.sh new file mode 100755 index 0000000..ac00237 --- /dev/null +++ b/testcase/mm/ltp.mm.mem02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-510408312 +# @用例名称: ltp.mm.mem02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mem02 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mem02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.min_free_kbytes.sh b/testcase/mm/ltp.mm.min_free_kbytes.sh new file mode 100755 index 0000000..f5818c4 --- /dev/null +++ b/testcase/mm/ltp.mm.min_free_kbytes.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-157507403 +# @用例名称: ltp.mm.min_free_kbytes +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.min_free_kbytes + # @预期结果:1: 用例返回0 + ltp_run_testcase mm min_free_kbytes + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mm01.sh b/testcase/mm/ltp.mm.mm01.sh new file mode 100755 index 0000000..2b6d569 --- /dev/null +++ b/testcase/mm/ltp.mm.mm01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-423089635 +# @用例名称: ltp.mm.mm01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mm01 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mm01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mm02.sh b/testcase/mm/ltp.mm.mm02.sh new file mode 100755 index 0000000..68dff80 --- /dev/null +++ b/testcase/mm/ltp.mm.mm02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-435066689 +# @用例名称: ltp.mm.mm02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mm02 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mm02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmap10.sh b/testcase/mm/ltp.mm.mmap10.sh new file mode 100755 index 0000000..2abbd75 --- /dev/null +++ b/testcase/mm/ltp.mm.mmap10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-753626567 +# @用例名称: ltp.mm.mmap10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmap10 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmap10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmap10_1.sh b/testcase/mm/ltp.mm.mmap10_1.sh new file mode 100755 index 0000000..e1a5804 --- /dev/null +++ b/testcase/mm/ltp.mm.mmap10_1.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-762573521 +# @用例名称: ltp.mm.mmap10_1 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmap10_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmap10_1 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmap10_2.sh b/testcase/mm/ltp.mm.mmap10_2.sh new file mode 100755 index 0000000..ef81ad9 --- /dev/null +++ b/testcase/mm/ltp.mm.mmap10_2.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-771211136 +# @用例名称: ltp.mm.mmap10_2 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmap10_2 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmap10_2 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmap10_3.sh b/testcase/mm/ltp.mm.mmap10_3.sh new file mode 100755 index 0000000..af87944 --- /dev/null +++ b/testcase/mm/ltp.mm.mmap10_3.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-779856887 +# @用例名称: ltp.mm.mmap10_3 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmap10_3 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmap10_3 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmap10_4.sh b/testcase/mm/ltp.mm.mmap10_4.sh new file mode 100755 index 0000000..f117dd6 --- /dev/null +++ b/testcase/mm/ltp.mm.mmap10_4.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-788390167 +# @用例名称: ltp.mm.mmap10_4 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmap10_4 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmap10_4 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmapstress01.sh b/testcase/mm/ltp.mm.mmapstress01.sh new file mode 100755 index 0000000..5e2986f --- /dev/null +++ b/testcase/mm/ltp.mm.mmapstress01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-661584429 +# @用例名称: ltp.mm.mmapstress01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmapstress01 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmapstress01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmapstress02.sh b/testcase/mm/ltp.mm.mmapstress02.sh new file mode 100755 index 0000000..98c6875 --- /dev/null +++ b/testcase/mm/ltp.mm.mmapstress02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-670256078 +# @用例名称: ltp.mm.mmapstress02 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmapstress02 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmapstress02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmapstress03.sh b/testcase/mm/ltp.mm.mmapstress03.sh new file mode 100755 index 0000000..7f79467 --- /dev/null +++ b/testcase/mm/ltp.mm.mmapstress03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-679058161 +# @用例名称: ltp.mm.mmapstress03 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmapstress03 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmapstress03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmapstress04.sh b/testcase/mm/ltp.mm.mmapstress04.sh new file mode 100755 index 0000000..4734ba2 --- /dev/null +++ b/testcase/mm/ltp.mm.mmapstress04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-687706477 +# @用例名称: ltp.mm.mmapstress04 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmapstress04 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmapstress04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmapstress05.sh b/testcase/mm/ltp.mm.mmapstress05.sh new file mode 100755 index 0000000..1427f20 --- /dev/null +++ b/testcase/mm/ltp.mm.mmapstress05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-696414975 +# @用例名称: ltp.mm.mmapstress05 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmapstress05 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmapstress05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmapstress06.sh b/testcase/mm/ltp.mm.mmapstress06.sh new file mode 100755 index 0000000..878270e --- /dev/null +++ b/testcase/mm/ltp.mm.mmapstress06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-705097564 +# @用例名称: ltp.mm.mmapstress06 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmapstress06 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmapstress06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmapstress07.sh b/testcase/mm/ltp.mm.mmapstress07.sh new file mode 100755 index 0000000..d4138b5 --- /dev/null +++ b/testcase/mm/ltp.mm.mmapstress07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-714075226 +# @用例名称: ltp.mm.mmapstress07 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmapstress07 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmapstress07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmapstress08.sh b/testcase/mm/ltp.mm.mmapstress08.sh new file mode 100755 index 0000000..fdc3c72 --- /dev/null +++ b/testcase/mm/ltp.mm.mmapstress08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-723157704 +# @用例名称: ltp.mm.mmapstress08 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmapstress08 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmapstress08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmapstress09.sh b/testcase/mm/ltp.mm.mmapstress09.sh new file mode 100755 index 0000000..e517441 --- /dev/null +++ b/testcase/mm/ltp.mm.mmapstress09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-732261833 +# @用例名称: ltp.mm.mmapstress09 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmapstress09 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmapstress09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmapstress10.sh b/testcase/mm/ltp.mm.mmapstress10.sh new file mode 100755 index 0000000..f4d3c3d --- /dev/null +++ b/testcase/mm/ltp.mm.mmapstress10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-741119319 +# @用例名称: ltp.mm.mmapstress10 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmapstress10 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmapstress10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mtest01.sh b/testcase/mm/ltp.mm.mtest01.sh new file mode 100755 index 0000000..d96a8d5 --- /dev/null +++ b/testcase/mm/ltp.mm.mtest01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-450899591 +# @用例名称: ltp.mm.mtest01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mtest01 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mtest01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mtest01w.sh b/testcase/mm/ltp.mm.mtest01w.sh new file mode 100755 index 0000000..e3936a0 --- /dev/null +++ b/testcase/mm/ltp.mm.mtest01w.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-459601036 +# @用例名称: ltp.mm.mtest01w +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mtest01w + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mtest01w + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mtest05.sh b/testcase/mm/ltp.mm.mtest05.sh new file mode 100755 index 0000000..0954a89 --- /dev/null +++ b/testcase/mm/ltp.mm.mtest05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-471531684 +# @用例名称: ltp.mm.mtest05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mtest05 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mtest05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mtest06.sh b/testcase/mm/ltp.mm.mtest06.sh new file mode 100755 index 0000000..dce9d87 --- /dev/null +++ b/testcase/mm/ltp.mm.mtest06.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-480313469 +# @用例名称: ltp.mm.mtest06 +# @用例级别: 1 +# @用例标签: +# @超时时间: 360 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mtest06 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mtest06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mtest06_2.sh b/testcase/mm/ltp.mm.mtest06_2.sh new file mode 100755 index 0000000..7820553 --- /dev/null +++ b/testcase/mm/ltp.mm.mtest06_2.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-488985269 +# @用例名称: ltp.mm.mtest06_2 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mtest06_2 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mtest06_2 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mtest06_3.sh b/testcase/mm/ltp.mm.mtest06_3.sh new file mode 100755 index 0000000..990d3e9 --- /dev/null +++ b/testcase/mm/ltp.mm.mtest06_3.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-497680672 +# @用例名称: ltp.mm.mtest06_3 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mtest06_3 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mtest06_3 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.oom01.sh b/testcase/mm/ltp.mm.oom01.sh new file mode 100755 index 0000000..c5ba97b --- /dev/null +++ b/testcase/mm/ltp.mm.oom01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-924357139 +# @用例名称: ltp.mm.oom01 +# @用例级别: 4 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.oom01 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm oom01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.oom02.sh b/testcase/mm/ltp.mm.oom02.sh new file mode 100755 index 0000000..a675a3d --- /dev/null +++ b/testcase/mm/ltp.mm.oom02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-933112696 +# @用例名称: ltp.mm.oom02 +# @用例级别: 4 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.oom02 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm oom02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.oom03.sh b/testcase/mm/ltp.mm.oom03.sh new file mode 100755 index 0000000..292c6c7 --- /dev/null +++ b/testcase/mm/ltp.mm.oom03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-941777202 +# @用例名称: ltp.mm.oom03 +# @用例级别: 4 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.oom03 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm oom03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.oom04.sh b/testcase/mm/ltp.mm.oom04.sh new file mode 100755 index 0000000..1adce10 --- /dev/null +++ b/testcase/mm/ltp.mm.oom04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-950451135 +# @用例名称: ltp.mm.oom04 +# @用例级别: 4 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.oom04 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm oom04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.oom05.sh b/testcase/mm/ltp.mm.oom05.sh new file mode 100755 index 0000000..6dbfe6e --- /dev/null +++ b/testcase/mm/ltp.mm.oom05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-959229203 +# @用例名称: ltp.mm.oom05 +# @用例级别: 4 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.oom05 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm oom05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.overcommit_memory01.sh b/testcase/mm/ltp.mm.overcommit_memory01.sh new file mode 100755 index 0000000..c488bdf --- /dev/null +++ b/testcase/mm/ltp.mm.overcommit_memory01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-082450112 +# @用例名称: ltp.mm.overcommit_memory01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.overcommit_memory01 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm overcommit_memory01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.overcommit_memory02.sh b/testcase/mm/ltp.mm.overcommit_memory02.sh new file mode 100755 index 0000000..483c7e0 --- /dev/null +++ b/testcase/mm/ltp.mm.overcommit_memory02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-099530658 +# @用例名称: ltp.mm.overcommit_memory02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.overcommit_memory02 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm overcommit_memory02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.overcommit_memory03.sh b/testcase/mm/ltp.mm.overcommit_memory03.sh new file mode 100755 index 0000000..f12fc48 --- /dev/null +++ b/testcase/mm/ltp.mm.overcommit_memory03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-108258062 +# @用例名称: ltp.mm.overcommit_memory03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.overcommit_memory03 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm overcommit_memory03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.overcommit_memory04.sh b/testcase/mm/ltp.mm.overcommit_memory04.sh new file mode 100755 index 0000000..f221a98 --- /dev/null +++ b/testcase/mm/ltp.mm.overcommit_memory04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-117545453 +# @用例名称: ltp.mm.overcommit_memory04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.overcommit_memory04 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm overcommit_memory04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.overcommit_memory05.sh b/testcase/mm/ltp.mm.overcommit_memory05.sh new file mode 100755 index 0000000..2c8e166 --- /dev/null +++ b/testcase/mm/ltp.mm.overcommit_memory05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-126447333 +# @用例名称: ltp.mm.overcommit_memory05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.overcommit_memory05 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm overcommit_memory05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.overcommit_memory06.sh b/testcase/mm/ltp.mm.overcommit_memory06.sh new file mode 100755 index 0000000..1b37eca --- /dev/null +++ b/testcase/mm/ltp.mm.overcommit_memory06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-135072656 +# @用例名称: ltp.mm.overcommit_memory06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.overcommit_memory06 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm overcommit_memory06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.page01.sh b/testcase/mm/ltp.mm.page01.sh new file mode 100755 index 0000000..3a01464 --- /dev/null +++ b/testcase/mm/ltp.mm.page01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-521676681 +# @用例名称: ltp.mm.page01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.page01 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm page01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.page02.sh b/testcase/mm/ltp.mm.page02.sh new file mode 100755 index 0000000..0628eae --- /dev/null +++ b/testcase/mm/ltp.mm.page02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-530623334 +# @用例名称: ltp.mm.page02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.page02 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm page02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.shm_test01.sh b/testcase/mm/ltp.mm.shm_test01.sh new file mode 100755 index 0000000..79f5b3f --- /dev/null +++ b/testcase/mm/ltp.mm.shm_test01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-642314645 +# @用例名称: ltp.mm.shm_test01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.shm_test01 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm shm_test01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.shmt02.sh b/testcase/mm/ltp.mm.shmt02.sh new file mode 100755 index 0000000..6b5e1f6 --- /dev/null +++ b/testcase/mm/ltp.mm.shmt02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-560978795 +# @用例名称: ltp.mm.shmt02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.shmt02 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm shmt02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.shmt03.sh b/testcase/mm/ltp.mm.shmt03.sh new file mode 100755 index 0000000..c5ed6d8 --- /dev/null +++ b/testcase/mm/ltp.mm.shmt03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-569721206 +# @用例名称: ltp.mm.shmt03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.shmt03 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm shmt03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.shmt04.sh b/testcase/mm/ltp.mm.shmt04.sh new file mode 100755 index 0000000..66e5c97 --- /dev/null +++ b/testcase/mm/ltp.mm.shmt04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-578371927 +# @用例名称: ltp.mm.shmt04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.shmt04 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm shmt04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.shmt05.sh b/testcase/mm/ltp.mm.shmt05.sh new file mode 100755 index 0000000..62a5678 --- /dev/null +++ b/testcase/mm/ltp.mm.shmt05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-588203706 +# @用例名称: ltp.mm.shmt05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.shmt05 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm shmt05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.shmt06.sh b/testcase/mm/ltp.mm.shmt06.sh new file mode 100755 index 0000000..427c0ad --- /dev/null +++ b/testcase/mm/ltp.mm.shmt06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-596924437 +# @用例名称: ltp.mm.shmt06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.shmt06 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm shmt06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.shmt07.sh b/testcase/mm/ltp.mm.shmt07.sh new file mode 100755 index 0000000..3177504 --- /dev/null +++ b/testcase/mm/ltp.mm.shmt07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-606068481 +# @用例名称: ltp.mm.shmt07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.shmt07 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm shmt07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.shmt08.sh b/testcase/mm/ltp.mm.shmt08.sh new file mode 100755 index 0000000..aebe516 --- /dev/null +++ b/testcase/mm/ltp.mm.shmt08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-614545435 +# @用例名称: ltp.mm.shmt08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.shmt08 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm shmt08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.shmt09.sh b/testcase/mm/ltp.mm.shmt09.sh new file mode 100755 index 0000000..977fa9d --- /dev/null +++ b/testcase/mm/ltp.mm.shmt09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-623068085 +# @用例名称: ltp.mm.shmt09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.shmt09 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm shmt09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.shmt10.sh b/testcase/mm/ltp.mm.shmt10.sh new file mode 100755 index 0000000..88bee33 --- /dev/null +++ b/testcase/mm/ltp.mm.shmt10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-631561371 +# @用例名称: ltp.mm.shmt10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.shmt10 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm shmt10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.stack_space.sh b/testcase/mm/ltp.mm.stack_space.sh new file mode 100755 index 0000000..d59d2ab --- /dev/null +++ b/testcase/mm/ltp.mm.stack_space.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-550212165 +# @用例名称: ltp.mm.stack_space +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.stack_space + # @预期结果:1: 用例返回0 + ltp_run_testcase mm stack_space + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.swapping01.sh b/testcase/mm/ltp.mm.swapping01.sh new file mode 100755 index 0000000..42f5423 --- /dev/null +++ b/testcase/mm/ltp.mm.swapping01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-969885026 +# @用例名称: ltp.mm.swapping01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.swapping01 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm swapping01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.thp01.sh b/testcase/mm/ltp.mm.thp01.sh new file mode 100755 index 0000000..3015c84 --- /dev/null +++ b/testcase/mm/ltp.mm.thp01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-980854315 +# @用例名称: ltp.mm.thp01 +# @用例级别: 2 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.thp01 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm thp01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.thp02.sh b/testcase/mm/ltp.mm.thp02.sh new file mode 100755 index 0000000..17a32df --- /dev/null +++ b/testcase/mm/ltp.mm.thp02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213000-994538806 +# @用例名称: ltp.mm.thp02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.thp02 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm thp02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.thp03.sh b/testcase/mm/ltp.mm.thp03.sh new file mode 100755 index 0000000..b222833 --- /dev/null +++ b/testcase/mm/ltp.mm.thp03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-003913570 +# @用例名称: ltp.mm.thp03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.thp03 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm thp03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.thp04.sh b/testcase/mm/ltp.mm.thp04.sh new file mode 100755 index 0000000..c761dc9 --- /dev/null +++ b/testcase/mm/ltp.mm.thp04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-013801896 +# @用例名称: ltp.mm.thp04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.thp04 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm thp04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.vma01.sh b/testcase/mm/ltp.mm.vma01.sh new file mode 100755 index 0000000..84b92a9 --- /dev/null +++ b/testcase/mm/ltp.mm.vma01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-024994583 +# @用例名称: ltp.mm.vma01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.vma01 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm vma01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.vma02.sh b/testcase/mm/ltp.mm.vma02.sh new file mode 100755 index 0000000..43fc8aa --- /dev/null +++ b/testcase/mm/ltp.mm.vma02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-033964000 +# @用例名称: ltp.mm.vma02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.vma02 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm vma02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.vma03.sh b/testcase/mm/ltp.mm.vma03.sh new file mode 100755 index 0000000..770bf3c --- /dev/null +++ b/testcase/mm/ltp.mm.vma03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-043991898 +# @用例名称: ltp.mm.vma03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.vma03 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm vma03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.vma04.sh b/testcase/mm/ltp.mm.vma04.sh new file mode 100755 index 0000000..6562179 --- /dev/null +++ b/testcase/mm/ltp.mm.vma04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-053849726 +# @用例名称: ltp.mm.vma04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.vma04 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm vma04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.vma05.sh b/testcase/mm/ltp.mm.vma05.sh new file mode 100755 index 0000000..5d93f9c --- /dev/null +++ b/testcase/mm/ltp.mm.vma05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-063079800 +# @用例名称: ltp.mm.vma05 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.vma05 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm vma05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.bbr01.sh b/testcase/net.features/ltp.net.features.bbr01.sh new file mode 100755 index 0000000..ed22dbd --- /dev/null +++ b/testcase/net.features/ltp.net.features.bbr01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-172017357 +# @用例名称: ltp.net.features.bbr01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.bbr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features bbr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.bbr01_ipv6.sh b/testcase/net.features/ltp.net.features.bbr01_ipv6.sh new file mode 100755 index 0000000..a03216c --- /dev/null +++ b/testcase/net.features/ltp.net.features.bbr01_ipv6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-184777899 +# @用例名称: ltp.net.features.bbr01_ipv6 +# @用例级别: 2 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.bbr01_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features bbr01_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.bbr02.sh b/testcase/net.features/ltp.net.features.bbr02.sh new file mode 100755 index 0000000..d15537e --- /dev/null +++ b/testcase/net.features/ltp.net.features.bbr02.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-195371335 +# @用例名称: ltp.net.features.bbr02 +# @用例级别: 3 +# @用例标签: +# @超时时间: 360 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.bbr02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features bbr02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.bbr02_ipv6.sh b/testcase/net.features/ltp.net.features.bbr02_ipv6.sh new file mode 100755 index 0000000..11471f3 --- /dev/null +++ b/testcase/net.features/ltp.net.features.bbr02_ipv6.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-204122042 +# @用例名称: ltp.net.features.bbr02_ipv6 +# @用例级别: 3 +# @用例标签: +# @超时时间: 360 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.bbr02_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features bbr02_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.bind_noport01.sh b/testcase/net.features/ltp.net.features.bind_noport01.sh new file mode 100755 index 0000000..f6acae0 --- /dev/null +++ b/testcase/net.features/ltp.net.features.bind_noport01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-215111138 +# @用例名称: ltp.net.features.bind_noport01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.bind_noport01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features bind_noport01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.bind_noport01_ipv6.sh b/testcase/net.features/ltp.net.features.bind_noport01_ipv6.sh new file mode 100755 index 0000000..92fa2a5 --- /dev/null +++ b/testcase/net.features/ltp.net.features.bind_noport01_ipv6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-223808836 +# @用例名称: ltp.net.features.bind_noport01_ipv6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.bind_noport01_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features bind_noport01_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.busy_poll01.sh b/testcase/net.features/ltp.net.features.busy_poll01.sh new file mode 100755 index 0000000..0e54610 --- /dev/null +++ b/testcase/net.features/ltp.net.features.busy_poll01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-238648528 +# @用例名称: ltp.net.features.busy_poll01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.busy_poll01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features busy_poll01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.busy_poll01_ipv6.sh b/testcase/net.features/ltp.net.features.busy_poll01_ipv6.sh new file mode 100755 index 0000000..09ee9df --- /dev/null +++ b/testcase/net.features/ltp.net.features.busy_poll01_ipv6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-252548061 +# @用例名称: ltp.net.features.busy_poll01_ipv6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.busy_poll01_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features busy_poll01_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.busy_poll02.sh b/testcase/net.features/ltp.net.features.busy_poll02.sh new file mode 100755 index 0000000..629ad0c --- /dev/null +++ b/testcase/net.features/ltp.net.features.busy_poll02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-267234146 +# @用例名称: ltp.net.features.busy_poll02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.busy_poll02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features busy_poll02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.busy_poll02_ipv6.sh b/testcase/net.features/ltp.net.features.busy_poll02_ipv6.sh new file mode 100755 index 0000000..9649029 --- /dev/null +++ b/testcase/net.features/ltp.net.features.busy_poll02_ipv6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-278426734 +# @用例名称: ltp.net.features.busy_poll02_ipv6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.busy_poll02_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features busy_poll02_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.busy_poll03.sh b/testcase/net.features/ltp.net.features.busy_poll03.sh new file mode 100755 index 0000000..0bfd316 --- /dev/null +++ b/testcase/net.features/ltp.net.features.busy_poll03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-290981971 +# @用例名称: ltp.net.features.busy_poll03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.busy_poll03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features busy_poll03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.busy_poll03_ipv6.sh b/testcase/net.features/ltp.net.features.busy_poll03_ipv6.sh new file mode 100755 index 0000000..5c18189 --- /dev/null +++ b/testcase/net.features/ltp.net.features.busy_poll03_ipv6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-300233615 +# @用例名称: ltp.net.features.busy_poll03_ipv6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.busy_poll03_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features busy_poll03_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.dccp01.sh b/testcase/net.features/ltp.net.features.dccp01.sh new file mode 100755 index 0000000..937171b --- /dev/null +++ b/testcase/net.features/ltp.net.features.dccp01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-311950334 +# @用例名称: ltp.net.features.dccp01 +# @用例级别: 2 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.dccp01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features dccp01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.dccp01_ipv6.sh b/testcase/net.features/ltp.net.features.dccp01_ipv6.sh new file mode 100755 index 0000000..5635f44 --- /dev/null +++ b/testcase/net.features/ltp.net.features.dccp01_ipv6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-323384803 +# @用例名称: ltp.net.features.dccp01_ipv6 +# @用例级别: 2 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.dccp01_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features dccp01_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.dctcp_ipv4_01.sh b/testcase/net.features/ltp.net.features.dctcp_ipv4_01.sh new file mode 100755 index 0000000..443dfae --- /dev/null +++ b/testcase/net.features/ltp.net.features.dctcp_ipv4_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-686326811 +# @用例名称: ltp.net.features.dctcp_ipv4_01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.dctcp_ipv4_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features dctcp_ipv4_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.dctcp_ipv6_01.sh b/testcase/net.features/ltp.net.features.dctcp_ipv6_01.sh new file mode 100755 index 0000000..dabb353 --- /dev/null +++ b/testcase/net.features/ltp.net.features.dctcp_ipv6_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-695212792 +# @用例名称: ltp.net.features.dctcp_ipv6_01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.dctcp_ipv6_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features dctcp_ipv6_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.fanout01.sh b/testcase/net.features/ltp.net.features.fanout01.sh new file mode 100755 index 0000000..2706eb8 --- /dev/null +++ b/testcase/net.features/ltp.net.features.fanout01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-810910701 +# @用例名称: ltp.net.features.fanout01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.fanout01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features fanout01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.fou01.sh b/testcase/net.features/ltp.net.features.fou01.sh new file mode 100755 index 0000000..86c8435 --- /dev/null +++ b/testcase/net.features/ltp.net.features.fou01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-661109146 +# @用例名称: ltp.net.features.fou01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.fou01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features fou01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.fou01_ipv6.sh b/testcase/net.features/ltp.net.features.fou01_ipv6.sh new file mode 100755 index 0000000..6e6f4db --- /dev/null +++ b/testcase/net.features/ltp.net.features.fou01_ipv6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-670003723 +# @用例名称: ltp.net.features.fou01_ipv6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.fou01_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features fou01_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.geneve01.sh b/testcase/net.features/ltp.net.features.geneve01.sh new file mode 100755 index 0000000..78300b6 --- /dev/null +++ b/testcase/net.features/ltp.net.features.geneve01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-706052699 +# @用例名称: ltp.net.features.geneve01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.geneve01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features geneve01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.geneve01_ipv6.sh b/testcase/net.features/ltp.net.features.geneve01_ipv6.sh new file mode 100755 index 0000000..1736684 --- /dev/null +++ b/testcase/net.features/ltp.net.features.geneve01_ipv6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-714808115 +# @用例名称: ltp.net.features.geneve01_ipv6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.geneve01_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features geneve01_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.geneve02.sh b/testcase/net.features/ltp.net.features.geneve02.sh new file mode 100755 index 0000000..8f517a4 --- /dev/null +++ b/testcase/net.features/ltp.net.features.geneve02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-723666713 +# @用例名称: ltp.net.features.geneve02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.geneve02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features geneve02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.geneve02_ipv6.sh b/testcase/net.features/ltp.net.features.geneve02_ipv6.sh new file mode 100755 index 0000000..e90d033 --- /dev/null +++ b/testcase/net.features/ltp.net.features.geneve02_ipv6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-732390409 +# @用例名称: ltp.net.features.geneve02_ipv6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.geneve02_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features geneve02_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.gre_ipv4_01.sh b/testcase/net.features/ltp.net.features.gre_ipv4_01.sh new file mode 100755 index 0000000..479f3f2 --- /dev/null +++ b/testcase/net.features/ltp.net.features.gre_ipv4_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-589559310 +# @用例名称: ltp.net.features.gre_ipv4_01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.gre_ipv4_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features gre_ipv4_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.gre_ipv4_02.sh b/testcase/net.features/ltp.net.features.gre_ipv4_02.sh new file mode 100755 index 0000000..699f20a --- /dev/null +++ b/testcase/net.features/ltp.net.features.gre_ipv4_02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-609452050 +# @用例名称: ltp.net.features.gre_ipv4_02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.gre_ipv4_02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features gre_ipv4_02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.gre_ipv6_01.sh b/testcase/net.features/ltp.net.features.gre_ipv6_01.sh new file mode 100755 index 0000000..0d50883 --- /dev/null +++ b/testcase/net.features/ltp.net.features.gre_ipv6_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-598459117 +# @用例名称: ltp.net.features.gre_ipv6_01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.gre_ipv6_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features gre_ipv6_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.gre_ipv6_02.sh b/testcase/net.features/ltp.net.features.gre_ipv6_02.sh new file mode 100755 index 0000000..8d2a2c6 --- /dev/null +++ b/testcase/net.features/ltp.net.features.gre_ipv6_02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-618395257 +# @用例名称: ltp.net.features.gre_ipv6_02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.gre_ipv6_02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features gre_ipv6_02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.gue01.sh b/testcase/net.features/ltp.net.features.gue01.sh new file mode 100755 index 0000000..580e1ab --- /dev/null +++ b/testcase/net.features/ltp.net.features.gue01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-635092175 +# @用例名称: ltp.net.features.gue01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.gue01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features gue01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.gue01_ipv6.sh b/testcase/net.features/ltp.net.features.gue01_ipv6.sh new file mode 100755 index 0000000..09c1649 --- /dev/null +++ b/testcase/net.features/ltp.net.features.gue01_ipv6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-646517628 +# @用例名称: ltp.net.features.gue01_ipv6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.gue01_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features gue01_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.ipvlan01.sh b/testcase/net.features/ltp.net.features.ipvlan01.sh new file mode 100755 index 0000000..0bf5db9 --- /dev/null +++ b/testcase/net.features/ltp.net.features.ipvlan01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-578384126 +# @用例名称: ltp.net.features.ipvlan01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.ipvlan01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features ipvlan01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.macsec01.sh b/testcase/net.features/ltp.net.features.macsec01.sh new file mode 100755 index 0000000..498c3ba --- /dev/null +++ b/testcase/net.features/ltp.net.features.macsec01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-549544653 +# @用例名称: ltp.net.features.macsec01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.macsec01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features macsec01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.macsec02.sh b/testcase/net.features/ltp.net.features.macsec02.sh new file mode 100755 index 0000000..4520616 --- /dev/null +++ b/testcase/net.features/ltp.net.features.macsec02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-558247530 +# @用例名称: ltp.net.features.macsec02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.macsec02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features macsec02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.macsec03.sh b/testcase/net.features/ltp.net.features.macsec03.sh new file mode 100755 index 0000000..4501bea --- /dev/null +++ b/testcase/net.features/ltp.net.features.macsec03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-567199784 +# @用例名称: ltp.net.features.macsec03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.macsec03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features macsec03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.macvlan01.sh b/testcase/net.features/ltp.net.features.macvlan01.sh new file mode 100755 index 0000000..2bb4ed6 --- /dev/null +++ b/testcase/net.features/ltp.net.features.macvlan01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-529769012 +# @用例名称: ltp.net.features.macvlan01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.macvlan01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features macvlan01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.macvtap01.sh b/testcase/net.features/ltp.net.features.macvtap01.sh new file mode 100755 index 0000000..41e82fb --- /dev/null +++ b/testcase/net.features/ltp.net.features.macvtap01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-538700869 +# @用例名称: ltp.net.features.macvtap01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.macvtap01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features macvtap01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.mpls01.sh b/testcase/net.features/ltp.net.features.mpls01.sh new file mode 100755 index 0000000..181cee9 --- /dev/null +++ b/testcase/net.features/ltp.net.features.mpls01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-754744074 +# @用例名称: ltp.net.features.mpls01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.mpls01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features mpls01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.mpls02.sh b/testcase/net.features/ltp.net.features.mpls02.sh new file mode 100755 index 0000000..e6387e4 --- /dev/null +++ b/testcase/net.features/ltp.net.features.mpls02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-765088234 +# @用例名称: ltp.net.features.mpls02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.mpls02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features mpls02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.mpls02_ipv6.sh b/testcase/net.features/ltp.net.features.mpls02_ipv6.sh new file mode 100755 index 0000000..186557a --- /dev/null +++ b/testcase/net.features/ltp.net.features.mpls02_ipv6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-773874387 +# @用例名称: ltp.net.features.mpls02_ipv6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.mpls02_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features mpls02_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.mpls03.sh b/testcase/net.features/ltp.net.features.mpls03.sh new file mode 100755 index 0000000..2df5ebb --- /dev/null +++ b/testcase/net.features/ltp.net.features.mpls03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-782477568 +# @用例名称: ltp.net.features.mpls03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.mpls03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features mpls03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.mpls03_ipv6.sh b/testcase/net.features/ltp.net.features.mpls03_ipv6.sh new file mode 100755 index 0000000..69e1a0e --- /dev/null +++ b/testcase/net.features/ltp.net.features.mpls03_ipv6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-791432457 +# @用例名称: ltp.net.features.mpls03_ipv6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.mpls03_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features mpls03_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.mpls04.sh b/testcase/net.features/ltp.net.features.mpls04.sh new file mode 100755 index 0000000..c94699e --- /dev/null +++ b/testcase/net.features/ltp.net.features.mpls04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-800155723 +# @用例名称: ltp.net.features.mpls04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.mpls04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features mpls04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.sctp01.sh b/testcase/net.features/ltp.net.features.sctp01.sh new file mode 100755 index 0000000..23a2c65 --- /dev/null +++ b/testcase/net.features/ltp.net.features.sctp01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-346838066 +# @用例名称: ltp.net.features.sctp01 +# @用例级别: 3 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.sctp01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features sctp01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.sctp01_ipv6.sh b/testcase/net.features/ltp.net.features.sctp01_ipv6.sh new file mode 100755 index 0000000..c733ea7 --- /dev/null +++ b/testcase/net.features/ltp.net.features.sctp01_ipv6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-366252971 +# @用例名称: ltp.net.features.sctp01_ipv6 +# @用例级别: 3 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.sctp01_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features sctp01_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.sit01.sh b/testcase/net.features/ltp.net.features.sit01.sh new file mode 100755 index 0000000..b5d0de9 --- /dev/null +++ b/testcase/net.features/ltp.net.features.sit01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-744003824 +# @用例名称: ltp.net.features.sit01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.sit01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features sit01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.tcp_fastopen.sh b/testcase/net.features/ltp.net.features.tcp_fastopen.sh new file mode 100755 index 0000000..345c2ec --- /dev/null +++ b/testcase/net.features/ltp.net.features.tcp_fastopen.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-386300290 +# @用例名称: ltp.net.features.tcp_fastopen +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.tcp_fastopen + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features tcp_fastopen + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.tcp_fastopen6.sh b/testcase/net.features/ltp.net.features.tcp_fastopen6.sh new file mode 100755 index 0000000..81cce6f --- /dev/null +++ b/testcase/net.features/ltp.net.features.tcp_fastopen6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-398266745 +# @用例名称: ltp.net.features.tcp_fastopen6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.tcp_fastopen6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features tcp_fastopen6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.vlan01.sh b/testcase/net.features/ltp.net.features.vlan01.sh new file mode 100755 index 0000000..9a08043 --- /dev/null +++ b/testcase/net.features/ltp.net.features.vlan01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-501250159 +# @用例名称: ltp.net.features.vlan01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.vlan01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features vlan01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.vlan02.sh b/testcase/net.features/ltp.net.features.vlan02.sh new file mode 100755 index 0000000..8cd54bb --- /dev/null +++ b/testcase/net.features/ltp.net.features.vlan02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-510187836 +# @用例名称: ltp.net.features.vlan02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.vlan02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features vlan02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.vlan03.sh b/testcase/net.features/ltp.net.features.vlan03.sh new file mode 100755 index 0000000..a2820d1 --- /dev/null +++ b/testcase/net.features/ltp.net.features.vlan03.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-519063878 +# @用例名称: ltp.net.features.vlan03 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.vlan03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features vlan03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.vxlan01.sh b/testcase/net.features/ltp.net.features.vxlan01.sh new file mode 100755 index 0000000..2c4a664 --- /dev/null +++ b/testcase/net.features/ltp.net.features.vxlan01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-410976962 +# @用例名称: ltp.net.features.vxlan01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.vxlan01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features vxlan01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.vxlan02.sh b/testcase/net.features/ltp.net.features.vxlan02.sh new file mode 100755 index 0000000..2684f68 --- /dev/null +++ b/testcase/net.features/ltp.net.features.vxlan02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-420624858 +# @用例名称: ltp.net.features.vxlan02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.vxlan02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features vxlan02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.vxlan02_ipv6.sh b/testcase/net.features/ltp.net.features.vxlan02_ipv6.sh new file mode 100755 index 0000000..9b71f25 --- /dev/null +++ b/testcase/net.features/ltp.net.features.vxlan02_ipv6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-430917300 +# @用例名称: ltp.net.features.vxlan02_ipv6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.vxlan02_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features vxlan02_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.vxlan_ipv6_multi_03.sh b/testcase/net.features/ltp.net.features.vxlan_ipv6_multi_03.sh new file mode 100755 index 0000000..169fb6e --- /dev/null +++ b/testcase/net.features/ltp.net.features.vxlan_ipv6_multi_03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-462009370 +# @用例名称: ltp.net.features.vxlan_ipv6_multi_03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.vxlan_ipv6_multi_03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features vxlan_ipv6_multi_03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.vxlan_ipv6_uni_03.sh b/testcase/net.features/ltp.net.features.vxlan_ipv6_uni_03.sh new file mode 100755 index 0000000..79449e6 --- /dev/null +++ b/testcase/net.features/ltp.net.features.vxlan_ipv6_uni_03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-470798598 +# @用例名称: ltp.net.features.vxlan_ipv6_uni_03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.vxlan_ipv6_uni_03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features vxlan_ipv6_uni_03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.vxlan_ipv6_uni_04.sh b/testcase/net.features/ltp.net.features.vxlan_ipv6_uni_04.sh new file mode 100755 index 0000000..4c8946a --- /dev/null +++ b/testcase/net.features/ltp.net.features.vxlan_ipv6_uni_04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-490478159 +# @用例名称: ltp.net.features.vxlan_ipv6_uni_04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.vxlan_ipv6_uni_04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features vxlan_ipv6_uni_04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.vxlan_multi_03.sh b/testcase/net.features/ltp.net.features.vxlan_multi_03.sh new file mode 100755 index 0000000..116b970 --- /dev/null +++ b/testcase/net.features/ltp.net.features.vxlan_multi_03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-442384532 +# @用例名称: ltp.net.features.vxlan_multi_03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.vxlan_multi_03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features vxlan_multi_03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.vxlan_uni_03.sh b/testcase/net.features/ltp.net.features.vxlan_uni_03.sh new file mode 100755 index 0000000..7d04f61 --- /dev/null +++ b/testcase/net.features/ltp.net.features.vxlan_uni_03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-451241758 +# @用例名称: ltp.net.features.vxlan_uni_03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.vxlan_uni_03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features vxlan_uni_03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.vxlan_uni_04.sh b/testcase/net.features/ltp.net.features.vxlan_uni_04.sh new file mode 100755 index 0000000..dd5b1ef --- /dev/null +++ b/testcase/net.features/ltp.net.features.vxlan_uni_04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-481568876 +# @用例名称: ltp.net.features.vxlan_uni_04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.vxlan_uni_04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features vxlan_uni_04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.wireguard01.sh b/testcase/net.features/ltp.net.features.wireguard01.sh new file mode 100755 index 0000000..aea5fcc --- /dev/null +++ b/testcase/net.features/ltp.net.features.wireguard01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-821576112 +# @用例名称: ltp.net.features.wireguard01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.wireguard01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features wireguard01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.wireguard01_ipv6.sh b/testcase/net.features/ltp.net.features.wireguard01_ipv6.sh new file mode 100755 index 0000000..f3413df --- /dev/null +++ b/testcase/net.features/ltp.net.features.wireguard01_ipv6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-830488541 +# @用例名称: ltp.net.features.wireguard01_ipv6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.wireguard01_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features wireguard01_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.wireguard02.sh b/testcase/net.features/ltp.net.features.wireguard02.sh new file mode 100755 index 0000000..636a72e --- /dev/null +++ b/testcase/net.features/ltp.net.features.wireguard02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-839937785 +# @用例名称: ltp.net.features.wireguard02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.wireguard02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features wireguard02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.features/ltp.net.features.wireguard02_ipv6.sh b/testcase/net.features/ltp.net.features.wireguard02_ipv6.sh new file mode 100755 index 0000000..0e9446d --- /dev/null +++ b/testcase/net.features/ltp.net.features.wireguard02_ipv6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-848686518 +# @用例名称: ltp.net.features.wireguard02_ipv6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.features.wireguard02_ipv6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.features wireguard02_ipv6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6/ltp.net.ipv6.dhcpd6.sh b/testcase/net.ipv6/ltp.net.ipv6.dhcpd6.sh new file mode 100755 index 0000000..6831b1b --- /dev/null +++ b/testcase/net.ipv6/ltp.net.ipv6.dhcpd6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-916812978 +# @用例名称: ltp.net.ipv6.dhcpd6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6.dhcpd6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6 dhcpd6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6/ltp.net.ipv6.dnsmasq6.sh b/testcase/net.ipv6/ltp.net.ipv6.dnsmasq6.sh new file mode 100755 index 0000000..cc1e3af --- /dev/null +++ b/testcase/net.ipv6/ltp.net.ipv6.dnsmasq6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-925477473 +# @用例名称: ltp.net.ipv6.dnsmasq6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6.dnsmasq6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6 dnsmasq6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6/ltp.net.ipv6.ip6tables.sh b/testcase/net.ipv6/ltp.net.ipv6.ip6tables.sh new file mode 100755 index 0000000..df0d82a --- /dev/null +++ b/testcase/net.ipv6/ltp.net.ipv6.ip6tables.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-942834878 +# @用例名称: ltp.net.ipv6.ip6tables +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6.ip6tables + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6 ip6tables + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6/ltp.net.ipv6.ipneigh6_ip.sh b/testcase/net.ipv6/ltp.net.ipv6.ipneigh6_ip.sh new file mode 100755 index 0000000..9c9d1f2 --- /dev/null +++ b/testcase/net.ipv6/ltp.net.ipv6.ipneigh6_ip.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-934090723 +# @用例名称: ltp.net.ipv6.ipneigh6_ip +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6.ipneigh6_ip + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6 ipneigh6_ip + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6/ltp.net.ipv6.nft6.sh b/testcase/net.ipv6/ltp.net.ipv6.nft6.sh new file mode 100755 index 0000000..68f06f3 --- /dev/null +++ b/testcase/net.ipv6/ltp.net.ipv6.nft6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-951505315 +# @用例名称: ltp.net.ipv6.nft6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6.nft6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6 nft6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6/ltp.net.ipv6.ping601.sh b/testcase/net.ipv6/ltp.net.ipv6.ping601.sh new file mode 100755 index 0000000..112fd59 --- /dev/null +++ b/testcase/net.ipv6/ltp.net.ipv6.ping601.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-861330962 +# @用例名称: ltp.net.ipv6.ping601 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6.ping601 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6 ping601 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6/ltp.net.ipv6.ping602.sh b/testcase/net.ipv6/ltp.net.ipv6.ping602.sh new file mode 100755 index 0000000..bcedc09 --- /dev/null +++ b/testcase/net.ipv6/ltp.net.ipv6.ping602.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-873394169 +# @用例名称: ltp.net.ipv6.ping602 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6.ping602 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6 ping602 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6/ltp.net.ipv6.sendfile601.sh b/testcase/net.ipv6/ltp.net.ipv6.sendfile601.sh new file mode 100755 index 0000000..d6bfa9b --- /dev/null +++ b/testcase/net.ipv6/ltp.net.ipv6.sendfile601.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-882068253 +# @用例名称: ltp.net.ipv6.sendfile601 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6.sendfile601 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6 sendfile601 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6/ltp.net.ipv6.tcpdump601.sh b/testcase/net.ipv6/ltp.net.ipv6.tcpdump601.sh new file mode 100755 index 0000000..091617f --- /dev/null +++ b/testcase/net.ipv6/ltp.net.ipv6.tcpdump601.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-890823659 +# @用例名称: ltp.net.ipv6.tcpdump601 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6.tcpdump601 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6 tcpdump601 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6/ltp.net.ipv6.tracepath601.sh b/testcase/net.ipv6/ltp.net.ipv6.tracepath601.sh new file mode 100755 index 0000000..6dc3afe --- /dev/null +++ b/testcase/net.ipv6/ltp.net.ipv6.tracepath601.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-899466233 +# @用例名称: ltp.net.ipv6.tracepath601 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6.tracepath601 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6 tracepath601 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6/ltp.net.ipv6.traceroute601.sh b/testcase/net.ipv6/ltp.net.ipv6.traceroute601.sh new file mode 100755 index 0000000..e2e25f8 --- /dev/null +++ b/testcase/net.ipv6/ltp.net.ipv6.traceroute601.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-908210698 +# @用例名称: ltp.net.ipv6.traceroute601 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6.traceroute601 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6 traceroute601 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_01.sh b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_01.sh new file mode 100755 index 0000000..e4c4162 --- /dev/null +++ b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-991780920 +# @用例名称: ltp.net.ipv6_lib.asapi_01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6_lib.asapi_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6_lib asapi_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_02.sh b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_02.sh new file mode 100755 index 0000000..96a7132 --- /dev/null +++ b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-002396498 +# @用例名称: ltp.net.ipv6_lib.asapi_02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6_lib.asapi_02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6_lib asapi_02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_03.sh b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_03.sh new file mode 100755 index 0000000..a5602e5 --- /dev/null +++ b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-011105256 +# @用例名称: ltp.net.ipv6_lib.asapi_03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6_lib.asapi_03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6_lib asapi_03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.getaddrinfo_01.sh b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.getaddrinfo_01.sh new file mode 100755 index 0000000..6a606d4 --- /dev/null +++ b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.getaddrinfo_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-983004596 +# @用例名称: ltp.net.ipv6_lib.getaddrinfo_01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6_lib.getaddrinfo_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6_lib getaddrinfo_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_01.sh b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_01.sh new file mode 100755 index 0000000..0d7a850 --- /dev/null +++ b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-963098361 +# @用例名称: ltp.net.ipv6_lib.in6_01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6_lib.in6_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6_lib in6_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_02.sh b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_02.sh new file mode 100755 index 0000000..fc0277c --- /dev/null +++ b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213001-974298572 +# @用例名称: ltp.net.ipv6_lib.in6_02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.ipv6_lib.in6_02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.ipv6_lib in6_02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.multicast/ltp.net.multicast.mc_cmds.sh b/testcase/net.multicast/ltp.net.multicast.mc_cmds.sh new file mode 100755 index 0000000..8622afa --- /dev/null +++ b/testcase/net.multicast/ltp.net.multicast.mc_cmds.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-025645499 +# @用例名称: ltp.net.multicast.mc_cmds +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.multicast.mc_cmds + # @预期结果:1: 用例返回0 + ltp_run_testcase net.multicast mc_cmds + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.multicast/ltp.net.multicast.mc_commo.sh b/testcase/net.multicast/ltp.net.multicast.mc_commo.sh new file mode 100755 index 0000000..25ccb4a --- /dev/null +++ b/testcase/net.multicast/ltp.net.multicast.mc_commo.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-034358024 +# @用例名称: ltp.net.multicast.mc_commo +# @用例级别: 3 +# @用例标签: +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.multicast.mc_commo + # @预期结果:1: 用例返回0 + ltp_run_testcase net.multicast mc_commo + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.multicast/ltp.net.multicast.mc_member.sh b/testcase/net.multicast/ltp.net.multicast.mc_member.sh new file mode 100755 index 0000000..3a576fa --- /dev/null +++ b/testcase/net.multicast/ltp.net.multicast.mc_member.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-043033450 +# @用例名称: ltp.net.multicast.mc_member +# @用例级别: 3 +# @用例标签: +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.multicast.mc_member + # @预期结果:1: 用例返回0 + ltp_run_testcase net.multicast mc_member + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.multicast/ltp.net.multicast.mc_opts.sh b/testcase/net.multicast/ltp.net.multicast.mc_opts.sh new file mode 100755 index 0000000..26d0b36 --- /dev/null +++ b/testcase/net.multicast/ltp.net.multicast.mc_opts.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-051614099 +# @用例名称: ltp.net.multicast.mc_opts +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.multicast.mc_opts + # @预期结果:1: 用例返回0 + ltp_run_testcase net.multicast mc_opts + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4t.sh new file mode 100755 index 0000000..7307f3e --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172836-858344238 +# @用例名称: ltp.net.nfs.fsx_v30_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.fsx_v30_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs fsx_v30_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4u.sh new file mode 100755 index 0000000..44ff4b4 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172836-784404695 +# @用例名称: ltp.net.nfs.fsx_v30_ip4u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.fsx_v30_ip4u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs fsx_v30_ip4u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6t.sh new file mode 100755 index 0000000..692ee00 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172837-266033835 +# @用例名称: ltp.net.nfs.fsx_v30_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.fsx_v30_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs fsx_v30_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6u.sh new file mode 100755 index 0000000..046e1f9 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172837-182177100 +# @用例名称: ltp.net.nfs.fsx_v30_ip6u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.fsx_v30_ip6u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs fsx_v30_ip6u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v40_ip4t.sh new file mode 100755 index 0000000..d48f9a7 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v40_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172836-938348662 +# @用例名称: ltp.net.nfs.fsx_v40_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.fsx_v40_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs fsx_v40_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v40_ip6t.sh new file mode 100755 index 0000000..5875a3c --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v40_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172837-346977532 +# @用例名称: ltp.net.nfs.fsx_v40_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.fsx_v40_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs fsx_v40_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v41_ip4t.sh new file mode 100755 index 0000000..4937e9c --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v41_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172837-016391621 +# @用例名称: ltp.net.nfs.fsx_v41_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.fsx_v41_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs fsx_v41_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v41_ip6t.sh new file mode 100755 index 0000000..da71fd2 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v41_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172837-423328369 +# @用例名称: ltp.net.nfs.fsx_v41_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.fsx_v41_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs fsx_v41_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v42_ip4t.sh new file mode 100755 index 0000000..516dbdb --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v42_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172837-100134005 +# @用例名称: ltp.net.nfs.fsx_v42_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.fsx_v42_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs fsx_v42_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v42_ip6t.sh new file mode 100755 index 0000000..1b96418 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v42_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172837-499505231 +# @用例名称: ltp.net.nfs.fsx_v42_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.fsx_v42_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs fsx_v42_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4t.sh new file mode 100755 index 0000000..36273d8 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172829-088829420 +# @用例名称: ltp.net.nfs.nfs01_v30_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs01_v30_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs01_v30_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4u.sh new file mode 100755 index 0000000..3f08966 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172829-013679268 +# @用例名称: ltp.net.nfs.nfs01_v30_ip4u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs01_v30_ip4u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs01_v30_ip4u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6t.sh new file mode 100755 index 0000000..6cc5882 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172829-460889117 +# @用例名称: ltp.net.nfs.nfs01_v30_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs01_v30_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs01_v30_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6u.sh new file mode 100755 index 0000000..846946c --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172829-386790156 +# @用例名称: ltp.net.nfs.nfs01_v30_ip6u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs01_v30_ip6u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs01_v30_ip6u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip4t.sh new file mode 100755 index 0000000..902246d --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172829-162330286 +# @用例名称: ltp.net.nfs.nfs01_v40_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs01_v40_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs01_v40_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip6t.sh new file mode 100755 index 0000000..2621a72 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172829-534189162 +# @用例名称: ltp.net.nfs.nfs01_v40_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs01_v40_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs01_v40_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip4t.sh new file mode 100755 index 0000000..3113538 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172829-234897471 +# @用例名称: ltp.net.nfs.nfs01_v41_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs01_v41_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs01_v41_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip6t.sh new file mode 100755 index 0000000..2e92e4f --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172829-609249145 +# @用例名称: ltp.net.nfs.nfs01_v41_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs01_v41_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs01_v41_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip4t.sh new file mode 100755 index 0000000..71c146e --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172829-310831315 +# @用例名称: ltp.net.nfs.nfs01_v42_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs01_v42_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs01_v42_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip6t.sh new file mode 100755 index 0000000..da3acf1 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172829-689844324 +# @用例名称: ltp.net.nfs.nfs01_v42_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs01_v42_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs01_v42_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4t.sh new file mode 100755 index 0000000..69cff03 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172829-838287125 +# @用例名称: ltp.net.nfs.nfs02_v30_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs02_v30_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs02_v30_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4u.sh new file mode 100755 index 0000000..1216683 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172829-766765972 +# @用例名称: ltp.net.nfs.nfs02_v30_ip4u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs02_v30_ip4u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs02_v30_ip4u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6t.sh new file mode 100755 index 0000000..7b6a022 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172830-200370381 +# @用例名称: ltp.net.nfs.nfs02_v30_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs02_v30_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs02_v30_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6u.sh new file mode 100755 index 0000000..68e9559 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172830-126294967 +# @用例名称: ltp.net.nfs.nfs02_v30_ip6u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs02_v30_ip6u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs02_v30_ip6u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip4t.sh new file mode 100755 index 0000000..e63b9f9 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172829-911853035 +# @用例名称: ltp.net.nfs.nfs02_v40_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs02_v40_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs02_v40_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip6t.sh new file mode 100755 index 0000000..fa1976f --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172830-273888289 +# @用例名称: ltp.net.nfs.nfs02_v40_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs02_v40_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs02_v40_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip4t.sh new file mode 100755 index 0000000..15930d8 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172829-983656736 +# @用例名称: ltp.net.nfs.nfs02_v41_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs02_v41_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs02_v41_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip6t.sh new file mode 100755 index 0000000..7e90bb1 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172830-347286192 +# @用例名称: ltp.net.nfs.nfs02_v41_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs02_v41_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs02_v41_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip4t.sh new file mode 100755 index 0000000..3eec57b --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172830-055051985 +# @用例名称: ltp.net.nfs.nfs02_v42_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs02_v42_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs02_v42_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip6t.sh new file mode 100755 index 0000000..9f61077 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172830-420788260 +# @用例名称: ltp.net.nfs.nfs02_v42_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs02_v42_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs02_v42_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4t.sh new file mode 100755 index 0000000..9b381be --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172830-568252622 +# @用例名称: ltp.net.nfs.nfs03_v30_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs03_v30_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs03_v30_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4u.sh new file mode 100755 index 0000000..883a24e --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172830-496024925 +# @用例名称: ltp.net.nfs.nfs03_v30_ip4u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs03_v30_ip4u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs03_v30_ip4u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6t.sh new file mode 100755 index 0000000..5beeab1 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172830-958460550 +# @用例名称: ltp.net.nfs.nfs03_v30_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs03_v30_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs03_v30_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6u.sh new file mode 100755 index 0000000..0905fe8 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172830-883722885 +# @用例名称: ltp.net.nfs.nfs03_v30_ip6u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs03_v30_ip6u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs03_v30_ip6u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip4t.sh new file mode 100755 index 0000000..3048e1b --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172830-653517182 +# @用例名称: ltp.net.nfs.nfs03_v40_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs03_v40_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs03_v40_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip6t.sh new file mode 100755 index 0000000..e9e7755 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172831-036395384 +# @用例名称: ltp.net.nfs.nfs03_v40_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs03_v40_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs03_v40_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip4t.sh new file mode 100755 index 0000000..f6ef658 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172830-731500522 +# @用例名称: ltp.net.nfs.nfs03_v41_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs03_v41_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs03_v41_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip6t.sh new file mode 100755 index 0000000..911c440 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172831-112171802 +# @用例名称: ltp.net.nfs.nfs03_v41_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs03_v41_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs03_v41_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip4t.sh new file mode 100755 index 0000000..5e8a509 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172830-808208122 +# @用例名称: ltp.net.nfs.nfs03_v42_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs03_v42_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs03_v42_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip6t.sh new file mode 100755 index 0000000..2a570fb --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172831-187042174 +# @用例名称: ltp.net.nfs.nfs03_v42_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs03_v42_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs03_v42_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4t.sh new file mode 100755 index 0000000..7bedb8a --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172831-335529715 +# @用例名称: ltp.net.nfs.nfs04_v30_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs04_v30_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs04_v30_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4u.sh new file mode 100755 index 0000000..afaa57e --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172831-261098076 +# @用例名称: ltp.net.nfs.nfs04_v30_ip4u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs04_v30_ip4u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs04_v30_ip4u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6t.sh new file mode 100755 index 0000000..0ff56cb --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172831-714344153 +# @用例名称: ltp.net.nfs.nfs04_v30_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs04_v30_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs04_v30_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6u.sh new file mode 100755 index 0000000..f249a24 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172831-639230697 +# @用例名称: ltp.net.nfs.nfs04_v30_ip6u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs04_v30_ip6u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs04_v30_ip6u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip4t.sh new file mode 100755 index 0000000..8278a74 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172831-411401693 +# @用例名称: ltp.net.nfs.nfs04_v40_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs04_v40_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs04_v40_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip6t.sh new file mode 100755 index 0000000..9a1c6f7 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172831-794305910 +# @用例名称: ltp.net.nfs.nfs04_v40_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs04_v40_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs04_v40_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip4t.sh new file mode 100755 index 0000000..27aebf3 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172831-488625058 +# @用例名称: ltp.net.nfs.nfs04_v41_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs04_v41_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs04_v41_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip6t.sh new file mode 100755 index 0000000..d429e22 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172831-871454904 +# @用例名称: ltp.net.nfs.nfs04_v41_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs04_v41_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs04_v41_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip4t.sh new file mode 100755 index 0000000..6a03ac0 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172831-564770884 +# @用例名称: ltp.net.nfs.nfs04_v42_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs04_v42_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs04_v42_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip6t.sh new file mode 100755 index 0000000..3cbb4eb --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172831-946565113 +# @用例名称: ltp.net.nfs.nfs04_v42_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs04_v42_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs04_v42_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4t.sh new file mode 100755 index 0000000..ebecb71 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172832-093839657 +# @用例名称: ltp.net.nfs.nfs05_v30_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs05_v30_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs05_v30_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4u.sh new file mode 100755 index 0000000..4d31b1c --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172832-019072523 +# @用例名称: ltp.net.nfs.nfs05_v30_ip4u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs05_v30_ip4u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs05_v30_ip4u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6t.sh new file mode 100755 index 0000000..df9ea47 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172832-467595503 +# @用例名称: ltp.net.nfs.nfs05_v30_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs05_v30_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs05_v30_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6u.sh new file mode 100755 index 0000000..47c43df --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172832-395399867 +# @用例名称: ltp.net.nfs.nfs05_v30_ip6u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs05_v30_ip6u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs05_v30_ip6u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip4t.sh new file mode 100755 index 0000000..e160fe9 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172832-171335406 +# @用例名称: ltp.net.nfs.nfs05_v40_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs05_v40_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs05_v40_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip6t.sh new file mode 100755 index 0000000..ea47bf3 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172832-539430026 +# @用例名称: ltp.net.nfs.nfs05_v40_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs05_v40_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs05_v40_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip4t.sh new file mode 100755 index 0000000..961c814 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172832-247225573 +# @用例名称: ltp.net.nfs.nfs05_v41_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs05_v41_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs05_v41_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip6t.sh new file mode 100755 index 0000000..e188650 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172832-611658548 +# @用例名称: ltp.net.nfs.nfs05_v41_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs05_v41_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs05_v41_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip4t.sh new file mode 100755 index 0000000..42b1714 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172832-321136603 +# @用例名称: ltp.net.nfs.nfs05_v42_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs05_v42_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs05_v42_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip6t.sh new file mode 100755 index 0000000..199fa15 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172832-685478844 +# @用例名称: ltp.net.nfs.nfs05_v42_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs05_v42_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs05_v42_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs06_v30_v40_ip4.sh b/testcase/net.nfs/ltp.net.nfs.nfs06_v30_v40_ip4.sh new file mode 100755 index 0000000..6b14499 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs06_v30_v40_ip4.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172832-757717927 +# @用例名称: ltp.net.nfs.nfs06_v30_v40_ip4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs06_v30_v40_ip4 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs06_v30_v40_ip4 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs06_v4x_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs06_v4x_ip6t.sh new file mode 100755 index 0000000..1135da7 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs06_v4x_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172832-910334643 +# @用例名称: ltp.net.nfs.nfs06_v4x_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs06_v4x_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs06_v4x_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs06_vall_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs06_vall_ip4t.sh new file mode 100755 index 0000000..1e08e6a --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs06_vall_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172832-832434246 +# @用例名称: ltp.net.nfs.nfs06_vall_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs06_vall_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs06_vall_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4t.sh new file mode 100755 index 0000000..5e4500e --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172833-060649489 +# @用例名称: ltp.net.nfs.nfs07_v30_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs07_v30_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs07_v30_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4u.sh new file mode 100755 index 0000000..967575c --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172832-983225357 +# @用例名称: ltp.net.nfs.nfs07_v30_ip4u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs07_v30_ip4u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs07_v30_ip4u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6t.sh new file mode 100755 index 0000000..c9c4196 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172833-441930414 +# @用例名称: ltp.net.nfs.nfs07_v30_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs07_v30_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs07_v30_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6u.sh new file mode 100755 index 0000000..d5c1682 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172833-366086864 +# @用例名称: ltp.net.nfs.nfs07_v30_ip6u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs07_v30_ip6u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs07_v30_ip6u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip4t.sh new file mode 100755 index 0000000..7736d2a --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172833-133894763 +# @用例名称: ltp.net.nfs.nfs07_v40_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs07_v40_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs07_v40_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip6t.sh new file mode 100755 index 0000000..189da3a --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172833-517999410 +# @用例名称: ltp.net.nfs.nfs07_v40_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs07_v40_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs07_v40_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip4t.sh new file mode 100755 index 0000000..5445282 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172833-210725483 +# @用例名称: ltp.net.nfs.nfs07_v41_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs07_v41_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs07_v41_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip6t.sh new file mode 100755 index 0000000..f9baedb --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172833-594675885 +# @用例名称: ltp.net.nfs.nfs07_v41_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs07_v41_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs07_v41_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip4t.sh new file mode 100755 index 0000000..f7306ca --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172833-289859931 +# @用例名称: ltp.net.nfs.nfs07_v42_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs07_v42_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs07_v42_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip6t.sh new file mode 100755 index 0000000..5da9aa6 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172833-674032321 +# @用例名称: ltp.net.nfs.nfs07_v42_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs07_v42_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs07_v42_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4t.sh new file mode 100755 index 0000000..23eeab4 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172833-836452615 +# @用例名称: ltp.net.nfs.nfs08_v30_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs08_v30_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs08_v30_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4u.sh new file mode 100755 index 0000000..00d44a6 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172833-754097003 +# @用例名称: ltp.net.nfs.nfs08_v30_ip4u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs08_v30_ip4u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs08_v30_ip4u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6t.sh new file mode 100755 index 0000000..79279eb --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172834-213476402 +# @用例名称: ltp.net.nfs.nfs08_v30_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs08_v30_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs08_v30_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6u.sh new file mode 100755 index 0000000..fea5f27 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172834-138835030 +# @用例名称: ltp.net.nfs.nfs08_v30_ip6u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs08_v30_ip6u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs08_v30_ip6u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip4t.sh new file mode 100755 index 0000000..6bf5404 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172833-919705073 +# @用例名称: ltp.net.nfs.nfs08_v40_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs08_v40_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs08_v40_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip6t.sh new file mode 100755 index 0000000..46dd9e5 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172834-289228098 +# @用例名称: ltp.net.nfs.nfs08_v40_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs08_v40_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs08_v40_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip4t.sh new file mode 100755 index 0000000..88fd802 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172833-992539462 +# @用例名称: ltp.net.nfs.nfs08_v41_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs08_v41_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs08_v41_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip6t.sh new file mode 100755 index 0000000..c6ada3e --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172834-365011806 +# @用例名称: ltp.net.nfs.nfs08_v41_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs08_v41_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs08_v41_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip4t.sh new file mode 100755 index 0000000..1e99482 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172834-067350010 +# @用例名称: ltp.net.nfs.nfs08_v42_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs08_v42_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs08_v42_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip6t.sh new file mode 100755 index 0000000..7e1ef4c --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172834-442024254 +# @用例名称: ltp.net.nfs.nfs08_v42_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs08_v42_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs08_v42_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4t.sh new file mode 100755 index 0000000..4635012 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172834-591140181 +# @用例名称: ltp.net.nfs.nfs09_v30_ip4t +# @用例级别: 3 +# @用例标签: 待分析 +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs09_v30_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs09_v30_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4u.sh new file mode 100755 index 0000000..9d8719e --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172834-516609796 +# @用例名称: ltp.net.nfs.nfs09_v30_ip4u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs09_v30_ip4u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs09_v30_ip4u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6t.sh new file mode 100755 index 0000000..33f299e --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172834-974245259 +# @用例名称: ltp.net.nfs.nfs09_v30_ip6t +# @用例级别: 3 +# @用例标签: 待分析 +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs09_v30_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs09_v30_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6u.sh new file mode 100755 index 0000000..77dbe08 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172834-895451119 +# @用例名称: ltp.net.nfs.nfs09_v30_ip6u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs09_v30_ip6u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs09_v30_ip6u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip4t.sh new file mode 100755 index 0000000..c8e7242 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172834-666608924 +# @用例名称: ltp.net.nfs.nfs09_v40_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs09_v40_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs09_v40_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip6t.sh new file mode 100755 index 0000000..29762c3 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172835-047972186 +# @用例名称: ltp.net.nfs.nfs09_v40_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs09_v40_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs09_v40_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip4t.sh new file mode 100755 index 0000000..ade058d --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172834-740507759 +# @用例名称: ltp.net.nfs.nfs09_v41_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs09_v41_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs09_v41_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip6t.sh new file mode 100755 index 0000000..1934223 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172835-121358966 +# @用例名称: ltp.net.nfs.nfs09_v41_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs09_v41_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs09_v41_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip4t.sh new file mode 100755 index 0000000..dcc9343 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172834-819098547 +# @用例名称: ltp.net.nfs.nfs09_v42_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs09_v42_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs09_v42_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip6t.sh new file mode 100755 index 0000000..f03c19b --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172835-196164460 +# @用例名称: ltp.net.nfs.nfs09_v42_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs09_v42_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs09_v42_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4t.sh new file mode 100755 index 0000000..d75d8fb --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172835-345239769 +# @用例名称: ltp.net.nfs.nfslock01_v30_ip4t +# @用例级别: 3 +# @用例标签: 待分析 +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfslock01_v30_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfslock01_v30_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4u.sh new file mode 100755 index 0000000..d34d568 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172835-271225437 +# @用例名称: ltp.net.nfs.nfslock01_v30_ip4u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfslock01_v30_ip4u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfslock01_v30_ip4u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6t.sh new file mode 100755 index 0000000..1723704 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172835-723830638 +# @用例名称: ltp.net.nfs.nfslock01_v30_ip6t +# @用例级别: 3 +# @用例标签: 待分析 +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfslock01_v30_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfslock01_v30_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6u.sh new file mode 100755 index 0000000..16659d3 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172835-648686105 +# @用例名称: ltp.net.nfs.nfslock01_v30_ip6u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfslock01_v30_ip6u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfslock01_v30_ip6u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip4t.sh new file mode 100755 index 0000000..a8cd2f1 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172835-420390914 +# @用例名称: ltp.net.nfs.nfslock01_v40_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfslock01_v40_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfslock01_v40_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip6t.sh new file mode 100755 index 0000000..a7422c5 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172835-798580150 +# @用例名称: ltp.net.nfs.nfslock01_v40_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfslock01_v40_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfslock01_v40_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip4t.sh new file mode 100755 index 0000000..a0c67c3 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172835-495837868 +# @用例名称: ltp.net.nfs.nfslock01_v41_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfslock01_v41_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfslock01_v41_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip6t.sh new file mode 100755 index 0000000..9d2f400 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172835-874234695 +# @用例名称: ltp.net.nfs.nfslock01_v41_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfslock01_v41_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfslock01_v41_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip4t.sh new file mode 100755 index 0000000..b9b08b2 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172835-572249856 +# @用例名称: ltp.net.nfs.nfslock01_v42_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfslock01_v42_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfslock01_v42_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip6t.sh new file mode 100755 index 0000000..0280738 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172835-949688846 +# @用例名称: ltp.net.nfs.nfslock01_v42_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfslock01_v42_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfslock01_v42_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4t.sh new file mode 100755 index 0000000..0bcb386 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172836-102630588 +# @用例名称: ltp.net.nfs.nfsstat01_v30_ip4t +# @用例级别: 3 +# @用例标签: 待分析 +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfsstat01_v30_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfsstat01_v30_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4u.sh new file mode 100755 index 0000000..ae8d415 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172836-028454523 +# @用例名称: ltp.net.nfs.nfsstat01_v30_ip4u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfsstat01_v30_ip4u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfsstat01_v30_ip4u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6t.sh new file mode 100755 index 0000000..afa64f2 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172836-478451526 +# @用例名称: ltp.net.nfs.nfsstat01_v30_ip6t +# @用例级别: 3 +# @用例标签: 待分析 +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfsstat01_v30_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfsstat01_v30_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6u.sh new file mode 100755 index 0000000..59a1f31 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6u.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172836-403528132 +# @用例名称: ltp.net.nfs.nfsstat01_v30_ip6u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfsstat01_v30_ip6u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfsstat01_v30_ip6u + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip4t.sh new file mode 100755 index 0000000..d2196da --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172836-177022664 +# @用例名称: ltp.net.nfs.nfsstat01_v40_ip4t +# @用例级别: 3 +# @用例标签: 待分析 +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfsstat01_v40_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfsstat01_v40_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip6t.sh new file mode 100755 index 0000000..cabf998 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172836-554073263 +# @用例名称: ltp.net.nfs.nfsstat01_v40_ip6t +# @用例级别: 3 +# @用例标签: 待分析 +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfsstat01_v40_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfsstat01_v40_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip4t.sh new file mode 100755 index 0000000..b434745 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172836-252267579 +# @用例名称: ltp.net.nfs.nfsstat01_v41_ip4t +# @用例级别: 3 +# @用例标签: 待分析 +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfsstat01_v41_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfsstat01_v41_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip6t.sh new file mode 100755 index 0000000..5689cc7 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172836-628436163 +# @用例名称: ltp.net.nfs.nfsstat01_v41_ip6t +# @用例级别: 3 +# @用例标签: 待分析 +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfsstat01_v41_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfsstat01_v41_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip4t.sh new file mode 100755 index 0000000..1a48a85 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip4t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172836-328425797 +# @用例名称: ltp.net.nfs.nfsstat01_v42_ip4t +# @用例级别: 3 +# @用例标签: 待分析 +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfsstat01_v42_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfsstat01_v42_ip4t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip6t.sh new file mode 100755 index 0000000..1f74f04 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip6t.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172836-704570561 +# @用例名称: ltp.net.nfs.nfsstat01_v42_ip6t +# @用例级别: 3 +# @用例标签: 待分析 +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfsstat01_v42_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfsstat01_v42_ip6t + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc01.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc01.sh new file mode 100755 index 0000000..b0e02a1 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-843808556 +# @用例名称: ltp.net.rpc_tests.rpc01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_auth_destroy.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_auth_destroy.sh new file mode 100755 index 0000000..5efb376 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_auth_destroy.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-960908630 +# @用例名称: ltp.net.rpc_tests.rpc_auth_destroy +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_auth_destroy + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_auth_destroy + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authnone_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authnone_create.sh new file mode 100755 index 0000000..7004222 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authnone_create.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-934885618 +# @用例名称: ltp.net.rpc_tests.rpc_authnone_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_authnone_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_authnone_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create.sh new file mode 100755 index 0000000..744f44f --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-943598885 +# @用例名称: ltp.net.rpc_tests.rpc_authunix_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_authunix_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_authunix_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create_default.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create_default.sh new file mode 100755 index 0000000..94cda24 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create_default.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-952252119 +# @用例名称: ltp.net.rpc_tests.rpc_authunix_create_default +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_authunix_create_default + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_authunix_create_default + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_callrpc.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_callrpc.sh new file mode 100755 index 0000000..1517925 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_callrpc.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-288897272 +# @用例名称: ltp.net.rpc_tests.rpc_callrpc +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_callrpc + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_callrpc + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_broadcast.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_broadcast.sh new file mode 100755 index 0000000..8ce3325 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_broadcast.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-971869193 +# @用例名称: ltp.net.rpc_tests.rpc_clnt_broadcast +# @用例级别: 2 +# @用例标签: TS2不支持 +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clnt_broadcast + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clnt_broadcast + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_call.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_call.sh new file mode 100755 index 0000000..cf1ee64 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_call.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-280263355 +# @用例名称: ltp.net.rpc_tests.rpc_clnt_call +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clnt_call + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clnt_call + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_control.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_control.sh new file mode 100755 index 0000000..359de3b --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_control.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-321068201 +# @用例名称: ltp.net.rpc_tests.rpc_clnt_control +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clnt_control + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clnt_control + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_create.sh new file mode 100755 index 0000000..3fd8131 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_create.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-044337136 +# @用例名称: ltp.net.rpc_tests.rpc_clnt_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clnt_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clnt_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_destroy.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_destroy.sh new file mode 100755 index 0000000..f9db7a2 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_destroy.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-035391866 +# @用例名称: ltp.net.rpc_tests.rpc_clnt_destroy +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clnt_destroy + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clnt_destroy + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_freeres.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_freeres.sh new file mode 100755 index 0000000..d0a0944 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_freeres.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-297607524 +# @用例名称: ltp.net.rpc_tests.rpc_clnt_freeres +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clnt_freeres + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clnt_freeres + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_geterr.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_geterr.sh new file mode 100755 index 0000000..d75d0fd --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_geterr.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-310856550 +# @用例名称: ltp.net.rpc_tests.rpc_clnt_geterr +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clnt_geterr + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clnt_geterr + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_pcreateerror.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_pcreateerror.sh new file mode 100755 index 0000000..25a94f4 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_pcreateerror.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-101210595 +# @用例名称: ltp.net.rpc_tests.rpc_clnt_pcreateerror +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clnt_pcreateerror + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clnt_pcreateerror + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perrno.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perrno.sh new file mode 100755 index 0000000..2994515 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perrno.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-111242911 +# @用例名称: ltp.net.rpc_tests.rpc_clnt_perrno +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clnt_perrno + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clnt_perrno + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perror.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perror.sh new file mode 100755 index 0000000..0292038 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perror.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-124191194 +# @用例名称: ltp.net.rpc_tests.rpc_clnt_perror +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clnt_perror + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clnt_perror + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_spcreateerror.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_spcreateerror.sh new file mode 100755 index 0000000..ee298fd --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_spcreateerror.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-139724124 +# @用例名称: ltp.net.rpc_tests.rpc_clnt_spcreateerror +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clnt_spcreateerror + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clnt_spcreateerror + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperrno.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperrno.sh new file mode 100755 index 0000000..1a4e805 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperrno.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-151319555 +# @用例名称: ltp.net.rpc_tests.rpc_clnt_sperrno +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clnt_sperrno + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clnt_sperrno + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperror.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperror.sh new file mode 100755 index 0000000..8958d7a --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperror.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-160372729 +# @用例名称: ltp.net.rpc_tests.rpc_clnt_sperror +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clnt_sperror + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clnt_sperror + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntraw_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntraw_create.sh new file mode 100755 index 0000000..9800be0 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntraw_create.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-054200957 +# @用例名称: ltp.net.rpc_tests.rpc_clntraw_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clntraw_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clntraw_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnttcp_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnttcp_create.sh new file mode 100755 index 0000000..80103e6 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnttcp_create.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-065102710 +# @用例名称: ltp.net.rpc_tests.rpc_clnttcp_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clnttcp_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clnttcp_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_bufcreate.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_bufcreate.sh new file mode 100755 index 0000000..0925de5 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_bufcreate.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-090416785 +# @用例名称: ltp.net.rpc_tests.rpc_clntudp_bufcreate +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clntudp_bufcreate + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clntudp_bufcreate + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_create.sh new file mode 100755 index 0000000..97bbea7 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_create.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-081686466 +# @用例名称: ltp.net.rpc_tests.rpc_clntudp_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_clntudp_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_clntudp_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_get_myaddress.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_get_myaddress.sh new file mode 100755 index 0000000..8d0547f --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_get_myaddress.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-924192134 +# @用例名称: ltp.net.rpc_tests.rpc_get_myaddress +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_get_myaddress + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_get_myaddress + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getmaps.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getmaps.sh new file mode 100755 index 0000000..fbea340 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getmaps.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-906927463 +# @用例名称: ltp.net.rpc_tests.rpc_pmap_getmaps +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_pmap_getmaps + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_pmap_getmaps + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getport.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getport.sh new file mode 100755 index 0000000..0b397fd --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getport.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-898001859 +# @用例名称: ltp.net.rpc_tests.rpc_pmap_getport +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_pmap_getport + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_pmap_getport + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_rmtcall.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_rmtcall.sh new file mode 100755 index 0000000..2575918 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_rmtcall.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-915459752 +# @用例名称: ltp.net.rpc_tests.rpc_pmap_rmtcall +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_pmap_rmtcall + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_pmap_rmtcall + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_set.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_set.sh new file mode 100755 index 0000000..c672968 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_set.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-880564716 +# @用例名称: ltp.net.rpc_tests.rpc_pmap_set +# @用例级别: 2 +# @用例标签: TS2不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_pmap_set + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_pmap_set + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_unset.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_unset.sh new file mode 100755 index 0000000..aff6420 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_unset.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-889375875 +# @用例名称: ltp.net.rpc_tests.rpc_pmap_unset +# @用例级别: 2 +# @用例标签: TS2不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_pmap_unset + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_pmap_unset + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_registerrpc.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_registerrpc.sh new file mode 100755 index 0000000..62eacf0 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_registerrpc.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-269114379 +# @用例名称: ltp.net.rpc_tests.rpc_registerrpc +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_registerrpc + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_registerrpc + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_destroy.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_destroy.sh new file mode 100755 index 0000000..a1488d2 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_destroy.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-982746189 +# @用例名称: ltp.net.rpc_tests.rpc_svc_destroy +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svc_destroy + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svc_destroy + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_freeargs.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_freeargs.sh new file mode 100755 index 0000000..9274cdb --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_freeargs.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-343529117 +# @用例名称: ltp.net.rpc_tests.rpc_svc_freeargs +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svc_freeargs + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svc_freeargs + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getargs.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getargs.sh new file mode 100755 index 0000000..6fa7f9c --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getargs.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-352456063 +# @用例名称: ltp.net.rpc_tests.rpc_svc_getargs +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svc_getargs + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svc_getargs + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getcaller.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getcaller.sh new file mode 100755 index 0000000..6cff86a --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getcaller.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-330143906 +# @用例名称: ltp.net.rpc_tests.rpc_svc_getcaller +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svc_getcaller + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svc_getcaller + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_register.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_register.sh new file mode 100755 index 0000000..e0dcf1f --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_register.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-251861209 +# @用例名称: ltp.net.rpc_tests.rpc_svc_register +# @用例级别: 2 +# @用例标签: TS2不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svc_register + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svc_register + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_sendreply.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_sendreply.sh new file mode 100755 index 0000000..ac024a8 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_sendreply.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-361144164 +# @用例名称: ltp.net.rpc_tests.rpc_svc_sendreply +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svc_sendreply + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svc_sendreply + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_unregister.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_unregister.sh new file mode 100755 index 0000000..c3b2ef5 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_unregister.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-260556573 +# @用例名称: ltp.net.rpc_tests.rpc_svc_unregister +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svc_unregister + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svc_unregister + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_auth.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_auth.sh new file mode 100755 index 0000000..135e3f5 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_auth.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-211841242 +# @用例名称: ltp.net.rpc_tests.rpc_svcerr_auth +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svcerr_auth + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svcerr_auth + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noproc.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noproc.sh new file mode 100755 index 0000000..0a81680 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noproc.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-170408090 +# @用例名称: ltp.net.rpc_tests.rpc_svcerr_noproc +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svcerr_noproc + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svcerr_noproc + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noprog.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noprog.sh new file mode 100755 index 0000000..7e9d51f --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noprog.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-181310453 +# @用例名称: ltp.net.rpc_tests.rpc_svcerr_noprog +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svcerr_noprog + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svcerr_noprog + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_progvers.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_progvers.sh new file mode 100755 index 0000000..7f4a410 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_progvers.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-190182277 +# @用例名称: ltp.net.rpc_tests.rpc_svcerr_progvers +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svcerr_progvers + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svcerr_progvers + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_systemerr.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_systemerr.sh new file mode 100755 index 0000000..ef0f1c7 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_systemerr.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-200573003 +# @用例名称: ltp.net.rpc_tests.rpc_svcerr_systemerr +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svcerr_systemerr + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svcerr_systemerr + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_weakauth.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_weakauth.sh new file mode 100755 index 0000000..1e574ab --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_weakauth.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-220766836 +# @用例名称: ltp.net.rpc_tests.rpc_svcerr_weakauth +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svcerr_weakauth + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svcerr_weakauth + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcfd_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcfd_create.sh new file mode 100755 index 0000000..a3e8eea --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcfd_create.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-991550255 +# @用例名称: ltp.net.rpc_tests.rpc_svcfd_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svcfd_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svcfd_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcraw_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcraw_create.sh new file mode 100755 index 0000000..b3d478d --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcraw_create.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-017894790 +# @用例名称: ltp.net.rpc_tests.rpc_svcraw_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svcraw_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svcraw_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svctcp_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svctcp_create.sh new file mode 100755 index 0000000..dfa0f53 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svctcp_create.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-000329877 +# @用例名称: ltp.net.rpc_tests.rpc_svctcp_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svctcp_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svctcp_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_bufcreate.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_bufcreate.sh new file mode 100755 index 0000000..7621b36 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_bufcreate.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-026567591 +# @用例名称: ltp.net.rpc_tests.rpc_svcudp_bufcreate +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svcudp_bufcreate + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svcudp_bufcreate + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_create.sh new file mode 100755 index 0000000..e44ba9a --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_create.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-009208023 +# @用例名称: ltp.net.rpc_tests.rpc_svcudp_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_svcudp_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_svcudp_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_register.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_register.sh new file mode 100755 index 0000000..08de5b3 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_register.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-234466315 +# @用例名称: ltp.net.rpc_tests.rpc_xprt_register +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_xprt_register + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_xprt_register + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_unregister.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_unregister.sh new file mode 100755 index 0000000..f00792b --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_unregister.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-243128827 +# @用例名称: ltp.net.rpc_tests.rpc_xprt_unregister +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpc_xprt_unregister + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpc_xprt_unregister + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpcinfo.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpcinfo.sh new file mode 100755 index 0000000..e5eb257 --- /dev/null +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpcinfo.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213002-852532774 +# @用例名称: ltp.net.rpc_tests.rpcinfo +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.rpc_tests.rpcinfo + # @预期结果:1: 用例返回0 + ltp_run_testcase net.rpc_tests rpcinfo + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_accept_close.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_accept_close.sh new file mode 100755 index 0000000..51afbfd --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_accept_close.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-373626624 +# @用例名称: ltp.net.sctp.test_1_to_1_accept_close +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_accept_close + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_accept_close + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_addrs.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_addrs.sh new file mode 100755 index 0000000..2b47cd6 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_addrs.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-382909137 +# @用例名称: ltp.net.sctp.test_1_to_1_addrs +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_addrs + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_addrs + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_connect.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_connect.sh new file mode 100755 index 0000000..a0287e0 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_connect.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-391572760 +# @用例名称: ltp.net.sctp.test_1_to_1_connect +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_connect + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_connect + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_connectx.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_connectx.sh new file mode 100755 index 0000000..cf3b344 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_connectx.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-400220044 +# @用例名称: ltp.net.sctp.test_1_to_1_connectx +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_connectx + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_connectx + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_events.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_events.sh new file mode 100755 index 0000000..5b11bf8 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_events.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-408908605 +# @用例名称: ltp.net.sctp.test_1_to_1_events +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_events + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_events + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_initmsg_connect.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_initmsg_connect.sh new file mode 100755 index 0000000..05cb0e4 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_initmsg_connect.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-417488322 +# @用例名称: ltp.net.sctp.test_1_to_1_initmsg_connect +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_initmsg_connect + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_initmsg_connect + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_nonblock.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_nonblock.sh new file mode 100755 index 0000000..0eaf1fa --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_nonblock.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-429351695 +# @用例名称: ltp.net.sctp.test_1_to_1_nonblock +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_nonblock + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_nonblock + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvfrom.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvfrom.sh new file mode 100755 index 0000000..bc671ed --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvfrom.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-437985653 +# @用例名称: ltp.net.sctp.test_1_to_1_recvfrom +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_recvfrom + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_recvfrom + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvmsg.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvmsg.sh new file mode 100755 index 0000000..d484fe7 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvmsg.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-446586940 +# @用例名称: ltp.net.sctp.test_1_to_1_recvmsg +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_recvmsg + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_recvmsg + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_rtoinfo.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_rtoinfo.sh new file mode 100755 index 0000000..30c4b88 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_rtoinfo.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-455262066 +# @用例名称: ltp.net.sctp.test_1_to_1_rtoinfo +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_rtoinfo + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_rtoinfo + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_send.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_send.sh new file mode 100755 index 0000000..2525b7d --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_send.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-464073136 +# @用例名称: ltp.net.sctp.test_1_to_1_send +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_send + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_send + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendmsg.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendmsg.sh new file mode 100755 index 0000000..94106b8 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendmsg.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-472808494 +# @用例名称: ltp.net.sctp.test_1_to_1_sendmsg +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_sendmsg + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_sendmsg + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendto.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendto.sh new file mode 100755 index 0000000..e50a0b8 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendto.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-481416594 +# @用例名称: ltp.net.sctp.test_1_to_1_sendto +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_sendto + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_sendto + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_shutdown.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_shutdown.sh new file mode 100755 index 0000000..f4bd137 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_shutdown.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-490139408 +# @用例名称: ltp.net.sctp.test_1_to_1_shutdown +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_shutdown + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_shutdown + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_socket_bind_listen.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_socket_bind_listen.sh new file mode 100755 index 0000000..9c6b91b --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_socket_bind_listen.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-498750244 +# @用例名称: ltp.net.sctp.test_1_to_1_socket_bind_listen +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_socket_bind_listen + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_socket_bind_listen + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sockopt.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sockopt.sh new file mode 100755 index 0000000..bd80c22 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sockopt.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-507324711 +# @用例名称: ltp.net.sctp.test_1_to_1_sockopt +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_sockopt + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_sockopt + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_threads.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_threads.sh new file mode 100755 index 0000000..3c54d89 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_threads.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-515961274 +# @用例名称: ltp.net.sctp.test_1_to_1_threads +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_1_to_1_threads + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_1_to_1_threads + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_assoc_abort.sh b/testcase/net.sctp/ltp.net.sctp.test_assoc_abort.sh new file mode 100755 index 0000000..5e85e51 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_assoc_abort.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-524762977 +# @用例名称: ltp.net.sctp.test_assoc_abort +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_assoc_abort + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_assoc_abort + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_assoc_shutdown.sh b/testcase/net.sctp/ltp.net.sctp.test_assoc_shutdown.sh new file mode 100755 index 0000000..c49fd9a --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_assoc_shutdown.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-533411733 +# @用例名称: ltp.net.sctp.test_assoc_shutdown +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_assoc_shutdown + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_assoc_shutdown + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_autoclose.sh b/testcase/net.sctp/ltp.net.sctp.test_autoclose.sh new file mode 100755 index 0000000..c5c5668 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_autoclose.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-542031075 +# @用例名称: ltp.net.sctp.test_autoclose +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_autoclose + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_autoclose + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_basic.sh b/testcase/net.sctp/ltp.net.sctp.test_basic.sh new file mode 100755 index 0000000..6fd5be2 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_basic.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-550583681 +# @用例名称: ltp.net.sctp.test_basic +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_basic + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_basic + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_basic_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_basic_v6.sh new file mode 100755 index 0000000..88b810d --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_basic_v6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-559143650 +# @用例名称: ltp.net.sctp.test_basic_v6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_basic_v6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_basic_v6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_connect.sh b/testcase/net.sctp/ltp.net.sctp.test_connect.sh new file mode 100755 index 0000000..748cb10 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_connect.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-568011557 +# @用例名称: ltp.net.sctp.test_connect +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_connect + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_connect + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_connectx.sh b/testcase/net.sctp/ltp.net.sctp.test_connectx.sh new file mode 100755 index 0000000..9db939c --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_connectx.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-576698194 +# @用例名称: ltp.net.sctp.test_connectx +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_connectx + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_connectx + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_fragments.sh b/testcase/net.sctp/ltp.net.sctp.test_fragments.sh new file mode 100755 index 0000000..5032231 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_fragments.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-585396352 +# @用例名称: ltp.net.sctp.test_fragments +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_fragments + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_fragments + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_fragments_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_fragments_v6.sh new file mode 100755 index 0000000..162b2ed --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_fragments_v6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-594061921 +# @用例名称: ltp.net.sctp.test_fragments_v6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_fragments_v6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_fragments_v6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_getname.sh b/testcase/net.sctp/ltp.net.sctp.test_getname.sh new file mode 100755 index 0000000..058dac2 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_getname.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-602651195 +# @用例名称: ltp.net.sctp.test_getname +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_getname + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_getname + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_getname_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_getname_v6.sh new file mode 100755 index 0000000..18f6180 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_getname_v6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-611508432 +# @用例名称: ltp.net.sctp.test_getname_v6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_getname_v6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_getname_v6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_inaddr_any.sh b/testcase/net.sctp/ltp.net.sctp.test_inaddr_any.sh new file mode 100755 index 0000000..d6f6299 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_inaddr_any.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-620200018 +# @用例名称: ltp.net.sctp.test_inaddr_any +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_inaddr_any + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_inaddr_any + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_inaddr_any_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_inaddr_any_v6.sh new file mode 100755 index 0000000..f0eb564 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_inaddr_any_v6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-628829589 +# @用例名称: ltp.net.sctp.test_inaddr_any_v6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_inaddr_any_v6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_inaddr_any_v6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_peeloff.sh b/testcase/net.sctp/ltp.net.sctp.test_peeloff.sh new file mode 100755 index 0000000..3fc6f90 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_peeloff.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-637540601 +# @用例名称: ltp.net.sctp.test_peeloff +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_peeloff + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_peeloff + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_peeloff_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_peeloff_v6.sh new file mode 100755 index 0000000..b65496c --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_peeloff_v6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-646383550 +# @用例名称: ltp.net.sctp.test_peeloff_v6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_peeloff_v6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_peeloff_v6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_recvmsg.sh b/testcase/net.sctp/ltp.net.sctp.test_recvmsg.sh new file mode 100755 index 0000000..fb33950 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_recvmsg.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-655059077 +# @用例名称: ltp.net.sctp.test_recvmsg +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_recvmsg + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_recvmsg + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg.sh b/testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg.sh new file mode 100755 index 0000000..12d1123 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-663752226 +# @用例名称: ltp.net.sctp.test_sctp_sendrecvmsg +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_sctp_sendrecvmsg + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_sctp_sendrecvmsg + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg_v6.sh new file mode 100755 index 0000000..e740a02 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg_v6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-672372690 +# @用例名称: ltp.net.sctp.test_sctp_sendrecvmsg_v6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_sctp_sendrecvmsg_v6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_sctp_sendrecvmsg_v6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_sockopt.sh b/testcase/net.sctp/ltp.net.sctp.test_sockopt.sh new file mode 100755 index 0000000..143887d --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_sockopt.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-681806585 +# @用例名称: ltp.net.sctp.test_sockopt +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_sockopt + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_sockopt + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_sockopt_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_sockopt_v6.sh new file mode 100755 index 0000000..c822318 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_sockopt_v6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-690523559 +# @用例名称: ltp.net.sctp.test_sockopt_v6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_sockopt_v6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_sockopt_v6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_tcp_style.sh b/testcase/net.sctp/ltp.net.sctp.test_tcp_style.sh new file mode 100755 index 0000000..1a9b4a3 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_tcp_style.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-699090122 +# @用例名称: ltp.net.sctp.test_tcp_style +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_tcp_style + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_tcp_style + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_tcp_style_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_tcp_style_v6.sh new file mode 100755 index 0000000..48d9ce0 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_tcp_style_v6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-708250916 +# @用例名称: ltp.net.sctp.test_tcp_style_v6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_tcp_style_v6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_tcp_style_v6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_timetolive.sh b/testcase/net.sctp/ltp.net.sctp.test_timetolive.sh new file mode 100755 index 0000000..cc7d5f8 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_timetolive.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-716781992 +# @用例名称: ltp.net.sctp.test_timetolive +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_timetolive + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_timetolive + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.sctp/ltp.net.sctp.test_timetolive_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_timetolive_v6.sh new file mode 100755 index 0000000..b81ebb7 --- /dev/null +++ b/testcase/net.sctp/ltp.net.sctp.test_timetolive_v6.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-725546314 +# @用例名称: ltp.net.sctp.test_timetolive_v6 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.sctp.test_timetolive_v6 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.sctp test_timetolive_v6 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.arping01.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.arping01.sh new file mode 100755 index 0000000..b52bf20 --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.arping01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-182784363 +# @用例名称: ltp.net.tcp_cmds.arping01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.arping01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds arping01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.dhcpd.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.dhcpd.sh new file mode 100755 index 0000000..7a8dc0c --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.dhcpd.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-297842064 +# @用例名称: ltp.net.tcp_cmds.dhcpd +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.dhcpd + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds dhcpd + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.dnsmasq.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.dnsmasq.sh new file mode 100755 index 0000000..a50155c --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.dnsmasq.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-306481622 +# @用例名称: ltp.net.tcp_cmds.dnsmasq +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.dnsmasq + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds dnsmasq + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ftp.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ftp.sh new file mode 100755 index 0000000..6b8691c --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ftp.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-200190738 +# @用例名称: ltp.net.tcp_cmds.ftp +# @用例级别: 4 +# @用例标签: 待分析 +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.ftp + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds ftp + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_arp.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_arp.sh new file mode 100755 index 0000000..f1f6e9c --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_arp.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-165344845 +# @用例名称: ltp.net.tcp_cmds.ipneigh01_arp +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.ipneigh01_arp + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds ipneigh01_arp + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_ip.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_ip.sh new file mode 100755 index 0000000..9494bf1 --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_ip.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-174003910 +# @用例名称: ltp.net.tcp_cmds.ipneigh01_ip +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.ipneigh01_ip + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds ipneigh01_ip + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.iproute.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.iproute.sh new file mode 100755 index 0000000..1eba0ec --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.iproute.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-319771665 +# @用例名称: ltp.net.tcp_cmds.iproute +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.iproute + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds iproute + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.iptables.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.iptables.sh new file mode 100755 index 0000000..cbf6c53 --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.iptables.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-280746920 +# @用例名称: ltp.net.tcp_cmds.iptables +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.iptables + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds iptables + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.netstat.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.netstat.sh new file mode 100755 index 0000000..bd6795e --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.netstat.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-220399129 +# @用例名称: ltp.net.tcp_cmds.netstat +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.netstat + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds netstat + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.nft.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.nft.sh new file mode 100755 index 0000000..0cffd06 --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.nft.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-289333951 +# @用例名称: ltp.net.tcp_cmds.nft +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.nft + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds nft + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping01.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping01.sh new file mode 100755 index 0000000..8d0e7d6 --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-229606530 +# @用例名称: ltp.net.tcp_cmds.ping01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.ping01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds ping01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping02.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping02.sh new file mode 100755 index 0000000..b925764 --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-238134060 +# @用例名称: ltp.net.tcp_cmds.ping02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.ping02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds ping02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.sendfile.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.sendfile.sh new file mode 100755 index 0000000..e647b75 --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.sendfile.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-246630541 +# @用例名称: ltp.net.tcp_cmds.sendfile +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.sendfile + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds sendfile + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tc01.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tc01.sh new file mode 100755 index 0000000..1f8819d --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tc01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-255209125 +# @用例名称: ltp.net.tcp_cmds.tc01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.tc01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds tc01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tcpdump.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tcpdump.sh new file mode 100755 index 0000000..1661524 --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tcpdump.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-263725053 +# @用例名称: ltp.net.tcp_cmds.tcpdump +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.tcpdump + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds tcpdump + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tracepath01.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tracepath01.sh new file mode 100755 index 0000000..87612c7 --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tracepath01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-328272124 +# @用例名称: ltp.net.tcp_cmds.tracepath01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.tracepath01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds tracepath01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.traceroute01.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.traceroute01.sh new file mode 100755 index 0000000..35af77e --- /dev/null +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.traceroute01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-336925619 +# @用例名称: ltp.net.tcp_cmds.traceroute01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tcp_cmds.traceroute01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tcp_cmds traceroute01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authnone_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authnone_create.sh new file mode 100755 index 0000000..0e70dd0 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authnone_create.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-376432627 +# @用例名称: ltp.net.tirpc_tests.tirpc_authnone_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_authnone_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_authnone_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authsys_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authsys_create.sh new file mode 100755 index 0000000..216d253 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authsys_create.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-385027953 +# @用例名称: ltp.net.tirpc_tests.tirpc_authsys_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_authsys_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_authsys_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authsys_create_default.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authsys_create_default.sh new file mode 100755 index 0000000..2610a67 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authsys_create_default.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-393754885 +# @用例名称: ltp.net.tirpc_tests.tirpc_authsys_create_default +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_authsys_create_default + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_authsys_create_default + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_bottomlevel_clnt_call.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_bottomlevel_clnt_call.sh new file mode 100755 index 0000000..20a2b05 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_bottomlevel_clnt_call.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-438699900 +# @用例名称: ltp.net.tirpc_tests.tirpc_bottomlevel_clnt_call +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_bottomlevel_clnt_call + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_bottomlevel_clnt_call + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_control.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_control.sh new file mode 100755 index 0000000..7aa87df --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_control.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-628930178 +# @用例名称: ltp.net.tirpc_tests.tirpc_clnt_control +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_clnt_control + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_clnt_control + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create.sh new file mode 100755 index 0000000..5095226 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-675458966 +# @用例名称: ltp.net.tirpc_tests.tirpc_clnt_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_clnt_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_clnt_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create_timed.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create_timed.sh new file mode 100755 index 0000000..3ce2a17 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create_timed.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-683974393 +# @用例名称: ltp.net.tirpc_tests.tirpc_clnt_create_timed +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_clnt_create_timed + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_clnt_create_timed + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_destroy.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_destroy.sh new file mode 100755 index 0000000..80d2025 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_destroy.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-710193242 +# @用例名称: ltp.net.tirpc_tests.tirpc_clnt_destroy +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_clnt_destroy + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_clnt_destroy + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_dg_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_dg_create.sh new file mode 100755 index 0000000..bad4a7c --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_dg_create.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-404324125 +# @用例名称: ltp.net.tirpc_tests.tirpc_clnt_dg_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_clnt_dg_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_clnt_dg_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_pcreateerror.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_pcreateerror.sh new file mode 100755 index 0000000..07454cb --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_pcreateerror.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-449265634 +# @用例名称: ltp.net.tirpc_tests.tirpc_clnt_pcreateerror +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_clnt_pcreateerror + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_clnt_pcreateerror + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perrno.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perrno.sh new file mode 100755 index 0000000..fd96346 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perrno.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-457914250 +# @用例名称: ltp.net.tirpc_tests.tirpc_clnt_perrno +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_clnt_perrno + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_clnt_perrno + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perror.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perror.sh new file mode 100755 index 0000000..21561fb --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perror.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-466805069 +# @用例名称: ltp.net.tirpc_tests.tirpc_clnt_perror +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_clnt_perror + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_clnt_perror + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tli_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tli_create.sh new file mode 100755 index 0000000..49e6e81 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tli_create.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-519918922 +# @用例名称: ltp.net.tirpc_tests.tirpc_clnt_tli_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_clnt_tli_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_clnt_tli_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tp_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tp_create.sh new file mode 100755 index 0000000..2a29f1c --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tp_create.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-591383017 +# @用例名称: ltp.net.tirpc_tests.tirpc_clnt_tp_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_clnt_tp_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_clnt_tp_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tp_create_timed.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tp_create_timed.sh new file mode 100755 index 0000000..d51ed50 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tp_create_timed.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-600091967 +# @用例名称: ltp.net.tirpc_tests.tirpc_clnt_tp_create_timed +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_clnt_tp_create_timed + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_clnt_tp_create_timed + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_vc_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_vc_create.sh new file mode 100755 index 0000000..769081a --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_vc_create.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-421611198 +# @用例名称: ltp.net.tirpc_tests.tirpc_clnt_vc_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_clnt_vc_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_clnt_vc_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_expertlevel_clnt_call.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_expertlevel_clnt_call.sh new file mode 100755 index 0000000..cb13884 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_expertlevel_clnt_call.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-580750279 +# @用例名称: ltp.net.tirpc_tests.tirpc_expertlevel_clnt_call +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_expertlevel_clnt_call + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_expertlevel_clnt_call + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_interlevel_clnt_call.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_interlevel_clnt_call.sh new file mode 100755 index 0000000..bf1a027 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_interlevel_clnt_call.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-617469629 +# @用例名称: ltp.net.tirpc_tests.tirpc_interlevel_clnt_call +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_interlevel_clnt_call + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_interlevel_clnt_call + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_broadcast.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_broadcast.sh new file mode 100755 index 0000000..0cd0dfe --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_broadcast.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-656348912 +# @用例名称: ltp.net.tirpc_tests.tirpc_rpc_broadcast +# @用例级别: 1 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_rpc_broadcast + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_rpc_broadcast + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_broadcast_exp.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_broadcast_exp.sh new file mode 100755 index 0000000..770aa48 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_broadcast_exp.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-664859519 +# @用例名称: ltp.net.tirpc_tests.tirpc_rpc_broadcast_exp +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_rpc_broadcast_exp + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_rpc_broadcast_exp + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_call.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_call.sh new file mode 100755 index 0000000..063c1f7 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_call.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-647831882 +# @用例名称: ltp.net.tirpc_tests.tirpc_rpc_call +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_rpc_call + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_rpc_call + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_reg.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_reg.sh new file mode 100755 index 0000000..a42bd84 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_reg.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-639263816 +# @用例名称: ltp.net.tirpc_tests.tirpc_rpc_reg +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_rpc_reg + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_rpc_reg + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getaddr.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getaddr.sh new file mode 100755 index 0000000..7de2c2b --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getaddr.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-355774264 +# @用例名称: ltp.net.tirpc_tests.tirpc_rpcb_getaddr +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_rpcb_getaddr + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_rpcb_getaddr + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getmaps.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getmaps.sh new file mode 100755 index 0000000..aba1066 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getmaps.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-364433660 +# @用例名称: ltp.net.tirpc_tests.tirpc_rpcb_getmaps +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_rpcb_getmaps + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_rpcb_getmaps + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_rmtcall.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_rmtcall.sh new file mode 100755 index 0000000..47481c9 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_rmtcall.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-554739138 +# @用例名称: ltp.net.tirpc_tests.tirpc_rpcb_rmtcall +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_rpcb_rmtcall + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_rpcb_rmtcall + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_set.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_set.sh new file mode 100755 index 0000000..d7f0fed --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_set.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-537148507 +# @用例名称: ltp.net.tirpc_tests.tirpc_rpcb_set +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_rpcb_set + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_rpcb_set + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_unset.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_unset.sh new file mode 100755 index 0000000..a5edf6e --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_unset.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-546098938 +# @用例名称: ltp.net.tirpc_tests.tirpc_rpcb_unset +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_rpcb_unset + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_rpcb_unset + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_create.sh new file mode 100755 index 0000000..f70abd5 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_create.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-692586170 +# @用例名称: ltp.net.tirpc_tests.tirpc_svc_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_svc_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_svc_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_destroy.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_destroy.sh new file mode 100755 index 0000000..3ccfc77 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_destroy.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-719840206 +# @用例名称: ltp.net.tirpc_tests.tirpc_svc_destroy +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_svc_destroy + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_svc_destroy + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_dg_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_dg_create.sh new file mode 100755 index 0000000..b1b9325 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_dg_create.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-412935923 +# @用例名称: ltp.net.tirpc_tests.tirpc_svc_dg_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_svc_dg_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_svc_dg_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_reg.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_reg.sh new file mode 100755 index 0000000..396e0f3 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_reg.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-563400127 +# @用例名称: ltp.net.tirpc_tests.tirpc_svc_reg +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_svc_reg + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_svc_reg + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_tli_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_tli_create.sh new file mode 100755 index 0000000..f8c473d --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_tli_create.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-528546950 +# @用例名称: ltp.net.tirpc_tests.tirpc_svc_tli_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_svc_tli_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_svc_tli_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_tp_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_tp_create.sh new file mode 100755 index 0000000..4520a06 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_tp_create.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-608803731 +# @用例名称: ltp.net.tirpc_tests.tirpc_svc_tp_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_svc_tp_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_svc_tp_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_unreg.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_unreg.sh new file mode 100755 index 0000000..202eeb9 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_unreg.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-572043304 +# @用例名称: ltp.net.tirpc_tests.tirpc_svc_unreg +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_svc_unreg + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_svc_unreg + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_vc_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_vc_create.sh new file mode 100755 index 0000000..2da11e3 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_vc_create.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-430149538 +# @用例名称: ltp.net.tirpc_tests.tirpc_svc_vc_create +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_svc_vc_create + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_svc_vc_create + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_noproc.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_noproc.sh new file mode 100755 index 0000000..500074a --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_noproc.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-475372673 +# @用例名称: ltp.net.tirpc_tests.tirpc_svcerr_noproc +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_svcerr_noproc + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_svcerr_noproc + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_noprog.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_noprog.sh new file mode 100755 index 0000000..c0df05f --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_noprog.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-483882109 +# @用例名称: ltp.net.tirpc_tests.tirpc_svcerr_noprog +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_svcerr_noprog + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_svcerr_noprog + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_progvers.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_progvers.sh new file mode 100755 index 0000000..f515c52 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_progvers.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-492467968 +# @用例名称: ltp.net.tirpc_tests.tirpc_svcerr_progvers +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_svcerr_progvers + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_svcerr_progvers + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_systemerr.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_systemerr.sh new file mode 100755 index 0000000..bebddb7 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_systemerr.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-501009473 +# @用例名称: ltp.net.tirpc_tests.tirpc_svcerr_systemerr +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_svcerr_systemerr + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_svcerr_systemerr + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_weakauth.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_weakauth.sh new file mode 100755 index 0000000..aa30535 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_weakauth.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-509473985 +# @用例名称: ltp.net.tirpc_tests.tirpc_svcerr_weakauth +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_svcerr_weakauth + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_svcerr_weakauth + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_toplevel_clnt_call.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_toplevel_clnt_call.sh new file mode 100755 index 0000000..6de3877 --- /dev/null +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_toplevel_clnt_call.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-701326237 +# @用例名称: ltp.net.tirpc_tests.tirpc_toplevel_clnt_call +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 开启rpcbind.service + yum install -y rpcbind + systemctl start rpcbind.service + skip_if_false systemctl is-active --quiet rpcbind.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.tirpc_tests.tirpc_toplevel_clnt_call + # @预期结果:1: 用例返回0 + ltp_run_testcase net.tirpc_tests tirpc_toplevel_clnt_call + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.dns4-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.dns4-stress.sh new file mode 100755 index 0000000..96ebd39 --- /dev/null +++ b/testcase/net_stress.appl/ltp.net_stress.appl.dns4-stress.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-761459736 +# @用例名称: ltp.net_stress.appl.dns4-stress +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.appl.dns4-stress + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.appl dns4-stress + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.dns6-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.dns6-stress.sh new file mode 100755 index 0000000..251c5cd --- /dev/null +++ b/testcase/net_stress.appl/ltp.net_stress.appl.dns6-stress.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-770163556 +# @用例名称: ltp.net_stress.appl.dns6-stress +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.appl.dns6-stress + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.appl dns6-stress + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.ftp4-download-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.ftp4-download-stress.sh new file mode 100755 index 0000000..90aede1 --- /dev/null +++ b/testcase/net_stress.appl/ltp.net_stress.appl.ftp4-download-stress.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-799981661 +# @用例名称: ltp.net_stress.appl.ftp4-download-stress +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.appl.ftp4-download-stress + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.appl ftp4-download-stress + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.ftp4-upload-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.ftp4-upload-stress.sh new file mode 100755 index 0000000..77dbff4 --- /dev/null +++ b/testcase/net_stress.appl/ltp.net_stress.appl.ftp4-upload-stress.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-818955651 +# @用例名称: ltp.net_stress.appl.ftp4-upload-stress +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.appl.ftp4-upload-stress + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.appl ftp4-upload-stress + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.ftp6-download-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.ftp6-download-stress.sh new file mode 100755 index 0000000..32ac53d --- /dev/null +++ b/testcase/net_stress.appl/ltp.net_stress.appl.ftp6-download-stress.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-808525511 +# @用例名称: ltp.net_stress.appl.ftp6-download-stress +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.appl.ftp6-download-stress + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.appl ftp6-download-stress + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.ftp6-upload-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.ftp6-upload-stress.sh new file mode 100755 index 0000000..dd49fc5 --- /dev/null +++ b/testcase/net_stress.appl/ltp.net_stress.appl.ftp6-upload-stress.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-827535037 +# @用例名称: ltp.net_stress.appl.ftp6-upload-stress +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.appl.ftp6-upload-stress + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.appl ftp6-upload-stress + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.http4-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.http4-stress.sh new file mode 100755 index 0000000..b36f37a --- /dev/null +++ b/testcase/net_stress.appl/ltp.net_stress.appl.http4-stress.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-780841139 +# @用例名称: ltp.net_stress.appl.http4-stress +# @用例级别: 4 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 启动了httpd服务 + yum install -y httpd + systemctl start httpd.service + skip_if_false systemctl is-active --quiet httpd.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.appl.http4-stress + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.appl http4-stress + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.http6-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.http6-stress.sh new file mode 100755 index 0000000..1c4b1e7 --- /dev/null +++ b/testcase/net_stress.appl/ltp.net_stress.appl.http6-stress.sh @@ -0,0 +1,44 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-789336528 +# @用例名称: ltp.net_stress.appl.http6-stress +# @用例级别: 4 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: 启动了httpd服务 + yum install -y httpd + systemctl start httpd.service + skip_if_false systemctl is-active --quiet httpd.service + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.appl.http6-stress + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.appl http6-stress + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.ssh4-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.ssh4-stress.sh new file mode 100755 index 0000000..2ce8cec --- /dev/null +++ b/testcase/net_stress.appl/ltp.net_stress.appl.ssh4-stress.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-741375979 +# @用例名称: ltp.net_stress.appl.ssh4-stress +# @用例级别: 1 +# @用例标签: 废弃 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.appl.ssh4-stress + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.appl ssh4-stress + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.ssh6-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.ssh6-stress.sh new file mode 100755 index 0000000..ecfcd44 --- /dev/null +++ b/testcase/net_stress.appl/ltp.net_stress.appl.ssh6-stress.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-750398305 +# @用例名称: ltp.net_stress.appl.ssh6-stress +# @用例级别: 1 +# @用例标签: 废弃 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.appl.ssh6-stress + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.appl ssh6-stress + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-checksum.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-checksum.sh new file mode 100755 index 0000000..9aaae10 --- /dev/null +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-checksum.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-888408191 +# @用例名称: ltp.net_stress.broken_ip.broken_ip4-checksum +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.broken_ip.broken_ip4-checksum + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.broken_ip broken_ip4-checksum + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-dstaddr.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-dstaddr.sh new file mode 100755 index 0000000..917ce13 --- /dev/null +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-dstaddr.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-897167484 +# @用例名称: ltp.net_stress.broken_ip.broken_ip4-dstaddr +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.broken_ip.broken_ip4-dstaddr + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.broken_ip broken_ip4-dstaddr + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-fragment.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-fragment.sh new file mode 100755 index 0000000..5c65b6c --- /dev/null +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-fragment.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-862289661 +# @用例名称: ltp.net_stress.broken_ip.broken_ip4-fragment +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.broken_ip.broken_ip4-fragment + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.broken_ip broken_ip4-fragment + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-ihl.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-ihl.sh new file mode 100755 index 0000000..6674c4f --- /dev/null +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-ihl.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-853681821 +# @用例名称: ltp.net_stress.broken_ip.broken_ip4-ihl +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.broken_ip.broken_ip4-ihl + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.broken_ip broken_ip4-ihl + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-plen.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-plen.sh new file mode 100755 index 0000000..a2af268 --- /dev/null +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-plen.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-870879366 +# @用例名称: ltp.net_stress.broken_ip.broken_ip4-plen +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.broken_ip.broken_ip4-plen + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.broken_ip broken_ip4-plen + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-protcol.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-protcol.sh new file mode 100755 index 0000000..fe7a82d --- /dev/null +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-protcol.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-879653607 +# @用例名称: ltp.net_stress.broken_ip.broken_ip4-protcol +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.broken_ip.broken_ip4-protcol + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.broken_ip broken_ip4-protcol + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-version.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-version.sh new file mode 100755 index 0000000..dd416b5 --- /dev/null +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-version.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-843878033 +# @用例名称: ltp.net_stress.broken_ip.broken_ip4-version +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.broken_ip.broken_ip4-version + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.broken_ip broken_ip4-version + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-dstaddr.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-dstaddr.sh new file mode 100755 index 0000000..d985544 --- /dev/null +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-dstaddr.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-908040203 +# @用例名称: ltp.net_stress.broken_ip.broken_ip6-dstaddr +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.broken_ip.broken_ip6-dstaddr + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.broken_ip broken_ip6-dstaddr + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-nexthdr.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-nexthdr.sh new file mode 100755 index 0000000..d02799c --- /dev/null +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-nexthdr.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-917008186 +# @用例名称: ltp.net_stress.broken_ip.broken_ip6-nexthdr +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.broken_ip.broken_ip6-nexthdr + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.broken_ip broken_ip6-nexthdr + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-plen.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-plen.sh new file mode 100755 index 0000000..07d9e80 --- /dev/null +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-plen.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-925750868 +# @用例名称: ltp.net_stress.broken_ip.broken_ip6-plen +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.broken_ip.broken_ip6-plen + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.broken_ip broken_ip6-plen + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-version.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-version.sh new file mode 100755 index 0000000..e2d2e51 --- /dev/null +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-version.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-937745597 +# @用例名称: ltp.net_stress.broken_ip.broken_ip6-version +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.broken_ip.broken_ip6-version + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.broken_ip broken_ip6-version + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-adddel_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-adddel_ifconfig.sh new file mode 100755 index 0000000..a320b1d --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-adddel_ifconfig.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-990070513 +# @用例名称: ltp.net_stress.interface.if4-addr-adddel_ifconfig +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if4-addr-adddel_ifconfig + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if4-addr-adddel_ifconfig + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-adddel_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-adddel_ip.sh new file mode 100755 index 0000000..e37f314 --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-adddel_ip.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-981375530 +# @用例名称: ltp.net_stress.interface.if4-addr-adddel_ip +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if4-addr-adddel_ip + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if4-addr-adddel_ip + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-addlarge_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-addlarge_ifconfig.sh new file mode 100755 index 0000000..bc52028 --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-addlarge_ifconfig.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-007346375 +# @用例名称: ltp.net_stress.interface.if4-addr-addlarge_ifconfig +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if4-addr-addlarge_ifconfig + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if4-addr-addlarge_ifconfig + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-addlarge_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-addlarge_ip.sh new file mode 100755 index 0000000..0f70997 --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-addlarge_ip.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-998738556 +# @用例名称: ltp.net_stress.interface.if4-addr-addlarge_ip +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if4-addr-addlarge_ip + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if4-addr-addlarge_ip + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-change_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-change_ifconfig.sh new file mode 100755 index 0000000..b685842 --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-change_ifconfig.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-953360480 +# @用例名称: ltp.net_stress.interface.if4-addr-change_ifconfig +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if4-addr-change_ifconfig + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if4-addr-change_ifconfig + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-mtu-change_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-mtu-change_ifconfig.sh new file mode 100755 index 0000000..1faed98 --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-mtu-change_ifconfig.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-060656385 +# @用例名称: ltp.net_stress.interface.if4-mtu-change_ifconfig +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if4-mtu-change_ifconfig + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if4-mtu-change_ifconfig + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-mtu-change_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-mtu-change_ip.sh new file mode 100755 index 0000000..1b5b53a --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-mtu-change_ip.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-051198355 +# @用例名称: ltp.net_stress.interface.if4-mtu-change_ip +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if4-mtu-change_ip + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if4-mtu-change_ip + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-adddel_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-adddel_ip.sh new file mode 100755 index 0000000..f797ab7 --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-adddel_ip.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-016170029 +# @用例名称: ltp.net_stress.interface.if4-route-adddel_ip +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if4-route-adddel_ip + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if4-route-adddel_ip + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-adddel_route.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-adddel_route.sh new file mode 100755 index 0000000..fb3658b --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-adddel_route.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-024795641 +# @用例名称: ltp.net_stress.interface.if4-route-adddel_route +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if4-route-adddel_route + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if4-route-adddel_route + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-addlarge_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-addlarge_ip.sh new file mode 100755 index 0000000..cd8b9d7 --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-addlarge_ip.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-033752134 +# @用例名称: ltp.net_stress.interface.if4-route-addlarge_ip +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if4-route-addlarge_ip + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if4-route-addlarge_ip + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-addlarge_route.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-addlarge_route.sh new file mode 100755 index 0000000..23ed106 --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-addlarge_route.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-042493564 +# @用例名称: ltp.net_stress.interface.if4-route-addlarge_route +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if4-route-addlarge_route + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if4-route-addlarge_route + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-updown_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-updown_ifconfig.sh new file mode 100755 index 0000000..0ed9db7 --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-updown_ifconfig.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-972584307 +# @用例名称: ltp.net_stress.interface.if4-updown_ifconfig +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if4-updown_ifconfig + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if4-updown_ifconfig + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-updown_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-updown_ip.sh new file mode 100755 index 0000000..9c10194 --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-updown_ip.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213003-963954497 +# @用例名称: ltp.net_stress.interface.if4-updown_ip +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if4-updown_ip + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if4-updown_ip + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-adddel_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-adddel_ifconfig.sh new file mode 100755 index 0000000..7c80557 --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-adddel_ifconfig.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-098383112 +# @用例名称: ltp.net_stress.interface.if6-addr-adddel_ifconfig +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if6-addr-adddel_ifconfig + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if6-addr-adddel_ifconfig + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-adddel_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-adddel_ip.sh new file mode 100755 index 0000000..df5cd4a --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-adddel_ip.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-089249838 +# @用例名称: ltp.net_stress.interface.if6-addr-adddel_ip +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if6-addr-adddel_ip + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if6-addr-adddel_ip + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-addlarge_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-addlarge_ifconfig.sh new file mode 100755 index 0000000..b3099ee --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-addlarge_ifconfig.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-115620030 +# @用例名称: ltp.net_stress.interface.if6-addr-addlarge_ifconfig +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if6-addr-addlarge_ifconfig + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if6-addr-addlarge_ifconfig + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-addlarge_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-addlarge_ip.sh new file mode 100755 index 0000000..cc24b17 --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-addlarge_ip.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-107000809 +# @用例名称: ltp.net_stress.interface.if6-addr-addlarge_ip +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if6-addr-addlarge_ip + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if6-addr-addlarge_ip + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-mtu-change_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-mtu-change_ifconfig.sh new file mode 100755 index 0000000..9b254b7 --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-mtu-change_ifconfig.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-169540172 +# @用例名称: ltp.net_stress.interface.if6-mtu-change_ifconfig +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if6-mtu-change_ifconfig + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if6-mtu-change_ifconfig + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-mtu-change_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-mtu-change_ip.sh new file mode 100755 index 0000000..5bdd88b --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-mtu-change_ip.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-160610861 +# @用例名称: ltp.net_stress.interface.if6-mtu-change_ip +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if6-mtu-change_ip + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if6-mtu-change_ip + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-adddel_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-adddel_ip.sh new file mode 100755 index 0000000..900f581 --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-adddel_ip.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-124616077 +# @用例名称: ltp.net_stress.interface.if6-route-adddel_ip +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if6-route-adddel_ip + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if6-route-adddel_ip + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-adddel_route.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-adddel_route.sh new file mode 100755 index 0000000..65083f2 --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-adddel_route.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-133228524 +# @用例名称: ltp.net_stress.interface.if6-route-adddel_route +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if6-route-adddel_route + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if6-route-adddel_route + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-addlarge_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-addlarge_ip.sh new file mode 100755 index 0000000..1005a3e --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-addlarge_ip.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-142765403 +# @用例名称: ltp.net_stress.interface.if6-route-addlarge_ip +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if6-route-addlarge_ip + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if6-route-addlarge_ip + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-addlarge_route.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-addlarge_route.sh new file mode 100755 index 0000000..4ec411a --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-addlarge_route.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-151998332 +# @用例名称: ltp.net_stress.interface.if6-route-addlarge_route +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if6-route-addlarge_route + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if6-route-addlarge_route + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-updown_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-updown_ifconfig.sh new file mode 100755 index 0000000..79e821c --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-updown_ifconfig.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-080429040 +# @用例名称: ltp.net_stress.interface.if6-updown_ifconfig +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if6-updown_ifconfig + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if6-updown_ifconfig + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-updown_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-updown_ip.sh new file mode 100755 index 0000000..be5517a --- /dev/null +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-updown_ip.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-071707778 +# @用例名称: ltp.net_stress.interface.if6-updown_ip +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.interface.if6-updown_ip + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.interface if6-updown_ip + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec01.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec01.sh new file mode 100755 index 0000000..0fb211a --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-180005067 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec02.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec02.sh new file mode 100755 index 0000000..5e39930 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-188564085 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec03.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec03.sh new file mode 100755 index 0000000..b811f8a --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-197311155 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec04.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec04.sh new file mode 100755 index 0000000..17d5db4 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-206359630 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec05.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec05.sh new file mode 100755 index 0000000..70a080b --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-214983760 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec06.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec06.sh new file mode 100755 index 0000000..278e358 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-223635602 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec07.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec07.sh new file mode 100755 index 0000000..09632d7 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-232389465 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec08.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec08.sh new file mode 100755 index 0000000..3b69145 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-240990141 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec09.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec09.sh new file mode 100755 index 0000000..3ba04d7 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-249600535 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec10.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec10.sh new file mode 100755 index 0000000..6c37f4a --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-258322869 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec11.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec11.sh new file mode 100755 index 0000000..d4b8906 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-267091189 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec12.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec12.sh new file mode 100755 index 0000000..5cbd15f --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-275874788 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec13.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec13.sh new file mode 100755 index 0000000..a02a65d --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-284787227 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec14.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec14.sh new file mode 100755 index 0000000..79e0c5f --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-293207236 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec15.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec15.sh new file mode 100755 index 0000000..3191f24 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-305338900 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec16.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec16.sh new file mode 100755 index 0000000..cd28379 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-313828358 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec17.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec17.sh new file mode 100755 index 0000000..61bb60d --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-322580919 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec18.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec18.sh new file mode 100755 index 0000000..42d4f28 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-331113838 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec18 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec18 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec19.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec19.sh new file mode 100755 index 0000000..b66db5d --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-339755261 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec19 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec19 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec20.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec20.sh new file mode 100755 index 0000000..1ffdd80 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec20.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-348378789 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec20 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec20 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec21.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec21.sh new file mode 100755 index 0000000..97230c8 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-357086345 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec21 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec21 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec22.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec22.sh new file mode 100755 index 0000000..c72fa71 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec22.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-365929516 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec22 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec22 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec23.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec23.sh new file mode 100755 index 0000000..acb013a --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec23.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-374953685 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec23 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec23 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec23 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec24.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec24.sh new file mode 100755 index 0000000..eab5c50 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec24.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-383550694 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec24 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec24 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec24 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec25.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec25.sh new file mode 100755 index 0000000..719747e --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec25.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-392139358 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec25 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec25 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec25 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec26.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec26.sh new file mode 100755 index 0000000..ed3d031 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec26.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-400703245 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec26 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec26 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec26 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec27.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec27.sh new file mode 100755 index 0000000..dbee05c --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec27.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-409432472 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec27 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec27 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec27 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec28.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec28.sh new file mode 100755 index 0000000..b3b7585 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec28.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-418053647 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec28 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec28 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec28 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec29.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec29.sh new file mode 100755 index 0000000..8405aa3 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec29.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-426784797 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec29 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec29 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec29 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec30.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec30.sh new file mode 100755 index 0000000..a2ffbbc --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec30.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-435346219 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec30 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec30 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec30 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec31.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec31.sh new file mode 100755 index 0000000..6a11c4f --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec31.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-443941265 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec31 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec31 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec31 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec32.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec32.sh new file mode 100755 index 0000000..ef29fca --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec32.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-452801638 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec32 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec32 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec32 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec33.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec33.sh new file mode 100755 index 0000000..93f5def --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec33.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-461353863 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec33 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec33 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec33 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec34.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec34.sh new file mode 100755 index 0000000..f48a900 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec34.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-469857928 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec34 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec34 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec34 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec35.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec35.sh new file mode 100755 index 0000000..8e0a58d --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec35.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-478453626 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec35 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec35 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec35 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec36.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec36.sh new file mode 100755 index 0000000..6c9c244 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec36.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-487010660 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec36 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec36 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec36 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti01.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti01.sh new file mode 100755 index 0000000..b7343ee --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-829411575 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec_vti01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti02.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti02.sh new file mode 100755 index 0000000..ade3932 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-838336168 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec_vti02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti04.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti04.sh new file mode 100755 index 0000000..fda59ee --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-848036973 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec_vti04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti05.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti05.sh new file mode 100755 index 0000000..3a1c63c --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-856707199 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec_vti05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti06.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti06.sh new file mode 100755 index 0000000..40f0127 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-865461453 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec_vti06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti07.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti07.sh new file mode 100755 index 0000000..5015541 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-874109338 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec_vti07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti08.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti08.sh new file mode 100755 index 0000000..9ab20ee --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-882873240 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec_vti08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti09.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti09.sh new file mode 100755 index 0000000..ae64000 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-891591095 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec_vti09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti10.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti10.sh new file mode 100755 index 0000000..c7a4510 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-900235753 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec_vti10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti11.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti11.sh new file mode 100755 index 0000000..e34b3f3 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-908979748 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec_vti11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti12.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti12.sh new file mode 100755 index 0000000..b85a516 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-917569013 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec_vti12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti13.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti13.sh new file mode 100755 index 0000000..930475b --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-926375775 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec_vti13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti14.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti14.sh new file mode 100755 index 0000000..7ba6cc5 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-936065319 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec_vti14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti15.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti15.sh new file mode 100755 index 0000000..cc04333 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-944815625 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec_vti15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti16.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti16.sh new file mode 100755 index 0000000..dfa16f2 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-953727834 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec_vti16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti17.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti17.sh new file mode 100755 index 0000000..e1c23de --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-962500983 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp4_ipsec_vti17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec01.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec01.sh new file mode 100755 index 0000000..9ca5103 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-497429709 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec02.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec02.sh new file mode 100755 index 0000000..5a4ce8b --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-505989780 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec03.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec03.sh new file mode 100755 index 0000000..f590276 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-514580367 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec04.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec04.sh new file mode 100755 index 0000000..ecc991c --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-523098608 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec05.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec05.sh new file mode 100755 index 0000000..d9abd47 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-531815633 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec06.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec06.sh new file mode 100755 index 0000000..abf64c7 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-541537177 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec07.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec07.sh new file mode 100755 index 0000000..1cb0c77 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-550115130 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec08.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec08.sh new file mode 100755 index 0000000..ee2a643 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-558906183 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec09.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec09.sh new file mode 100755 index 0000000..c03e0f9 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-567781153 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec10.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec10.sh new file mode 100755 index 0000000..f77e4ec --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-576573738 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec11.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec11.sh new file mode 100755 index 0000000..12e2313 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-585204781 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec12.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec12.sh new file mode 100755 index 0000000..75f1294 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-598612544 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec13.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec13.sh new file mode 100755 index 0000000..9aef8d1 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-607179126 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec14.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec14.sh new file mode 100755 index 0000000..477d4cd --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-615852298 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec15.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec15.sh new file mode 100755 index 0000000..3f9e994 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-624451031 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec16.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec16.sh new file mode 100755 index 0000000..3b63fea --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-633102903 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec17.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec17.sh new file mode 100755 index 0000000..1e83198 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-641726182 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec18.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec18.sh new file mode 100755 index 0000000..8e67672 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-650349169 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec18 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec18 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec19.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec19.sh new file mode 100755 index 0000000..637a2cc --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-658921573 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec19 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec19 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec20.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec20.sh new file mode 100755 index 0000000..b7a9537 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec20.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-667472696 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec20 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec20 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec21.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec21.sh new file mode 100755 index 0000000..98e392e --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-676153693 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec21 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec21 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec22.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec22.sh new file mode 100755 index 0000000..2547b8b --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec22.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-685685351 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec22 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec22 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec23.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec23.sh new file mode 100755 index 0000000..9d4d180 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec23.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-695580810 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec23 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec23 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec23 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec24.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec24.sh new file mode 100755 index 0000000..53117b2 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec24.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-706924230 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec24 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec24 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec24 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec25.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec25.sh new file mode 100755 index 0000000..e47b91a --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec25.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-717501675 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec25 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec25 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec25 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec26.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec26.sh new file mode 100755 index 0000000..c4c3e86 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec26.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-727431600 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec26 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec26 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec26 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec27.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec27.sh new file mode 100755 index 0000000..afacb22 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec27.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-737577357 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec27 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec27 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec27 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec28.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec28.sh new file mode 100755 index 0000000..d5b075b --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec28.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-747755196 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec28 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec28 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec28 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec29.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec29.sh new file mode 100755 index 0000000..666ff51 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec29.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-756505301 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec29 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec29 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec29 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec30.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec30.sh new file mode 100755 index 0000000..39400e4 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec30.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-766623587 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec30 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec30 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec30 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec31.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec31.sh new file mode 100755 index 0000000..f75b155 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec31.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-775473510 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec31 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec31 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec31 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec32.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec32.sh new file mode 100755 index 0000000..4ee7c42 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec32.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-784314517 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec32 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec32 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec32 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec33.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec33.sh new file mode 100755 index 0000000..a4f9670 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec33.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-793038874 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec33 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec33 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec33 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec34.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec34.sh new file mode 100755 index 0000000..0fb838a --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec34.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-801753814 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec34 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec34 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec34 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec35.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec35.sh new file mode 100755 index 0000000..0ce30eb --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec35.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-810332810 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec35 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec35 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec35 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec36.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec36.sh new file mode 100755 index 0000000..72649e0 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec36.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-818929488 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec36 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec36 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec36 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti01.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti01.sh new file mode 100755 index 0000000..d544bbd --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-973505489 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec_vti01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti02.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti02.sh new file mode 100755 index 0000000..a8791a8 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-982388272 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec_vti02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti04.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti04.sh new file mode 100755 index 0000000..95792cd --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213004-992511018 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec_vti04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti05.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti05.sh new file mode 100755 index 0000000..109a06b --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-001221399 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec_vti05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti06.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti06.sh new file mode 100755 index 0000000..521634c --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-010117948 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec_vti06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti07.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti07.sh new file mode 100755 index 0000000..1b372f8 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-019443532 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec_vti07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti08.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti08.sh new file mode 100755 index 0000000..793e83a --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-028324894 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec_vti08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti09.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti09.sh new file mode 100755 index 0000000..d5ffd22 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-043811657 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec_vti09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti10.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti10.sh new file mode 100755 index 0000000..7194188 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-056806086 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec_vti10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti11.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti11.sh new file mode 100755 index 0000000..a04ea91 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-066393920 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec_vti11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti12.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti12.sh new file mode 100755 index 0000000..5913aed --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-074998112 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec_vti12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti13.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti13.sh new file mode 100755 index 0000000..f62ee0a --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-083859216 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec_vti13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti14.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti14.sh new file mode 100755 index 0000000..bab075a --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-092615223 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec_vti14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti15.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti15.sh new file mode 100755 index 0000000..c18b4ac --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-101329572 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec_vti15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti16.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti16.sh new file mode 100755 index 0000000..adc5d04 --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-109976735 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec_vti16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti17.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti17.sh new file mode 100755 index 0000000..badf15a --- /dev/null +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-118660547 +# @用例名称: ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_dccp dccp6_ipsec_vti17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic01.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic01.sh new file mode 100755 index 0000000..fb8d13a --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-160762341 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic02.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic02.sh new file mode 100755 index 0000000..a45063d --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-169591745 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic03.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic03.sh new file mode 100755 index 0000000..4a47e2b --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-178423033 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic04.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic04.sh new file mode 100755 index 0000000..675f95f --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-187049167 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic05.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic05.sh new file mode 100755 index 0000000..47c28e0 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-195719042 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic06.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic06.sh new file mode 100755 index 0000000..258f5cc --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-204400500 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic07.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic07.sh new file mode 100755 index 0000000..e917f39 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-212963726 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic08.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic08.sh new file mode 100755 index 0000000..293981e --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-221562619 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic09.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic09.sh new file mode 100755 index 0000000..0c48058 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-230196417 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic10.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic10.sh new file mode 100755 index 0000000..857c6c6 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-238866924 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic11.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic11.sh new file mode 100755 index 0000000..92785f6 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-247451460 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic12.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic12.sh new file mode 100755 index 0000000..ffcd7d4 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-256113652 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic13.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic13.sh new file mode 100755 index 0000000..9863819 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-264730548 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic14.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic14.sh new file mode 100755 index 0000000..36781f8 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-273336955 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic15.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic15.sh new file mode 100755 index 0000000..78baeae --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-281966866 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic16.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic16.sh new file mode 100755 index 0000000..e7713c2 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-290517368 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic17.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic17.sh new file mode 100755 index 0000000..1ed06a8 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-299404611 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic18.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic18.sh new file mode 100755 index 0000000..c33e7a1 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-314928343 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic18 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic18 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic19.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic19.sh new file mode 100755 index 0000000..8fd9705 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-325433253 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic19 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic19 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic20.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic20.sh new file mode 100755 index 0000000..cab34d3 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic20.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-337752720 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic20 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic20 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic21.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic21.sh new file mode 100755 index 0000000..8a16583 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-346367983 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic21 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic21 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic22.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic22.sh new file mode 100755 index 0000000..41e9f71 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic22.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-361222994 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic22 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic22 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic23.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic23.sh new file mode 100755 index 0000000..7820fcb --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic23.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-370652051 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic23 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic23 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic23 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic24.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic24.sh new file mode 100755 index 0000000..8c85215 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic24.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-379419740 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic24 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic24 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic24 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic25.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic25.sh new file mode 100755 index 0000000..95ca840 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic25.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-388433920 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic25 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic25 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic25 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic26.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic26.sh new file mode 100755 index 0000000..3a4bb6b --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic26.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-397050335 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-basic26 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-basic26 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-basic26 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti01.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti01.sh new file mode 100755 index 0000000..67aa8eb --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-647262930 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti02.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti02.sh new file mode 100755 index 0000000..f24c37d --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-656538489 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti03.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti03.sh new file mode 100755 index 0000000..0edccaf --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-665188177 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti04.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti04.sh new file mode 100755 index 0000000..e7e026c --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-673827997 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti05.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti05.sh new file mode 100755 index 0000000..cce044e --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-682439383 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti06.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti06.sh new file mode 100755 index 0000000..6b5d64c --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-691958258 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti07.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti07.sh new file mode 100755 index 0000000..ee70d0d --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-700653671 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti08.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti08.sh new file mode 100755 index 0000000..b24ac73 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-709230893 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti09.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti09.sh new file mode 100755 index 0000000..77510bf --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-717758433 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti10.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti10.sh new file mode 100755 index 0000000..547d951 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-726225539 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti11.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti11.sh new file mode 100755 index 0000000..5e866da --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-734874666 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti12.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti12.sh new file mode 100755 index 0000000..2fcd7a6 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-743450325 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti13.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti13.sh new file mode 100755 index 0000000..0b1b3ae --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-752660092 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti14.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti14.sh new file mode 100755 index 0000000..fc9dcd6 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-761421158 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti15.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti15.sh new file mode 100755 index 0000000..43a3b65 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-770136629 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti16.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti16.sh new file mode 100755 index 0000000..fb45541 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-778825130 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti17.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti17.sh new file mode 100755 index 0000000..b3685df --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-787453578 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp4-uni-vti17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp4-uni-vti17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp4-uni-vti17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic01.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic01.sh new file mode 100755 index 0000000..6ef223b --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-410483295 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic02.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic02.sh new file mode 100755 index 0000000..edd73fd --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-419206491 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic03.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic03.sh new file mode 100755 index 0000000..aea08b2 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-427937851 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic04.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic04.sh new file mode 100755 index 0000000..07140b3 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-438855444 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic05.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic05.sh new file mode 100755 index 0000000..a7990f3 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-447505202 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic06.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic06.sh new file mode 100755 index 0000000..365d2ea --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-456242804 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic07.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic07.sh new file mode 100755 index 0000000..4bcc616 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-465024159 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic08.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic08.sh new file mode 100755 index 0000000..26328b2 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-473656725 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic09.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic09.sh new file mode 100755 index 0000000..7942c6a --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-482154910 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic10.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic10.sh new file mode 100755 index 0000000..3a9fe45 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-490654928 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic11.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic11.sh new file mode 100755 index 0000000..f94c610 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-499314313 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic12.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic12.sh new file mode 100755 index 0000000..6d3940f --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-507949724 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic13.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic13.sh new file mode 100755 index 0000000..0e8e931 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-516484207 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic14.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic14.sh new file mode 100755 index 0000000..dfc9c05 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-525066178 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic15.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic15.sh new file mode 100755 index 0000000..37fb97b --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-533745712 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic16.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic16.sh new file mode 100755 index 0000000..df08b7f --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-542462245 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic17.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic17.sh new file mode 100755 index 0000000..0df03a9 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-551012146 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic18.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic18.sh new file mode 100755 index 0000000..dc3a91d --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-559647868 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic18 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic18 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic19.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic19.sh new file mode 100755 index 0000000..dccb490 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-568404476 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic19 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic19 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic20.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic20.sh new file mode 100755 index 0000000..d84c21d --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic20.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-577308209 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic20 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic20 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic21.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic21.sh new file mode 100755 index 0000000..ced0847 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-585933832 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic21 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic21 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic22.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic22.sh new file mode 100755 index 0000000..c53bac8 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic22.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-594560718 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic22 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic22 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic23.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic23.sh new file mode 100755 index 0000000..bcfc8f0 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic23.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-603087245 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic23 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic23 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic23 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic24.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic24.sh new file mode 100755 index 0000000..eae35c9 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic24.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-611816432 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic24 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic24 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic24 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic25.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic25.sh new file mode 100755 index 0000000..cf94a4f --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic25.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-620618676 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic25 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic25 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic25 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic26.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic26.sh new file mode 100755 index 0000000..f54d95e --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic26.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-633428970 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-basic26 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-basic26 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-basic26 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti01.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti01.sh new file mode 100755 index 0000000..7d347b7 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-798018650 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti02.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti02.sh new file mode 100755 index 0000000..e54a2e9 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-806487270 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti03.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti03.sh new file mode 100755 index 0000000..7918649 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-815198503 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti04.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti04.sh new file mode 100755 index 0000000..a18f487 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-824194228 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti05.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti05.sh new file mode 100755 index 0000000..9004da1 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-832834298 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti06.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti06.sh new file mode 100755 index 0000000..af97e72 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-841500507 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti07.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti07.sh new file mode 100755 index 0000000..f04c572 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-850085073 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti08.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti08.sh new file mode 100755 index 0000000..7882e44 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-859793663 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti09.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti09.sh new file mode 100755 index 0000000..1f7c118 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-868803564 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti10.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti10.sh new file mode 100755 index 0000000..71aae41 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-877450227 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti11.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti11.sh new file mode 100755 index 0000000..2da8cfa --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-886108822 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti12.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti12.sh new file mode 100755 index 0000000..f0b73d9 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-894757368 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti13.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti13.sh new file mode 100755 index 0000000..acc530d --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-903349838 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti14.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti14.sh new file mode 100755 index 0000000..5fa0032 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-911996341 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti15.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti15.sh new file mode 100755 index 0000000..1c359cf --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-920471442 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti16.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti16.sh new file mode 100755 index 0000000..a4841e7 --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-929264518 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti17.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti17.sh new file mode 100755 index 0000000..d48ac5c --- /dev/null +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-937867659 +# @用例名称: ltp.net_stress.ipsec_icmp.icmp6-uni-vti17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_icmp.icmp6-uni-vti17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_icmp icmp6-uni-vti17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec01.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec01.sh new file mode 100755 index 0000000..ffc8bdd --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-950109931 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec02.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec02.sh new file mode 100755 index 0000000..db0b8e4 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-958723030 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec03.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec03.sh new file mode 100755 index 0000000..d9aac72 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-967466804 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec04.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec04.sh new file mode 100755 index 0000000..4b5c1f1 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-976162267 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec05.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec05.sh new file mode 100755 index 0000000..40fb419 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-984793301 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec06.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec06.sh new file mode 100755 index 0000000..0b7404d --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213005-993475459 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec06 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec07.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec07.sh new file mode 100755 index 0000000..1805cff --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-002123775 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec08.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec08.sh new file mode 100755 index 0000000..209f401 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-010696649 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec09.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec09.sh new file mode 100755 index 0000000..a90a38d --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-019404245 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec10.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec10.sh new file mode 100755 index 0000000..37f2a75 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-027981718 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec11.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec11.sh new file mode 100755 index 0000000..6f9ab0c --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-036583186 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec12.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec12.sh new file mode 100755 index 0000000..4a99c0e --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-045922654 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec13.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec13.sh new file mode 100755 index 0000000..37fc3ce --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-064407870 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec14.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec14.sh new file mode 100755 index 0000000..46f02fd --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-073174898 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec15.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec15.sh new file mode 100755 index 0000000..81bd326 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-081776675 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec16.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec16.sh new file mode 100755 index 0000000..a846229 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-090408300 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec17.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec17.sh new file mode 100755 index 0000000..dc1e6cf --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-099108342 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec18.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec18.sh new file mode 100755 index 0000000..23e519d --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-110819519 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec18 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec18 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec19.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec19.sh new file mode 100755 index 0000000..2cb1cc4 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-119380411 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec19 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec19 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec20.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec20.sh new file mode 100755 index 0000000..1895b62 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec20.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-128156796 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec20 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec20 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec21.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec21.sh new file mode 100755 index 0000000..4ff0742 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-136824678 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec21 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec21 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec22.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec22.sh new file mode 100755 index 0000000..8179d76 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec22.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-145525011 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec22 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec22 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec23.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec23.sh new file mode 100755 index 0000000..56f6a46 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec23.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-154142398 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec23 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec23 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec23 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec24.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec24.sh new file mode 100755 index 0000000..775a365 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec24.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-162738466 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec24 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec24 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec24 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec25.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec25.sh new file mode 100755 index 0000000..3705cc9 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec25.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-171316630 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec25 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec25 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec25 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec26.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec26.sh new file mode 100755 index 0000000..c0b1bc4 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec26.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-179912167 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec26 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec26 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec26 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec27.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec27.sh new file mode 100755 index 0000000..0844f5c --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec27.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-188620595 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec27 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec27 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec27 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec28.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec28.sh new file mode 100755 index 0000000..ee59248 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec28.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-197390307 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec28 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec28 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec28 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec29.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec29.sh new file mode 100755 index 0000000..8165ec5 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec29.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-206333083 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec29 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec29 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec29 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec30.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec30.sh new file mode 100755 index 0000000..dedeffc --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec30.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-215174491 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec30 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec30 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec30 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec31.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec31.sh new file mode 100755 index 0000000..d92e1a1 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec31.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-223793571 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec31 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec31 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec31 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec32.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec32.sh new file mode 100755 index 0000000..9243e7e --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec32.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-232897499 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec32 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec32 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec32 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec33.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec33.sh new file mode 100755 index 0000000..88a026e --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec33.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-245951059 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec33 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec33 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec33 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec34.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec34.sh new file mode 100755 index 0000000..2c4ae97 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec34.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-254551966 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec34 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec34 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec34 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec35.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec35.sh new file mode 100755 index 0000000..b933724 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec35.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-263823678 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec35 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec35 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec35 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec36.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec36.sh new file mode 100755 index 0000000..c1c019d --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec36.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-272599362 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec36 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec36 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec36 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti01.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti01.sh new file mode 100755 index 0000000..fe54935 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-608551569 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec_vti01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti02.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti02.sh new file mode 100755 index 0000000..eab3d5c --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-617070352 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec_vti02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti04.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti04.sh new file mode 100755 index 0000000..add4b0a --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-626788569 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec_vti04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti05.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti05.sh new file mode 100755 index 0000000..142ccd3 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-635478773 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec_vti05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti06.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti06.sh new file mode 100755 index 0000000..ab2dca4 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-644119113 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec_vti06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti07.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti07.sh new file mode 100755 index 0000000..60d9e5b --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-654262567 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec_vti07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti08.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti08.sh new file mode 100755 index 0000000..8582c08 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-663112870 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec_vti08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti09.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti09.sh new file mode 100755 index 0000000..7ec61af --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-673522061 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec_vti09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti10.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti10.sh new file mode 100755 index 0000000..4d54d2d --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-682984540 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec_vti10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti11.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti11.sh new file mode 100755 index 0000000..c720426 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-691551142 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec_vti11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti12.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti12.sh new file mode 100755 index 0000000..2926efc --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-701926821 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec_vti12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti13.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti13.sh new file mode 100755 index 0000000..1afd713 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-712003049 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec_vti13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti14.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti14.sh new file mode 100755 index 0000000..17592e6 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-722378075 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec_vti14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti15.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti15.sh new file mode 100755 index 0000000..9cd38a3 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-731134052 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec_vti15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti16.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti16.sh new file mode 100755 index 0000000..111aa96 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-739865893 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec_vti16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti17.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti17.sh new file mode 100755 index 0000000..5def6cf --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-748488121 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp4_ipsec_vti17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec01.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec01.sh new file mode 100755 index 0000000..bcfa4c6 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-283362004 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec02.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec02.sh new file mode 100755 index 0000000..79508a4 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-292013324 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec03.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec03.sh new file mode 100755 index 0000000..5d158b6 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-300550702 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec04.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec04.sh new file mode 100755 index 0000000..1829cfe --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-314768762 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec05.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec05.sh new file mode 100755 index 0000000..e307966 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-323348589 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec06.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec06.sh new file mode 100755 index 0000000..1a57ad4 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-331884053 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec06 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec07.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec07.sh new file mode 100755 index 0000000..2c59c42 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-340523963 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec08.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec08.sh new file mode 100755 index 0000000..de7cfb4 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-349113848 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec09.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec09.sh new file mode 100755 index 0000000..80b4052 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-358020738 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec10.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec10.sh new file mode 100755 index 0000000..810dfbf --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-366897150 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec11.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec11.sh new file mode 100755 index 0000000..b7021b9 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-375506262 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec12.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec12.sh new file mode 100755 index 0000000..81c8d8a --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-384176669 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec13.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec13.sh new file mode 100755 index 0000000..d1eb8c4 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-392762528 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec14.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec14.sh new file mode 100755 index 0000000..d57e8e6 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-401435699 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec15.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec15.sh new file mode 100755 index 0000000..7f03370 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-412874918 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec16.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec16.sh new file mode 100755 index 0000000..edeeab0 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-421497796 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec17.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec17.sh new file mode 100755 index 0000000..48d3482 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-430070870 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec18.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec18.sh new file mode 100755 index 0000000..e99e0da --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-438583692 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec18 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec18 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec19.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec19.sh new file mode 100755 index 0000000..3b09908 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-447187575 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec19 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec19 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec20.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec20.sh new file mode 100755 index 0000000..8ef631d --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec20.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-455854715 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec20 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec20 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec21.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec21.sh new file mode 100755 index 0000000..43c21b6 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-464545009 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec21 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec21 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec22.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec22.sh new file mode 100755 index 0000000..6ef4e1f --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec22.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-473344838 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec22 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec22 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec23.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec23.sh new file mode 100755 index 0000000..aaaaf6d --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec23.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-482038789 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec23 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec23 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec23 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec24.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec24.sh new file mode 100755 index 0000000..b077c85 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec24.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-490715878 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec24 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec24 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec24 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec25.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec25.sh new file mode 100755 index 0000000..211fcd0 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec25.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-499268163 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec25 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec25 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec25 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec26.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec26.sh new file mode 100755 index 0000000..f13acf8 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec26.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-508021596 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec26 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec26 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec26 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec27.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec27.sh new file mode 100755 index 0000000..056be9f --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec27.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-516743509 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec27 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec27 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec27 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec28.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec28.sh new file mode 100755 index 0000000..66b8a45 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec28.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-525408847 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec28 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec28 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec28 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec29.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec29.sh new file mode 100755 index 0000000..eb97c49 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec29.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-534134116 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec29 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec29 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec29 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec30.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec30.sh new file mode 100755 index 0000000..4b93f7b --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec30.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-542850789 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec30 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec30 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec30 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec31.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec31.sh new file mode 100755 index 0000000..4cb746f --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec31.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-551636662 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec31 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec31 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec31 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec32.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec32.sh new file mode 100755 index 0000000..cba3fb1 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec32.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-560370688 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec32 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec32 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec32 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec33.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec33.sh new file mode 100755 index 0000000..e17247e --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec33.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-568916832 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec33 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec33 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec33 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec34.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec34.sh new file mode 100755 index 0000000..f074a3f --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec34.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-578100820 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec34 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec34 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec34 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec35.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec35.sh new file mode 100755 index 0000000..09003fa --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec35.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-589329504 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec35 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec35 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec35 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec36.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec36.sh new file mode 100755 index 0000000..c8d5de4 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec36.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-598061005 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec36 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec36 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec36 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti01.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti01.sh new file mode 100755 index 0000000..5b135e2 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-759051460 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec_vti01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti02.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti02.sh new file mode 100755 index 0000000..c7327bc --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-768200983 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec_vti02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti04.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti04.sh new file mode 100755 index 0000000..b0d7b89 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-777932486 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec_vti04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti05.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti05.sh new file mode 100755 index 0000000..14cdfa5 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-788651847 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec_vti05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti06.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti06.sh new file mode 100755 index 0000000..a44fe5e --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-797139352 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec_vti06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti07.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti07.sh new file mode 100755 index 0000000..1bfa1b6 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-805800160 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec_vti07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti08.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti08.sh new file mode 100755 index 0000000..5b990aa --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-814517184 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec_vti08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti09.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti09.sh new file mode 100755 index 0000000..500b54f --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-824179648 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec_vti09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti10.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti10.sh new file mode 100755 index 0000000..786da50 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-833311387 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec_vti10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti11.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti11.sh new file mode 100755 index 0000000..7a69224 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-841980062 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec_vti11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti12.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti12.sh new file mode 100755 index 0000000..62f2812 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-850668151 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec_vti12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti13.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti13.sh new file mode 100755 index 0000000..b73b38a --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-859318199 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec_vti13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti14.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti14.sh new file mode 100755 index 0000000..434279f --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-868061863 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec_vti14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti15.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti15.sh new file mode 100755 index 0000000..22d89a8 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-881075859 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec_vti15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti16.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti16.sh new file mode 100755 index 0000000..84d928d --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-889713364 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec_vti16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti17.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti17.sh new file mode 100755 index 0000000..1a3a111 --- /dev/null +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-898347313 +# @用例名称: ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_sctp sctp6_ipsec_vti17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec01.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec01.sh new file mode 100755 index 0000000..fa1a7f8 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-908705067 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec02.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec02.sh new file mode 100755 index 0000000..47adb64 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-917192763 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec03.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec03.sh new file mode 100755 index 0000000..fa72fe3 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-925838142 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec04.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec04.sh new file mode 100755 index 0000000..b92f366 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-934362055 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec05.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec05.sh new file mode 100755 index 0000000..0a4a66c --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-942945568 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec06.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec06.sh new file mode 100755 index 0000000..7ef97b5 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-951752461 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec07.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec07.sh new file mode 100755 index 0000000..3144b5a --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-960589530 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec08.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec08.sh new file mode 100755 index 0000000..22c87c0 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-969381975 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec09.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec09.sh new file mode 100755 index 0000000..a192e01 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-978932489 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec10.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec10.sh new file mode 100755 index 0000000..4992307 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-987508158 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec11.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec11.sh new file mode 100755 index 0000000..be8d18e --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213006-996191018 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec12.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec12.sh new file mode 100755 index 0000000..1bf9750 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-004821059 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec13.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec13.sh new file mode 100755 index 0000000..96fdce3 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-015122318 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec14.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec14.sh new file mode 100755 index 0000000..ef2671d --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-023791873 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec15.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec15.sh new file mode 100755 index 0000000..169726d --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-032454305 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec16.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec16.sh new file mode 100755 index 0000000..f889c1f --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-041041816 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec17.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec17.sh new file mode 100755 index 0000000..6878f17 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-049650829 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec18.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec18.sh new file mode 100755 index 0000000..92f09ed --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-059309915 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec18 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec18 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec19.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec19.sh new file mode 100755 index 0000000..b81610b --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-068003857 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec19 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec19 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec20.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec20.sh new file mode 100755 index 0000000..bd0744a --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec20.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-076884366 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec20 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec20 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec21.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec21.sh new file mode 100755 index 0000000..a562cac --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-085631206 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec21 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec21 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec22.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec22.sh new file mode 100755 index 0000000..77e944c --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec22.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-094410456 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec22 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec22 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec23.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec23.sh new file mode 100755 index 0000000..41abbca --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec23.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-102965858 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec23 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec23 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec23 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec24.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec24.sh new file mode 100755 index 0000000..4225e31 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec24.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-115156112 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec24 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec24 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec24 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec25.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec25.sh new file mode 100755 index 0000000..1cf5d34 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec25.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-123957914 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec25 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec25 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec25 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec26.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec26.sh new file mode 100755 index 0000000..c15cef5 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec26.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-132834918 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec26 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec26 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec26 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec27.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec27.sh new file mode 100755 index 0000000..0c73852 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec27.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-141546903 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec27 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec27 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec27 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec28.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec28.sh new file mode 100755 index 0000000..c12e9ef --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec28.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-150196480 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec28 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec28 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec28 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec29.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec29.sh new file mode 100755 index 0000000..27df439 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec29.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-158964479 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec29 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec29 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec29 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec30.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec30.sh new file mode 100755 index 0000000..8bce8c4 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec30.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-168428733 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec30 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec30 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec30 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec31.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec31.sh new file mode 100755 index 0000000..b9eed0b --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec31.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-177366379 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec31 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec31 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec31 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec32.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec32.sh new file mode 100755 index 0000000..85cbab4 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec32.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-185979258 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec32 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec32 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec32 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec33.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec33.sh new file mode 100755 index 0000000..3e723d2 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec33.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-194738982 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec33 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec33 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec33 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec34.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec34.sh new file mode 100755 index 0000000..2641aab --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec34.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-203629200 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec34 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec34 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec34 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec35.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec35.sh new file mode 100755 index 0000000..7a4b6b2 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec35.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-212438237 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec35 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec35 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec35 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec36.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec36.sh new file mode 100755 index 0000000..42b5652 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec36.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-221056956 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec36 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec36 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec36 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti01.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti01.sh new file mode 100755 index 0000000..9abf9a0 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-563949552 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec_vti01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti02.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti02.sh new file mode 100755 index 0000000..bd45c81 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-572653672 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec_vti02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti04.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti04.sh new file mode 100755 index 0000000..59c139b --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-582561495 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec_vti04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti05.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti05.sh new file mode 100755 index 0000000..0d78e72 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-591247220 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec_vti05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti06.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti06.sh new file mode 100755 index 0000000..26b9514 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-599868394 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec_vti06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti07.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti07.sh new file mode 100755 index 0000000..81f6d47 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-608381176 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec_vti07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti08.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti08.sh new file mode 100755 index 0000000..96ef084 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-617029772 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec_vti08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti09.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti09.sh new file mode 100755 index 0000000..9468757 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-625663229 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec_vti09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti10.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti10.sh new file mode 100755 index 0000000..c754ac8 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-634346450 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec_vti10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti11.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti11.sh new file mode 100755 index 0000000..41ca793 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-643065398 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec_vti11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti12.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti12.sh new file mode 100755 index 0000000..786cb1f --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-651543535 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec_vti12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti13.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti13.sh new file mode 100755 index 0000000..bb76e18 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-660333485 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec_vti13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti14.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti14.sh new file mode 100755 index 0000000..9a6fd91 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-668961413 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec_vti14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti15.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti15.sh new file mode 100755 index 0000000..eb5c765 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-677617963 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec_vti15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti16.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti16.sh new file mode 100755 index 0000000..966844c --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-686217477 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec_vti16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti17.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti17.sh new file mode 100755 index 0000000..aa55136 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-694845314 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp4_ipsec_vti17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec01.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec01.sh new file mode 100755 index 0000000..ecee370 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-231622800 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec02.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec02.sh new file mode 100755 index 0000000..e001acf --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-240339724 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec03.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec03.sh new file mode 100755 index 0000000..8ba3cf6 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-249435277 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec04.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec04.sh new file mode 100755 index 0000000..482b297 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-258214397 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec05.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec05.sh new file mode 100755 index 0000000..a3c50ec --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-266862061 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec06.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec06.sh new file mode 100755 index 0000000..26cf465 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-279514280 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec07.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec07.sh new file mode 100755 index 0000000..c5ea75b --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-287997506 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec08.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec08.sh new file mode 100755 index 0000000..a258c27 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-296530105 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec09.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec09.sh new file mode 100755 index 0000000..05d408d --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-305030804 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec10.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec10.sh new file mode 100755 index 0000000..cb8ede3 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-314133800 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec11.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec11.sh new file mode 100755 index 0000000..ce8a6ba --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-322583745 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec12.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec12.sh new file mode 100755 index 0000000..da6c72d --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-331245054 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec13.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec13.sh new file mode 100755 index 0000000..6acbb0f --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-342315613 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec14.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec14.sh new file mode 100755 index 0000000..63340e0 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-353083735 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec15.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec15.sh new file mode 100755 index 0000000..df37b1c --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-365505874 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec16.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec16.sh new file mode 100755 index 0000000..b0d9afb --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-375799027 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec17.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec17.sh new file mode 100755 index 0000000..13187c1 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-384462420 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec18.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec18.sh new file mode 100755 index 0000000..2dbb6f4 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-393099956 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec18 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec18 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec19.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec19.sh new file mode 100755 index 0000000..30056df --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-401627576 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec19 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec19 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec20.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec20.sh new file mode 100755 index 0000000..0cdaf53 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec20.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-410260051 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec20 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec20 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec21.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec21.sh new file mode 100755 index 0000000..460b7a5 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-418849597 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec21 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec21 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec22.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec22.sh new file mode 100755 index 0000000..00263d5 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec22.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-427409817 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec22 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec22 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec23.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec23.sh new file mode 100755 index 0000000..cc7ef78 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec23.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-436036612 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec23 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec23 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec23 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec24.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec24.sh new file mode 100755 index 0000000..15f65a4 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec24.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-444676521 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec24 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec24 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec24 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec25.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec25.sh new file mode 100755 index 0000000..ddba3b9 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec25.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-453511717 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec25 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec25 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec25 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec26.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec26.sh new file mode 100755 index 0000000..3cc5a11 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec26.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-464700657 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec26 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec26 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec26 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec27.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec27.sh new file mode 100755 index 0000000..e928e83 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec27.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-474244588 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec27 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec27 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec27 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec28.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec28.sh new file mode 100755 index 0000000..11d9919 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec28.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-482841788 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec28 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec28 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec28 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec29.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec29.sh new file mode 100755 index 0000000..e421a84 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec29.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-491463585 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec29 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec29 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec29 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec30.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec30.sh new file mode 100755 index 0000000..4e8394b --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec30.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-500041487 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec30 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec30 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec30 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec31.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec31.sh new file mode 100755 index 0000000..c8e57b1 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec31.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-508744946 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec31 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec31 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec31 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec32.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec32.sh new file mode 100755 index 0000000..95407f4 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec32.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-517441773 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec32 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec32 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec32 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec33.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec33.sh new file mode 100755 index 0000000..5d34fba --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec33.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-526077985 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec33 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec33 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec33 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec34.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec34.sh new file mode 100755 index 0000000..868abd0 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec34.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-536177747 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec34 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec34 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec34 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec35.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec35.sh new file mode 100755 index 0000000..55cab76 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec35.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-544638892 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec35 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec35 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec35 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec36.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec36.sh new file mode 100755 index 0000000..39e3242 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec36.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-553378138 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec36 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec36 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec36 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti01.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti01.sh new file mode 100755 index 0000000..06136fa --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-705586757 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec_vti01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti02.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti02.sh new file mode 100755 index 0000000..f989f50 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-714145815 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec_vti02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti04.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti04.sh new file mode 100755 index 0000000..1f2ef06 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-723791467 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec_vti04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti05.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti05.sh new file mode 100755 index 0000000..53d5545 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-732481100 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec_vti05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti06.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti06.sh new file mode 100755 index 0000000..c54c9a0 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-741189858 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec_vti06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti07.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti07.sh new file mode 100755 index 0000000..5fdf329 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-750018842 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec_vti07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti08.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti08.sh new file mode 100755 index 0000000..45b4373 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-758534700 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec_vti08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti09.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti09.sh new file mode 100755 index 0000000..2eb28e5 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-767243498 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec_vti09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti10.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti10.sh new file mode 100755 index 0000000..f252edb --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-775916850 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec_vti10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti11.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti11.sh new file mode 100755 index 0000000..fbdbf5a --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-784521294 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec_vti11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti12.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti12.sh new file mode 100755 index 0000000..6a671d2 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-793268484 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec_vti12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti13.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti13.sh new file mode 100755 index 0000000..75c933b --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-801822203 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec_vti13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti14.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti14.sh new file mode 100755 index 0000000..1ef3468 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-810536401 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec_vti14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti15.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti15.sh new file mode 100755 index 0000000..ec2ce3d --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-819069661 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec_vti15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti16.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti16.sh new file mode 100755 index 0000000..5fd057e --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-827810590 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec_vti16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti17.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti17.sh new file mode 100755 index 0000000..0b97073 --- /dev/null +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-836364659 +# @用例名称: ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_tcp tcp6_ipsec_vti17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec01.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec01.sh new file mode 100755 index 0000000..792579d --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-847051118 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec02.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec02.sh new file mode 100755 index 0000000..e72e024 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-859314629 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec03.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec03.sh new file mode 100755 index 0000000..963d758 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-868202053 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec04.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec04.sh new file mode 100755 index 0000000..0a7b7d9 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-876771270 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec05.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec05.sh new file mode 100755 index 0000000..c20b5af --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-885378178 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec06.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec06.sh new file mode 100755 index 0000000..de6274f --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-894017497 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec07.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec07.sh new file mode 100755 index 0000000..a968cb7 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-902623753 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec08.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec08.sh new file mode 100755 index 0000000..9e5b1e5 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-911244177 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec09.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec09.sh new file mode 100755 index 0000000..ac99def --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-919848579 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec10.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec10.sh new file mode 100755 index 0000000..165ff99 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-928327798 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec11.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec11.sh new file mode 100755 index 0000000..17fca42 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-937006461 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec12.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec12.sh new file mode 100755 index 0000000..a0c8a8a --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-945547635 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec13.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec13.sh new file mode 100755 index 0000000..5814044 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-954085153 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec14.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec14.sh new file mode 100755 index 0000000..763306e --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-963004276 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec15.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec15.sh new file mode 100755 index 0000000..6967563 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-971764281 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec16.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec16.sh new file mode 100755 index 0000000..5c2a8d7 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-983109373 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec17.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec17.sh new file mode 100755 index 0000000..feba2a8 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213007-991648102 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec18.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec18.sh new file mode 100755 index 0000000..b2addb1 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-000392778 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec18 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec18 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec19.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec19.sh new file mode 100755 index 0000000..c20b8ad --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-009048498 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec19 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec19 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec20.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec20.sh new file mode 100755 index 0000000..033c308 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec20.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-017712553 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec20 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec20 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec21.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec21.sh new file mode 100755 index 0000000..502ef8d --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-026492895 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec21 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec21 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec22.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec22.sh new file mode 100755 index 0000000..949a1a2 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec22.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-035107367 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec22 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec22 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec23.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec23.sh new file mode 100755 index 0000000..1ff798e --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec23.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-043883070 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec23 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec23 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec23 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec24.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec24.sh new file mode 100755 index 0000000..8176270 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec24.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-052497242 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec24 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec24 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec24 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec25.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec25.sh new file mode 100755 index 0000000..5e712db --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec25.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-061076890 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec25 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec25 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec25 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec26.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec26.sh new file mode 100755 index 0000000..5df7393 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec26.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-069602214 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec26 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec26 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec26 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec27.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec27.sh new file mode 100755 index 0000000..1648e7b --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec27.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-078267642 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec27 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec27 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec27 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec28.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec28.sh new file mode 100755 index 0000000..db0e202 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec28.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-086846958 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec28 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec28 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec28 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec29.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec29.sh new file mode 100755 index 0000000..bd2a009 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec29.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-095373074 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec29 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec29 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec29 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec30.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec30.sh new file mode 100755 index 0000000..1f18189 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec30.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-104070993 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec30 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec30 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec30 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec31.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec31.sh new file mode 100755 index 0000000..188eb08 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec31.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-112827541 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec31 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec31 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec31 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec32.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec32.sh new file mode 100755 index 0000000..5b7781c --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec32.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-121745070 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec32 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec32 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec32 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec33.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec33.sh new file mode 100755 index 0000000..5e4adb1 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec33.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-130364922 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec33 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec33 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec33 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec34.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec34.sh new file mode 100755 index 0000000..b5a4788 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec34.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-138977330 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec34 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec34 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec34 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec35.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec35.sh new file mode 100755 index 0000000..1c25a2e --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec35.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-149066172 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec35 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec35 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec35 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec36.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec36.sh new file mode 100755 index 0000000..5c4f9ae --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec36.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-157548497 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec36 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec36 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec36 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti01.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti01.sh new file mode 100755 index 0000000..978e470 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-497845846 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti02.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti02.sh new file mode 100755 index 0000000..24dff73 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-506414111 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti03.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti03.sh new file mode 100755 index 0000000..6581864 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-514931010 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti04.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti04.sh new file mode 100755 index 0000000..63f9c0e --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-523403758 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti05.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti05.sh new file mode 100755 index 0000000..4e16305 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-532103719 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti06.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti06.sh new file mode 100755 index 0000000..e8cd385 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-540661425 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti07.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti07.sh new file mode 100755 index 0000000..22d5de0 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-549242044 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti08.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti08.sh new file mode 100755 index 0000000..193f64f --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-557878187 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti09.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti09.sh new file mode 100755 index 0000000..f18e848 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-566835039 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti10.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti10.sh new file mode 100755 index 0000000..7b302af --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-575529300 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti11.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti11.sh new file mode 100755 index 0000000..25a174d --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-584169711 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti12.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti12.sh new file mode 100755 index 0000000..1a1cd13 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-593631279 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti13.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti13.sh new file mode 100755 index 0000000..50c6f55 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-602465952 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti14.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti14.sh new file mode 100755 index 0000000..101ed75 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-614917556 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti15.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti15.sh new file mode 100755 index 0000000..5930fd4 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-623471525 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti16.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti16.sh new file mode 100755 index 0000000..398cd54 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-632204178 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti17.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti17.sh new file mode 100755 index 0000000..5d6dd04 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-640804633 +# @用例名称: ltp.net_stress.ipsec_udp.udp4_ipsec_vti17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp4_ipsec_vti17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp4_ipsec_vti17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec01.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec01.sh new file mode 100755 index 0000000..88e7441 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-168237621 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec02.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec02.sh new file mode 100755 index 0000000..3ddf9d8 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-176882891 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec03.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec03.sh new file mode 100755 index 0000000..4596ef7 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-185567695 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec04.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec04.sh new file mode 100755 index 0000000..7fda319 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-195407751 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec05.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec05.sh new file mode 100755 index 0000000..5d85a96 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-204073358 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec06.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec06.sh new file mode 100755 index 0000000..bf5c9c6 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-212684825 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec07.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec07.sh new file mode 100755 index 0000000..b0f57f2 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-221271474 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec08.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec08.sh new file mode 100755 index 0000000..3303c25 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-232676088 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec09.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec09.sh new file mode 100755 index 0000000..e60a2bd --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-241481748 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec10.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec10.sh new file mode 100755 index 0000000..16f0964 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-252763412 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec11.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec11.sh new file mode 100755 index 0000000..5b9a198 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-261669820 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec12.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec12.sh new file mode 100755 index 0000000..571d306 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-270486871 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec13.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec13.sh new file mode 100755 index 0000000..7d9d4db --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-279006326 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec14.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec14.sh new file mode 100755 index 0000000..68d9355 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-287493670 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec15.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec15.sh new file mode 100755 index 0000000..d26c8d3 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-296044974 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec16.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec16.sh new file mode 100755 index 0000000..73dc2fa --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-304466945 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec17.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec17.sh new file mode 100755 index 0000000..f1df644 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-316374491 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec18.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec18.sh new file mode 100755 index 0000000..b3a4b88 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-329884644 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec18 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec18 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec19.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec19.sh new file mode 100755 index 0000000..f50c56a --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-338442621 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec19 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec19 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec20.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec20.sh new file mode 100755 index 0000000..d2d9b6f --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec20.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-347055871 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec20 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec20 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec21.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec21.sh new file mode 100755 index 0000000..dbbeb79 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-355809283 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec21 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec21 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec22.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec22.sh new file mode 100755 index 0000000..08eb2d0 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec22.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-364459632 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec22 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec22 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec23.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec23.sh new file mode 100755 index 0000000..e4f7a15 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec23.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-373244684 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec23 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec23 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec23 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec24.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec24.sh new file mode 100755 index 0000000..c3959b7 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec24.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-381963290 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec24 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec24 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec24 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec25.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec25.sh new file mode 100755 index 0000000..61ca007 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec25.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-390620893 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec25 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec25 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec25 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec26.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec26.sh new file mode 100755 index 0000000..64ed674 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec26.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-399161657 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec26 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec26 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec26 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec27.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec27.sh new file mode 100755 index 0000000..ab1de7a --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec27.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-408712482 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec27 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec27 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec27 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec28.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec28.sh new file mode 100755 index 0000000..eceda2d --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec28.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-417544581 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec28 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec28 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec28 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec29.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec29.sh new file mode 100755 index 0000000..3a56e42 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec29.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-426186735 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec29 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec29 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec29 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec30.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec30.sh new file mode 100755 index 0000000..0444ad5 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec30.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-435039142 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec30 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec30 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec30 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec31.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec31.sh new file mode 100755 index 0000000..fcdf3a7 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec31.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-443607919 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec31 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec31 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec31 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec32.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec32.sh new file mode 100755 index 0000000..dd64278 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec32.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-452173499 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec32 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec32 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec32 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec33.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec33.sh new file mode 100755 index 0000000..d1144e6 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec33.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-460928244 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec33 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec33 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec33 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec34.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec34.sh new file mode 100755 index 0000000..9663293 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec34.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-469537767 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec34 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec34 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec34 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec35.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec35.sh new file mode 100755 index 0000000..c72625b --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec35.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-478515168 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec35 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec35 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec35 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec36.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec36.sh new file mode 100755 index 0000000..37378ef --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec36.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-487270163 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec36 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec36 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec36 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti01.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti01.sh new file mode 100755 index 0000000..af0eb07 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-651397568 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti02.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti02.sh new file mode 100755 index 0000000..8b1d80a --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-660069078 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti03.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti03.sh new file mode 100755 index 0000000..8fb5515 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-668630800 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti04.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti04.sh new file mode 100755 index 0000000..d4e2e98 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-677138472 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti05.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti05.sh new file mode 100755 index 0000000..e7b1c4d --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-685612001 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti06.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti06.sh new file mode 100755 index 0000000..157ad09 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-694863455 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti07.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti07.sh new file mode 100755 index 0000000..e1ef99d --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-703505038 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti07 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti08.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti08.sh new file mode 100755 index 0000000..428885b --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-716586059 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti08 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti09.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti09.sh new file mode 100755 index 0000000..751c9d2 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-725213566 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti09 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti10.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti10.sh new file mode 100755 index 0000000..d4ada11 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-736342864 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti10 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti11.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti11.sh new file mode 100755 index 0000000..1fdb2a2 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-744807395 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti11 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti12.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti12.sh new file mode 100755 index 0000000..2c268b0 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-753914009 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti12 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti13.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti13.sh new file mode 100755 index 0000000..f4a7591 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-762553066 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti13 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti14.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti14.sh new file mode 100755 index 0000000..6865f86 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-771207945 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti14 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti15.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti15.sh new file mode 100755 index 0000000..f44d869 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-779839177 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti15 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti16.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti16.sh new file mode 100755 index 0000000..264baa3 --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-790139475 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti16 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti17.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti17.sh new file mode 100755 index 0000000..caa396c --- /dev/null +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-798654190 +# @用例名称: ltp.net_stress.ipsec_udp.udp6_ipsec_vti17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.ipsec_udp.udp6_ipsec_vti17 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.ipsec_udp udp6_ipsec_vti17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-multiple-socket.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-multiple-socket.sh new file mode 100755 index 0000000..67f921c --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-multiple-socket.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-822604864 +# @用例名称: ltp.net_stress.multicast.mcast4-group-multiple-socket +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast4-group-multiple-socket + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast4-group-multiple-socket + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-same-group.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-same-group.sh new file mode 100755 index 0000000..90d2e2b --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-same-group.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-835960739 +# @用例名称: ltp.net_stress.multicast.mcast4-group-same-group +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast4-group-same-group + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast4-group-same-group + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-single-socket.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-single-socket.sh new file mode 100755 index 0000000..55b579d --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-single-socket.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-814121287 +# @用例名称: ltp.net_stress.multicast.mcast4-group-single-socket +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast4-group-single-socket + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast4-group-single-socket + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-source-filter.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-source-filter.sh new file mode 100755 index 0000000..11c356c --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-source-filter.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-844404892 +# @用例名称: ltp.net_stress.multicast.mcast4-group-source-filter +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast4-group-source-filter + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast4-group-source-filter + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-pktfld01.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-pktfld01.sh new file mode 100755 index 0000000..cc7a99b --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-pktfld01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-852997895 +# @用例名称: ltp.net_stress.multicast.mcast4-pktfld01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast4-pktfld01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast4-pktfld01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-pktfld02.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-pktfld02.sh new file mode 100755 index 0000000..dd0a3c0 --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-pktfld02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-861715039 +# @用例名称: ltp.net_stress.multicast.mcast4-pktfld02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast4-pktfld02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast4-pktfld02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld01.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld01.sh new file mode 100755 index 0000000..db4d455 --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-870377260 +# @用例名称: ltp.net_stress.multicast.mcast4-queryfld01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast4-queryfld01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast4-queryfld01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld02.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld02.sh new file mode 100755 index 0000000..342d499 --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-879835882 +# @用例名称: ltp.net_stress.multicast.mcast4-queryfld02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast4-queryfld02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast4-queryfld02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld03.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld03.sh new file mode 100755 index 0000000..12762cc --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-888287069 +# @用例名称: ltp.net_stress.multicast.mcast4-queryfld03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast4-queryfld03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast4-queryfld03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld04.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld04.sh new file mode 100755 index 0000000..e5186ff --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-896795553 +# @用例名称: ltp.net_stress.multicast.mcast4-queryfld04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast4-queryfld04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast4-queryfld04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld05.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld05.sh new file mode 100755 index 0000000..0895983 --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-905856911 +# @用例名称: ltp.net_stress.multicast.mcast4-queryfld05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast4-queryfld05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast4-queryfld05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld06.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld06.sh new file mode 100755 index 0000000..249a338 --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-914323176 +# @用例名称: ltp.net_stress.multicast.mcast4-queryfld06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast4-queryfld06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast4-queryfld06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-multiple-socket.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-multiple-socket.sh new file mode 100755 index 0000000..173c23d --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-multiple-socket.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-933473595 +# @用例名称: ltp.net_stress.multicast.mcast6-group-multiple-socket +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast6-group-multiple-socket + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast6-group-multiple-socket + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-same-group.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-same-group.sh new file mode 100755 index 0000000..a846786 --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-same-group.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-942098347 +# @用例名称: ltp.net_stress.multicast.mcast6-group-same-group +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast6-group-same-group + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast6-group-same-group + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-single-socket.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-single-socket.sh new file mode 100755 index 0000000..224e16b --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-single-socket.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-924878390 +# @用例名称: ltp.net_stress.multicast.mcast6-group-single-socket +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast6-group-single-socket + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast6-group-single-socket + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-source-filter.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-source-filter.sh new file mode 100755 index 0000000..3aa5a20 --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-source-filter.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-950653939 +# @用例名称: ltp.net_stress.multicast.mcast6-group-source-filter +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast6-group-source-filter + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast6-group-source-filter + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-pktfld01.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-pktfld01.sh new file mode 100755 index 0000000..2b3a81f --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-pktfld01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-959211644 +# @用例名称: ltp.net_stress.multicast.mcast6-pktfld01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast6-pktfld01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast6-pktfld01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-pktfld02.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-pktfld02.sh new file mode 100755 index 0000000..3d8c0db --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-pktfld02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-967923810 +# @用例名称: ltp.net_stress.multicast.mcast6-pktfld02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast6-pktfld02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast6-pktfld02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld01.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld01.sh new file mode 100755 index 0000000..c4b0f1a --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-978312311 +# @用例名称: ltp.net_stress.multicast.mcast6-queryfld01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast6-queryfld01 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast6-queryfld01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld02.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld02.sh new file mode 100755 index 0000000..7cf7bed --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-986844279 +# @用例名称: ltp.net_stress.multicast.mcast6-queryfld02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast6-queryfld02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast6-queryfld02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld03.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld03.sh new file mode 100755 index 0000000..c37a7af --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213008-995374213 +# @用例名称: ltp.net_stress.multicast.mcast6-queryfld03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast6-queryfld03 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast6-queryfld03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld04.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld04.sh new file mode 100755 index 0000000..20c7d19 --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-006253765 +# @用例名称: ltp.net_stress.multicast.mcast6-queryfld04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast6-queryfld04 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast6-queryfld04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld05.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld05.sh new file mode 100755 index 0000000..541c50a --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-015192493 +# @用例名称: ltp.net_stress.multicast.mcast6-queryfld05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast6-queryfld05 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast6-queryfld05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld06.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld06.sh new file mode 100755 index 0000000..2700537 --- /dev/null +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-023892335 +# @用例名称: ltp.net_stress.multicast.mcast6-queryfld06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.multicast.mcast6-queryfld06 + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.multicast mcast6-queryfld06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.route/ltp.net_stress.route.route4-change-dst.sh b/testcase/net_stress.route/ltp.net_stress.route.route4-change-dst.sh new file mode 100755 index 0000000..11d562d --- /dev/null +++ b/testcase/net_stress.route/ltp.net_stress.route.route4-change-dst.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-035219694 +# @用例名称: ltp.net_stress.route.route4-change-dst +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.route.route4-change-dst + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.route route4-change-dst + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.route/ltp.net_stress.route.route4-change-gw.sh b/testcase/net_stress.route/ltp.net_stress.route.route4-change-gw.sh new file mode 100755 index 0000000..70cf9c8 --- /dev/null +++ b/testcase/net_stress.route/ltp.net_stress.route.route4-change-gw.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-043714021 +# @用例名称: ltp.net_stress.route.route4-change-gw +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.route.route4-change-gw + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.route route4-change-gw + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.route/ltp.net_stress.route.route4-change-if.sh b/testcase/net_stress.route/ltp.net_stress.route.route4-change-if.sh new file mode 100755 index 0000000..676cb43 --- /dev/null +++ b/testcase/net_stress.route/ltp.net_stress.route.route4-change-if.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-052536282 +# @用例名称: ltp.net_stress.route.route4-change-if +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.route.route4-change-if + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.route route4-change-if + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-dst.sh b/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-dst.sh new file mode 100755 index 0000000..184590b --- /dev/null +++ b/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-dst.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-061207951 +# @用例名称: ltp.net_stress.route.route4-change-netlink-dst +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.route.route4-change-netlink-dst + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.route route4-change-netlink-dst + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-gw.sh b/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-gw.sh new file mode 100755 index 0000000..930f39d --- /dev/null +++ b/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-gw.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-069754256 +# @用例名称: ltp.net_stress.route.route4-change-netlink-gw +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.route.route4-change-netlink-gw + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.route route4-change-netlink-gw + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-if.sh b/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-if.sh new file mode 100755 index 0000000..40fa954 --- /dev/null +++ b/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-if.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-078387933 +# @用例名称: ltp.net_stress.route.route4-change-netlink-if +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.route.route4-change-netlink-if + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.route route4-change-netlink-if + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.route/ltp.net_stress.route.route4-redirect.sh b/testcase/net_stress.route/ltp.net_stress.route.route4-redirect.sh new file mode 100755 index 0000000..34875d1 --- /dev/null +++ b/testcase/net_stress.route/ltp.net_stress.route.route4-redirect.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-087775052 +# @用例名称: ltp.net_stress.route.route4-redirect +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.route.route4-redirect + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.route route4-redirect + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.route/ltp.net_stress.route.route6-change-dst.sh b/testcase/net_stress.route/ltp.net_stress.route.route6-change-dst.sh new file mode 100755 index 0000000..adeceea --- /dev/null +++ b/testcase/net_stress.route/ltp.net_stress.route.route6-change-dst.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-098493762 +# @用例名称: ltp.net_stress.route.route6-change-dst +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.route.route6-change-dst + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.route route6-change-dst + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.route/ltp.net_stress.route.route6-change-gw.sh b/testcase/net_stress.route/ltp.net_stress.route.route6-change-gw.sh new file mode 100755 index 0000000..9ac26cf --- /dev/null +++ b/testcase/net_stress.route/ltp.net_stress.route.route6-change-gw.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-107409508 +# @用例名称: ltp.net_stress.route.route6-change-gw +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.route.route6-change-gw + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.route route6-change-gw + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.route/ltp.net_stress.route.route6-change-if.sh b/testcase/net_stress.route/ltp.net_stress.route.route6-change-if.sh new file mode 100755 index 0000000..b13d098 --- /dev/null +++ b/testcase/net_stress.route/ltp.net_stress.route.route6-change-if.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-115891903 +# @用例名称: ltp.net_stress.route.route6-change-if +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.route.route6-change-if + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.route route6-change-if + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-dst.sh b/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-dst.sh new file mode 100755 index 0000000..4736ef6 --- /dev/null +++ b/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-dst.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-124518898 +# @用例名称: ltp.net_stress.route.route6-change-netlink-dst +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.route.route6-change-netlink-dst + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.route route6-change-netlink-dst + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-gw.sh b/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-gw.sh new file mode 100755 index 0000000..a4cf7bb --- /dev/null +++ b/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-gw.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-133086613 +# @用例名称: ltp.net_stress.route.route6-change-netlink-gw +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.route.route6-change-netlink-gw + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.route route6-change-netlink-gw + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-if.sh b/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-if.sh new file mode 100755 index 0000000..3a78ef7 --- /dev/null +++ b/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-if.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-141712706 +# @用例名称: ltp.net_stress.route.route6-change-netlink-if +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.route.route6-change-netlink-if + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.route route6-change-netlink-if + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net_stress.route/ltp.net_stress.route.route6-redirect.sh b/testcase/net_stress.route/ltp.net_stress.route.route6-redirect.sh new file mode 100755 index 0000000..e423353 --- /dev/null +++ b/testcase/net_stress.route/ltp.net_stress.route.route6-redirect.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-150352346 +# @用例名称: ltp.net_stress.route.route6-redirect +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net_stress.route.route6-redirect + # @预期结果:1: 用例返回0 + ltp_run_testcase net_stress.route route6-redirect + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/nptl/ltp.nptl.nptl01.sh b/testcase/nptl/ltp.nptl.nptl01.sh new file mode 100755 index 0000000..931c171 --- /dev/null +++ b/testcase/nptl/ltp.nptl.nptl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-732895630 +# @用例名称: ltp.nptl.nptl01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.nptl.nptl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase nptl nptl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.migrate_pages01.sh b/testcase/numa/ltp.numa.migrate_pages01.sh new file mode 100755 index 0000000..c485bab --- /dev/null +++ b/testcase/numa/ltp.numa.migrate_pages01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-746537961 +# @用例名称: ltp.numa.migrate_pages01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.migrate_pages01 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa migrate_pages01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.migrate_pages02.sh b/testcase/numa/ltp.numa.migrate_pages02.sh new file mode 100755 index 0000000..7025243 --- /dev/null +++ b/testcase/numa/ltp.numa.migrate_pages02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-756406790 +# @用例名称: ltp.numa.migrate_pages02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.migrate_pages02 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa migrate_pages02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.migrate_pages03.sh b/testcase/numa/ltp.numa.migrate_pages03.sh new file mode 100755 index 0000000..998d6b6 --- /dev/null +++ b/testcase/numa/ltp.numa.migrate_pages03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-766160294 +# @用例名称: ltp.numa.migrate_pages03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.migrate_pages03 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa migrate_pages03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.move_pages01.sh b/testcase/numa/ltp.numa.move_pages01.sh new file mode 100755 index 0000000..a9ab089 --- /dev/null +++ b/testcase/numa/ltp.numa.move_pages01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-778594655 +# @用例名称: ltp.numa.move_pages01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.move_pages01 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa move_pages01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.move_pages02.sh b/testcase/numa/ltp.numa.move_pages02.sh new file mode 100755 index 0000000..dc565d4 --- /dev/null +++ b/testcase/numa/ltp.numa.move_pages02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-787233023 +# @用例名称: ltp.numa.move_pages02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.move_pages02 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa move_pages02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.move_pages03.sh b/testcase/numa/ltp.numa.move_pages03.sh new file mode 100755 index 0000000..4bf9252 --- /dev/null +++ b/testcase/numa/ltp.numa.move_pages03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-795673579 +# @用例名称: ltp.numa.move_pages03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.move_pages03 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa move_pages03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.move_pages04.sh b/testcase/numa/ltp.numa.move_pages04.sh new file mode 100755 index 0000000..f71df02 --- /dev/null +++ b/testcase/numa/ltp.numa.move_pages04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-804329689 +# @用例名称: ltp.numa.move_pages04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.move_pages04 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa move_pages04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.move_pages05.sh b/testcase/numa/ltp.numa.move_pages05.sh new file mode 100755 index 0000000..23ff5bc --- /dev/null +++ b/testcase/numa/ltp.numa.move_pages05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-812882946 +# @用例名称: ltp.numa.move_pages05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.move_pages05 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa move_pages05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.move_pages06.sh b/testcase/numa/ltp.numa.move_pages06.sh new file mode 100755 index 0000000..e53a8e5 --- /dev/null +++ b/testcase/numa/ltp.numa.move_pages06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-821312101 +# @用例名称: ltp.numa.move_pages06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.move_pages06 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa move_pages06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.move_pages07.sh b/testcase/numa/ltp.numa.move_pages07.sh new file mode 100755 index 0000000..2a0eafe --- /dev/null +++ b/testcase/numa/ltp.numa.move_pages07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-829741256 +# @用例名称: ltp.numa.move_pages07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.move_pages07 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa move_pages07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.move_pages09.sh b/testcase/numa/ltp.numa.move_pages09.sh new file mode 100755 index 0000000..18a5cb8 --- /dev/null +++ b/testcase/numa/ltp.numa.move_pages09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-838154843 +# @用例名称: ltp.numa.move_pages09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.move_pages09 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa move_pages09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.move_pages10.sh b/testcase/numa/ltp.numa.move_pages10.sh new file mode 100755 index 0000000..5d7fc29 --- /dev/null +++ b/testcase/numa/ltp.numa.move_pages10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-846803889 +# @用例名称: ltp.numa.move_pages10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.move_pages10 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa move_pages10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.move_pages11.sh b/testcase/numa/ltp.numa.move_pages11.sh new file mode 100755 index 0000000..8e518ac --- /dev/null +++ b/testcase/numa/ltp.numa.move_pages11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-855374469 +# @用例名称: ltp.numa.move_pages11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.move_pages11 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa move_pages11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.move_pages12.sh b/testcase/numa/ltp.numa.move_pages12.sh new file mode 100755 index 0000000..764f434 --- /dev/null +++ b/testcase/numa/ltp.numa.move_pages12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-863896198 +# @用例名称: ltp.numa.move_pages12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.move_pages12 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa move_pages12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.numa_testcases.sh b/testcase/numa/ltp.numa.numa_testcases.sh new file mode 100755 index 0000000..b9b0056 --- /dev/null +++ b/testcase/numa/ltp.numa.numa_testcases.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-874409093 +# @用例名称: ltp.numa.numa_testcases +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.numa_testcases + # @预期结果:1: 用例返回0 + ltp_run_testcase numa numa_testcases + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.set_mempolicy01.sh b/testcase/numa/ltp.numa.set_mempolicy01.sh new file mode 100755 index 0000000..9deddfd --- /dev/null +++ b/testcase/numa/ltp.numa.set_mempolicy01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-884832269 +# @用例名称: ltp.numa.set_mempolicy01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.set_mempolicy01 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa set_mempolicy01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.set_mempolicy02.sh b/testcase/numa/ltp.numa.set_mempolicy02.sh new file mode 100755 index 0000000..23ae37e --- /dev/null +++ b/testcase/numa/ltp.numa.set_mempolicy02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-893537863 +# @用例名称: ltp.numa.set_mempolicy02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.set_mempolicy02 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa set_mempolicy02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.set_mempolicy03.sh b/testcase/numa/ltp.numa.set_mempolicy03.sh new file mode 100755 index 0000000..dd2a72d --- /dev/null +++ b/testcase/numa/ltp.numa.set_mempolicy03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-902075701 +# @用例名称: ltp.numa.set_mempolicy03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.set_mempolicy03 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa set_mempolicy03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.set_mempolicy04.sh b/testcase/numa/ltp.numa.set_mempolicy04.sh new file mode 100755 index 0000000..3da6aad --- /dev/null +++ b/testcase/numa/ltp.numa.set_mempolicy04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-910760585 +# @用例名称: ltp.numa.set_mempolicy04 +# @用例级别: 1 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.set_mempolicy04 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa set_mempolicy04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/numa/ltp.numa.set_mempolicy05.sh b/testcase/numa/ltp.numa.set_mempolicy05.sh new file mode 100755 index 0000000..15afea2 --- /dev/null +++ b/testcase/numa/ltp.numa.set_mempolicy05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-919308001 +# @用例名称: ltp.numa.set_mempolicy05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.numa.set_mempolicy05 + # @预期结果:1: 用例返回0 + ltp_run_testcase numa set_mempolicy05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/power_management_tests/ltp.power_management_tests.runpwtests01.sh b/testcase/power_management_tests/ltp.power_management_tests.runpwtests01.sh new file mode 100755 index 0000000..0fa5045 --- /dev/null +++ b/testcase/power_management_tests/ltp.power_management_tests.runpwtests01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-930510327 +# @用例名称: ltp.power_management_tests.runpwtests01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.power_management_tests.runpwtests01 + # @预期结果:1: 用例返回0 + ltp_run_testcase power_management_tests runpwtests01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/power_management_tests/ltp.power_management_tests.runpwtests02.sh b/testcase/power_management_tests/ltp.power_management_tests.runpwtests02.sh new file mode 100755 index 0000000..8325e1c --- /dev/null +++ b/testcase/power_management_tests/ltp.power_management_tests.runpwtests02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-939204407 +# @用例名称: ltp.power_management_tests.runpwtests02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.power_management_tests.runpwtests02 + # @预期结果:1: 用例返回0 + ltp_run_testcase power_management_tests runpwtests02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/power_management_tests/ltp.power_management_tests.runpwtests03.sh b/testcase/power_management_tests/ltp.power_management_tests.runpwtests03.sh new file mode 100755 index 0000000..0218614 --- /dev/null +++ b/testcase/power_management_tests/ltp.power_management_tests.runpwtests03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-947800025 +# @用例名称: ltp.power_management_tests.runpwtests03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.power_management_tests.runpwtests03 + # @预期结果:1: 用例返回0 + ltp_run_testcase power_management_tests runpwtests03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/power_management_tests/ltp.power_management_tests.runpwtests04.sh b/testcase/power_management_tests/ltp.power_management_tests.runpwtests04.sh new file mode 100755 index 0000000..71ac3cf --- /dev/null +++ b/testcase/power_management_tests/ltp.power_management_tests.runpwtests04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-956343504 +# @用例名称: ltp.power_management_tests.runpwtests04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.power_management_tests.runpwtests04 + # @预期结果:1: 用例返回0 + ltp_run_testcase power_management_tests runpwtests04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/power_management_tests/ltp.power_management_tests.runpwtests06.sh b/testcase/power_management_tests/ltp.power_management_tests.runpwtests06.sh new file mode 100755 index 0000000..980fb2e --- /dev/null +++ b/testcase/power_management_tests/ltp.power_management_tests.runpwtests06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-965944732 +# @用例名称: ltp.power_management_tests.runpwtests06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.power_management_tests.runpwtests06 + # @预期结果:1: 用例返回0 + ltp_run_testcase power_management_tests runpwtests06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive01.sh b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive01.sh new file mode 100755 index 0000000..9aab222 --- /dev/null +++ b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-977421652 +# @用例名称: ltp.power_management_tests_exclusive.runpwtests_exclusive01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.power_management_tests_exclusive.runpwtests_exclusive01 + # @预期结果:1: 用例返回0 + ltp_run_testcase power_management_tests_exclusive runpwtests_exclusive01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive02.sh b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive02.sh new file mode 100755 index 0000000..9145552 --- /dev/null +++ b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-985995738 +# @用例名称: ltp.power_management_tests_exclusive.runpwtests_exclusive02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.power_management_tests_exclusive.runpwtests_exclusive02 + # @预期结果:1: 用例返回0 + ltp_run_testcase power_management_tests_exclusive runpwtests_exclusive02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive03.sh b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive03.sh new file mode 100755 index 0000000..f4c0362 --- /dev/null +++ b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213009-994633073 +# @用例名称: ltp.power_management_tests_exclusive.runpwtests_exclusive03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.power_management_tests_exclusive.runpwtests_exclusive03 + # @预期结果:1: 用例返回0 + ltp_run_testcase power_management_tests_exclusive runpwtests_exclusive03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive04.sh b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive04.sh new file mode 100755 index 0000000..5c9ff45 --- /dev/null +++ b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-003334047 +# @用例名称: ltp.power_management_tests_exclusive.runpwtests_exclusive04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.power_management_tests_exclusive.runpwtests_exclusive04 + # @预期结果:1: 用例返回0 + ltp_run_testcase power_management_tests_exclusive runpwtests_exclusive04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive05.sh b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive05.sh new file mode 100755 index 0000000..eadac4f --- /dev/null +++ b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-011812494 +# @用例名称: ltp.power_management_tests_exclusive.runpwtests_exclusive05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.power_management_tests_exclusive.runpwtests_exclusive05 + # @预期结果:1: 用例返回0 + ltp_run_testcase power_management_tests_exclusive runpwtests_exclusive05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/pty/ltp.pty.hangup01.sh b/testcase/pty/ltp.pty.hangup01.sh new file mode 100755 index 0000000..3fd56d0 --- /dev/null +++ b/testcase/pty/ltp.pty.hangup01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-077518844 +# @用例名称: ltp.pty.hangup01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.pty.hangup01 + # @预期结果:1: 用例返回0 + ltp_run_testcase pty hangup01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/pty/ltp.pty.ptem01.sh b/testcase/pty/ltp.pty.ptem01.sh new file mode 100755 index 0000000..aa80b3c --- /dev/null +++ b/testcase/pty/ltp.pty.ptem01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-068895505 +# @用例名称: ltp.pty.ptem01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.pty.ptem01 + # @预期结果:1: 用例返回0 + ltp_run_testcase pty ptem01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/pty/ltp.pty.pty01.sh b/testcase/pty/ltp.pty.pty01.sh new file mode 100755 index 0000000..103d19a --- /dev/null +++ b/testcase/pty/ltp.pty.pty01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-023123963 +# @用例名称: ltp.pty.pty01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.pty.pty01 + # @预期结果:1: 用例返回0 + ltp_run_testcase pty pty01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/pty/ltp.pty.pty02.sh b/testcase/pty/ltp.pty.pty02.sh new file mode 100755 index 0000000..09b0749 --- /dev/null +++ b/testcase/pty/ltp.pty.pty02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-031885892 +# @用例名称: ltp.pty.pty02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.pty.pty02 + # @预期结果:1: 用例返回0 + ltp_run_testcase pty pty02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/pty/ltp.pty.pty03.sh b/testcase/pty/ltp.pty.pty03.sh new file mode 100755 index 0000000..4eb8512 --- /dev/null +++ b/testcase/pty/ltp.pty.pty03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-040346686 +# @用例名称: ltp.pty.pty03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.pty.pty03 + # @预期结果:1: 用例返回0 + ltp_run_testcase pty pty03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/pty/ltp.pty.pty04.sh b/testcase/pty/ltp.pty.pty04.sh new file mode 100755 index 0000000..e21b269 --- /dev/null +++ b/testcase/pty/ltp.pty.pty04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-049042390 +# @用例名称: ltp.pty.pty04 +# @用例级别: 3 +# @用例标签: aarch64不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.pty.pty04 + # @预期结果:1: 用例返回0 + ltp_run_testcase pty pty04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/pty/ltp.pty.pty05.sh b/testcase/pty/ltp.pty.pty05.sh new file mode 100755 index 0000000..b2c2cf1 --- /dev/null +++ b/testcase/pty/ltp.pty.pty05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-057548038 +# @用例名称: ltp.pty.pty05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.pty.pty05 + # @预期结果:1: 用例返回0 + ltp_run_testcase pty pty05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/pty/ltp.pty.pty06.sh b/testcase/pty/ltp.pty.pty06.sh new file mode 100755 index 0000000..da4b9f0 --- /dev/null +++ b/testcase/pty/ltp.pty.pty06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141851-036049242 +# @用例名称: ltp.pty.pty06 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.pty.pty06 + # @预期结果:1: 用例返回0 + ltp_run_testcase pty pty06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/pty/ltp.pty.pty07.sh b/testcase/pty/ltp.pty.pty07.sh new file mode 100755 index 0000000..a8d641b --- /dev/null +++ b/testcase/pty/ltp.pty.pty07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141851-099195750 +# @用例名称: ltp.pty.pty07 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.pty.pty07 + # @预期结果:1: 用例返回0 + ltp_run_testcase pty pty07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/s390x_tests/ltp.s390x_tests.vmcp.sh b/testcase/s390x_tests/ltp.s390x_tests.vmcp.sh new file mode 100755 index 0000000..98060a8 --- /dev/null +++ b/testcase/s390x_tests/ltp.s390x_tests.vmcp.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-090980688 +# @用例名称: ltp.s390x_tests.vmcp +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.s390x_tests.vmcp + # @预期结果:1: 用例返回0 + ltp_run_testcase s390x_tests vmcp + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/sched/ltp.sched.autogroup01.sh b/testcase/sched/ltp.sched.autogroup01.sh new file mode 100755 index 0000000..72fcb2b --- /dev/null +++ b/testcase/sched/ltp.sched.autogroup01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-200303376 +# @用例名称: ltp.sched.autogroup01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.sched.autogroup01 + # @预期结果:1: 用例返回0 + ltp_run_testcase sched autogroup01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/sched/ltp.sched.cfs_bandwidth01.sh b/testcase/sched/ltp.sched.cfs_bandwidth01.sh new file mode 100755 index 0000000..8db1654 --- /dev/null +++ b/testcase/sched/ltp.sched.cfs_bandwidth01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-149348183 +# @用例名称: ltp.sched.cfs_bandwidth01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.sched.cfs_bandwidth01 + # @预期结果:1: 用例返回0 + ltp_run_testcase sched cfs_bandwidth01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/sched/ltp.sched.hackbench01.sh b/testcase/sched/ltp.sched.hackbench01.sh new file mode 100755 index 0000000..38955cc --- /dev/null +++ b/testcase/sched/ltp.sched.hackbench01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-157987401 +# @用例名称: ltp.sched.hackbench01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.sched.hackbench01 + # @预期结果:1: 用例返回0 + ltp_run_testcase sched hackbench01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/sched/ltp.sched.hackbench02.sh b/testcase/sched/ltp.sched.hackbench02.sh new file mode 100755 index 0000000..fb16324 --- /dev/null +++ b/testcase/sched/ltp.sched.hackbench02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-166661444 +# @用例名称: ltp.sched.hackbench02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.sched.hackbench02 + # @预期结果:1: 用例返回0 + ltp_run_testcase sched hackbench02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/sched/ltp.sched.proc_sched_rt01.sh b/testcase/sched/ltp.sched.proc_sched_rt01.sh new file mode 100755 index 0000000..d28edae --- /dev/null +++ b/testcase/sched/ltp.sched.proc_sched_rt01.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172837-647431541 +# @用例名称: ltp.sched.proc_sched_rt01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.sched.proc_sched_rt01 + # @预期结果:1: 用例返回0 + ltp_run_testcase sched proc_sched_rt01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/sched/ltp.sched.pth_str01.sh b/testcase/sched/ltp.sched.pth_str01.sh new file mode 100755 index 0000000..88d6046 --- /dev/null +++ b/testcase/sched/ltp.sched.pth_str01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-102290034 +# @用例名称: ltp.sched.pth_str01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.sched.pth_str01 + # @预期结果:1: 用例返回0 + ltp_run_testcase sched pth_str01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/sched/ltp.sched.pth_str02.sh b/testcase/sched/ltp.sched.pth_str02.sh new file mode 100755 index 0000000..537a174 --- /dev/null +++ b/testcase/sched/ltp.sched.pth_str02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-111066829 +# @用例名称: ltp.sched.pth_str02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.sched.pth_str02 + # @预期结果:1: 用例返回0 + ltp_run_testcase sched pth_str02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/sched/ltp.sched.pth_str03.sh b/testcase/sched/ltp.sched.pth_str03.sh new file mode 100755 index 0000000..d103e8e --- /dev/null +++ b/testcase/sched/ltp.sched.pth_str03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-119610408 +# @用例名称: ltp.sched.pth_str03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.sched.pth_str03 + # @预期结果:1: 用例返回0 + ltp_run_testcase sched pth_str03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/sched/ltp.sched.sched_cli_serv.sh b/testcase/sched/ltp.sched.sched_cli_serv.sh new file mode 100755 index 0000000..96d4a7f --- /dev/null +++ b/testcase/sched/ltp.sched.sched_cli_serv.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-177453473 +# @用例名称: ltp.sched.sched_cli_serv +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.sched.sched_cli_serv + # @预期结果:1: 用例返回0 + ltp_run_testcase sched sched_cli_serv + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/sched/ltp.sched.sched_stress.sh b/testcase/sched/ltp.sched.sched_stress.sh new file mode 100755 index 0000000..9df76a9 --- /dev/null +++ b/testcase/sched/ltp.sched.sched_stress.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-187086200 +# @用例名称: ltp.sched.sched_stress +# @用例级别: 3 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.sched.sched_stress + # @预期结果:1: 用例返回0 + ltp_run_testcase sched sched_stress + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/sched/ltp.sched.starvation.sh b/testcase/sched/ltp.sched.starvation.sh new file mode 100755 index 0000000..c174848 --- /dev/null +++ b/testcase/sched/ltp.sched.starvation.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172837-573279225 +# @用例名称: ltp.sched.starvation +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.sched.starvation + # @预期结果:1: 用例返回0 + ltp_run_testcase sched starvation + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/sched/ltp.sched.time-schedule01.sh b/testcase/sched/ltp.sched.time-schedule01.sh new file mode 100755 index 0000000..759762c --- /dev/null +++ b/testcase/sched/ltp.sched.time-schedule01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-130304784 +# @用例名称: ltp.sched.time-schedule01 +# @用例级别: 1 +# @用例标签: TK5不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.sched.time-schedule01 + # @预期结果:1: 用例返回0 + ltp_run_testcase sched time-schedule01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/sched/ltp.sched.trace_sched01.sh b/testcase/sched/ltp.sched.trace_sched01.sh new file mode 100755 index 0000000..d905bbf --- /dev/null +++ b/testcase/sched/ltp.sched.trace_sched01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-138821322 +# @用例名称: ltp.sched.trace_sched01 +# @用例级别: 1 +# @用例标签: TK5不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.sched.trace_sched01 + # @预期结果:1: 用例返回0 + ltp_run_testcase sched trace_sched01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf101.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf101.sh new file mode 100755 index 0000000..f326754 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf101.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-140998122 +# @用例名称: ltp.scsi_debug.part1.gf101 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf101 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf101 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf102.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf102.sh new file mode 100755 index 0000000..11813c8 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf102.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-149559385 +# @用例名称: ltp.scsi_debug.part1.gf102 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf102 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf102 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf103.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf103.sh new file mode 100755 index 0000000..b3248d8 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf103.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-158260419 +# @用例名称: ltp.scsi_debug.part1.gf103 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf103 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf103 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf104.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf104.sh new file mode 100755 index 0000000..b88a58e --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf104.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-167159735 +# @用例名称: ltp.scsi_debug.part1.gf104 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf104 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf104 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf105.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf105.sh new file mode 100755 index 0000000..7f69db8 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf105.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-179095512 +# @用例名称: ltp.scsi_debug.part1.gf105 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf105 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf105 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf106.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf106.sh new file mode 100755 index 0000000..9dde936 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf106.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-189514502 +# @用例名称: ltp.scsi_debug.part1.gf106 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf106 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf106 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf107.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf107.sh new file mode 100755 index 0000000..db3db96 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf107.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-198123904 +# @用例名称: ltp.scsi_debug.part1.gf107 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf107 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf107 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf108.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf108.sh new file mode 100755 index 0000000..1e4dff9 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf108.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-206772420 +# @用例名称: ltp.scsi_debug.part1.gf108 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf108 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf108 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf109.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf109.sh new file mode 100755 index 0000000..0d24b5a --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf109.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-215354972 +# @用例名称: ltp.scsi_debug.part1.gf109 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf109 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf109 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf110.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf110.sh new file mode 100755 index 0000000..8c97474 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf110.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-223939648 +# @用例名称: ltp.scsi_debug.part1.gf110 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf110 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf110 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf111.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf111.sh new file mode 100755 index 0000000..4a0bded --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf111.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-232530106 +# @用例名称: ltp.scsi_debug.part1.gf111 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf111 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf111 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf112.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf112.sh new file mode 100755 index 0000000..e37dfcc --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf112.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-241265624 +# @用例名称: ltp.scsi_debug.part1.gf112 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf112 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf112 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf113.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf113.sh new file mode 100755 index 0000000..9ffb1fa --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf113.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-249937193 +# @用例名称: ltp.scsi_debug.part1.gf113 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf113 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf113 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf114.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf114.sh new file mode 100755 index 0000000..ae61663 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf114.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-258493096 +# @用例名称: ltp.scsi_debug.part1.gf114 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf114 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf114 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf115.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf115.sh new file mode 100755 index 0000000..504916a --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf115.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-267120231 +# @用例名称: ltp.scsi_debug.part1.gf115 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf115 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf115 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf116.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf116.sh new file mode 100755 index 0000000..98155bc --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf116.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-275793804 +# @用例名称: ltp.scsi_debug.part1.gf116 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf116 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf116 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf117.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf117.sh new file mode 100755 index 0000000..e9df4e1 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf117.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-284308830 +# @用例名称: ltp.scsi_debug.part1.gf117 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf117 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf117 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf118.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf118.sh new file mode 100755 index 0000000..a1e44fe --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf118.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-295597186 +# @用例名称: ltp.scsi_debug.part1.gf118 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf118 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf118 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf119.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf119.sh new file mode 100755 index 0000000..c1b204c --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf119.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-303983391 +# @用例名称: ltp.scsi_debug.part1.gf119 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf119 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf119 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf120.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf120.sh new file mode 100755 index 0000000..fef21ef --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf120.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-313719722 +# @用例名称: ltp.scsi_debug.part1.gf120 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf120 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf120 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf121.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf121.sh new file mode 100755 index 0000000..9d109ad --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf121.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-322269333 +# @用例名称: ltp.scsi_debug.part1.gf121 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf121 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf121 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf122.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf122.sh new file mode 100755 index 0000000..3aed4c8 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf122.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-330830405 +# @用例名称: ltp.scsi_debug.part1.gf122 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf122 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf122 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf123.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf123.sh new file mode 100755 index 0000000..5183036 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf123.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-339530107 +# @用例名称: ltp.scsi_debug.part1.gf123 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf123 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf123 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf124.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf124.sh new file mode 100755 index 0000000..96f6ec9 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf124.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-348104344 +# @用例名称: ltp.scsi_debug.part1.gf124 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf124 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf124 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf125.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf125.sh new file mode 100755 index 0000000..5d16f4f --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf125.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-360245445 +# @用例名称: ltp.scsi_debug.part1.gf125 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf125 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf125 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf126.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf126.sh new file mode 100755 index 0000000..97f418b --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf126.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-368980333 +# @用例名称: ltp.scsi_debug.part1.gf126 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf126 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf126 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf127.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf127.sh new file mode 100755 index 0000000..5fa08f2 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf127.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-377627937 +# @用例名称: ltp.scsi_debug.part1.gf127 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf127 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf127 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf128.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf128.sh new file mode 100755 index 0000000..92a2d73 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf128.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-386194941 +# @用例名称: ltp.scsi_debug.part1.gf128 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf128 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf128 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf129.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf129.sh new file mode 100755 index 0000000..0806f36 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf129.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-394967228 +# @用例名称: ltp.scsi_debug.part1.gf129 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf129 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf129 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf130.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf130.sh new file mode 100755 index 0000000..c18e232 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf130.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-403651901 +# @用例名称: ltp.scsi_debug.part1.gf130 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf130 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf130 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf201.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf201.sh new file mode 100755 index 0000000..f3e6cae --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf201.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-213142935 +# @用例名称: ltp.scsi_debug.part1.gf201 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf201 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf201 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf202.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf202.sh new file mode 100755 index 0000000..e5ef85d --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf202.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-222042491 +# @用例名称: ltp.scsi_debug.part1.gf202 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf202 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf202 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf203.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf203.sh new file mode 100755 index 0000000..bf676c3 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf203.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-230606458 +# @用例名称: ltp.scsi_debug.part1.gf203 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf203 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf203 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf204.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf204.sh new file mode 100755 index 0000000..6fb184b --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf204.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-239172981 +# @用例名称: ltp.scsi_debug.part1.gf204 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf204 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf204 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf205.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf205.sh new file mode 100755 index 0000000..8479a31 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf205.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-247845321 +# @用例名称: ltp.scsi_debug.part1.gf205 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf205 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf205 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf206.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf206.sh new file mode 100755 index 0000000..4404dc9 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf206.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-256537689 +# @用例名称: ltp.scsi_debug.part1.gf206 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf206 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf206 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf207.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf207.sh new file mode 100755 index 0000000..88f547e --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf207.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-266966847 +# @用例名称: ltp.scsi_debug.part1.gf207 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf207 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf207 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf208.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf208.sh new file mode 100755 index 0000000..83f7ddc --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf208.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-276545384 +# @用例名称: ltp.scsi_debug.part1.gf208 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf208 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf208 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf209.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf209.sh new file mode 100755 index 0000000..40487d9 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf209.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-285411046 +# @用例名称: ltp.scsi_debug.part1.gf209 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf209 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf209 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf210.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf210.sh new file mode 100755 index 0000000..9ecfc50 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf210.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-294951621 +# @用例名称: ltp.scsi_debug.part1.gf210 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf210 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf210 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf211.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf211.sh new file mode 100755 index 0000000..c052339 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf211.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-303388510 +# @用例名称: ltp.scsi_debug.part1.gf211 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf211 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf211 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf212.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf212.sh new file mode 100755 index 0000000..4c9465a --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf212.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-311752805 +# @用例名称: ltp.scsi_debug.part1.gf212 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf212 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf212 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf213.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf213.sh new file mode 100755 index 0000000..e492027 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf213.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-320489105 +# @用例名称: ltp.scsi_debug.part1.gf213 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf213 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf213 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf214.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf214.sh new file mode 100755 index 0000000..9348372 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf214.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-329108125 +# @用例名称: ltp.scsi_debug.part1.gf214 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf214 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf214 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf215.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf215.sh new file mode 100755 index 0000000..07b4cc6 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf215.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-337759056 +# @用例名称: ltp.scsi_debug.part1.gf215 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf215 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf215 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf216.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf216.sh new file mode 100755 index 0000000..112f00d --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf216.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-346404365 +# @用例名称: ltp.scsi_debug.part1.gf216 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf216 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf216 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf217.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf217.sh new file mode 100755 index 0000000..8c5d6e4 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf217.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-355105769 +# @用例名称: ltp.scsi_debug.part1.gf217 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf217 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf217 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf218.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf218.sh new file mode 100755 index 0000000..3b16f49 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf218.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-363975329 +# @用例名称: ltp.scsi_debug.part1.gf218 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf218 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf218 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf219.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf219.sh new file mode 100755 index 0000000..57b54ba --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf219.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-372601873 +# @用例名称: ltp.scsi_debug.part1.gf219 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf219 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf219 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf220.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf220.sh new file mode 100755 index 0000000..90d6fee --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf220.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-381418284 +# @用例名称: ltp.scsi_debug.part1.gf220 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf220 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf220 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf221.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf221.sh new file mode 100755 index 0000000..69c28c4 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf221.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-390033888 +# @用例名称: ltp.scsi_debug.part1.gf221 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf221 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf221 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf222.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf222.sh new file mode 100755 index 0000000..b339008 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf222.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-399002613 +# @用例名称: ltp.scsi_debug.part1.gf222 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf222 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf222 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf223.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf223.sh new file mode 100755 index 0000000..19ff778 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf223.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-407593732 +# @用例名称: ltp.scsi_debug.part1.gf223 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf223 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf223 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf224.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf224.sh new file mode 100755 index 0000000..9bcaef3 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf224.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-416352814 +# @用例名称: ltp.scsi_debug.part1.gf224 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf224 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf224 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf225.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf225.sh new file mode 100755 index 0000000..b85d919 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf225.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-426409595 +# @用例名称: ltp.scsi_debug.part1.gf225 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf225 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf225 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf226.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf226.sh new file mode 100755 index 0000000..069f429 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf226.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-435088438 +# @用例名称: ltp.scsi_debug.part1.gf226 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf226 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf226 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf227.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf227.sh new file mode 100755 index 0000000..4d5351d --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf227.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-443637968 +# @用例名称: ltp.scsi_debug.part1.gf227 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf227 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf227 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf228.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf228.sh new file mode 100755 index 0000000..9368b5a --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf228.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-452359301 +# @用例名称: ltp.scsi_debug.part1.gf228 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf228 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf228 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf229.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf229.sh new file mode 100755 index 0000000..ccaf826 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf229.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-460974734 +# @用例名称: ltp.scsi_debug.part1.gf229 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf229 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf229 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf230.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf230.sh new file mode 100755 index 0000000..3c83a19 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf230.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-469680016 +# @用例名称: ltp.scsi_debug.part1.gf230 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf230 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf230 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf301.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf301.sh new file mode 100755 index 0000000..2901bc0 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf301.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-522524625 +# @用例名称: ltp.scsi_debug.part1.gf301 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf301 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf301 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf302.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf302.sh new file mode 100755 index 0000000..a3bb7ce --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf302.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-531084776 +# @用例名称: ltp.scsi_debug.part1.gf302 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf302 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf302 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf303.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf303.sh new file mode 100755 index 0000000..9aed52c --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf303.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-539720077 +# @用例名称: ltp.scsi_debug.part1.gf303 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf303 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf303 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf304.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf304.sh new file mode 100755 index 0000000..7ef7abc --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf304.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-548216959 +# @用例名称: ltp.scsi_debug.part1.gf304 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf304 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf304 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf305.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf305.sh new file mode 100755 index 0000000..686361e --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf305.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-556852761 +# @用例名称: ltp.scsi_debug.part1.gf305 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf305 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf305 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf306.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf306.sh new file mode 100755 index 0000000..f3bde62 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf306.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-565735334 +# @用例名称: ltp.scsi_debug.part1.gf306 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf306 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf306 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf307.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf307.sh new file mode 100755 index 0000000..60c9334 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf307.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-574507642 +# @用例名称: ltp.scsi_debug.part1.gf307 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf307 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf307 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf308.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf308.sh new file mode 100755 index 0000000..360c673 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf308.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-583256946 +# @用例名称: ltp.scsi_debug.part1.gf308 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf308 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf308 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf309.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf309.sh new file mode 100755 index 0000000..03727af --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf309.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-592003115 +# @用例名称: ltp.scsi_debug.part1.gf309 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf309 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf309 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf310.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf310.sh new file mode 100755 index 0000000..9d0174f --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf310.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-600509765 +# @用例名称: ltp.scsi_debug.part1.gf310 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf310 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf310 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf311.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf311.sh new file mode 100755 index 0000000..01c2b61 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf311.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-609386648 +# @用例名称: ltp.scsi_debug.part1.gf311 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf311 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf311 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf312.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf312.sh new file mode 100755 index 0000000..af0433d --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf312.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-617966686 +# @用例名称: ltp.scsi_debug.part1.gf312 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf312 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf312 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf313.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf313.sh new file mode 100755 index 0000000..9e38d75 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf313.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-626701182 +# @用例名称: ltp.scsi_debug.part1.gf313 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf313 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf313 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf314.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf314.sh new file mode 100755 index 0000000..9b8f0ce --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf314.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-636144576 +# @用例名称: ltp.scsi_debug.part1.gf314 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf314 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf314 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf315.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf315.sh new file mode 100755 index 0000000..f4522ba --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf315.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-644750822 +# @用例名称: ltp.scsi_debug.part1.gf315 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf315 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf315 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf316.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf316.sh new file mode 100755 index 0000000..2dd9dea --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf316.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-653515576 +# @用例名称: ltp.scsi_debug.part1.gf316 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf316 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf316 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf317.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf317.sh new file mode 100755 index 0000000..19b7e9c --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf317.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-662135298 +# @用例名称: ltp.scsi_debug.part1.gf317 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf317 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf317 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf318.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf318.sh new file mode 100755 index 0000000..82c7734 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf318.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-670675751 +# @用例名称: ltp.scsi_debug.part1.gf318 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf318 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf318 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf319.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf319.sh new file mode 100755 index 0000000..1d46e4e --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf319.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-679590435 +# @用例名称: ltp.scsi_debug.part1.gf319 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf319 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf319 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf320.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf320.sh new file mode 100755 index 0000000..1d7281b --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf320.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-688124156 +# @用例名称: ltp.scsi_debug.part1.gf320 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf320 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf320 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf321.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf321.sh new file mode 100755 index 0000000..6033f49 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf321.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-696617963 +# @用例名称: ltp.scsi_debug.part1.gf321 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf321 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf321 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf322.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf322.sh new file mode 100755 index 0000000..1787f53 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf322.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-705830383 +# @用例名称: ltp.scsi_debug.part1.gf322 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf322 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf322 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf323.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf323.sh new file mode 100755 index 0000000..be136ca --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf323.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-714747902 +# @用例名称: ltp.scsi_debug.part1.gf323 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf323 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf323 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf324.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf324.sh new file mode 100755 index 0000000..c08616f --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf324.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-723382793 +# @用例名称: ltp.scsi_debug.part1.gf324 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf324 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf324 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf325.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf325.sh new file mode 100755 index 0000000..8e8f078 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf325.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-731854608 +# @用例名称: ltp.scsi_debug.part1.gf325 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf325 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf325 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf326.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf326.sh new file mode 100755 index 0000000..909b555 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf326.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-740396084 +# @用例名称: ltp.scsi_debug.part1.gf326 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf326 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf326 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf327.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf327.sh new file mode 100755 index 0000000..19b0749 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf327.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-749024241 +# @用例名称: ltp.scsi_debug.part1.gf327 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf327 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf327 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf328.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf328.sh new file mode 100755 index 0000000..0e068d2 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf328.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-757564103 +# @用例名称: ltp.scsi_debug.part1.gf328 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf328 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf328 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf329.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf329.sh new file mode 100755 index 0000000..c4314a4 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf329.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-766349616 +# @用例名称: ltp.scsi_debug.part1.gf329 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf329 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf329 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf330.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf330.sh new file mode 100755 index 0000000..7859397 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf330.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-775163662 +# @用例名称: ltp.scsi_debug.part1.gf330 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf330 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf330 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf701.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf701.sh new file mode 100755 index 0000000..b85ed5c --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf701.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-829317540 +# @用例名称: ltp.scsi_debug.part1.gf701 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf701 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf701 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf702.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf702.sh new file mode 100755 index 0000000..71b09b0 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf702.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-837906285 +# @用例名称: ltp.scsi_debug.part1.gf702 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf702 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf702 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf703.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf703.sh new file mode 100755 index 0000000..ffdd5d6 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf703.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-846537127 +# @用例名称: ltp.scsi_debug.part1.gf703 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf703 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf703 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf704.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf704.sh new file mode 100755 index 0000000..5bb4d37 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf704.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-855192546 +# @用例名称: ltp.scsi_debug.part1.gf704 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf704 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf704 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf705.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf705.sh new file mode 100755 index 0000000..9854dc0 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf705.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-863844017 +# @用例名称: ltp.scsi_debug.part1.gf705 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf705 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf705 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf706.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf706.sh new file mode 100755 index 0000000..c296169 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf706.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-872379020 +# @用例名称: ltp.scsi_debug.part1.gf706 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf706 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf706 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf707.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf707.sh new file mode 100755 index 0000000..38d194f --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf707.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-880970038 +# @用例名称: ltp.scsi_debug.part1.gf707 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf707 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf707 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf708.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf708.sh new file mode 100755 index 0000000..a420687 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf708.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-889517445 +# @用例名称: ltp.scsi_debug.part1.gf708 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf708 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf708 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf709.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf709.sh new file mode 100755 index 0000000..525f926 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf709.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-898299751 +# @用例名称: ltp.scsi_debug.part1.gf709 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf709 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf709 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf710.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf710.sh new file mode 100755 index 0000000..de44819 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf710.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-906854111 +# @用例名称: ltp.scsi_debug.part1.gf710 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf710 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf710 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf711.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf711.sh new file mode 100755 index 0000000..3810115 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf711.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-917049100 +# @用例名称: ltp.scsi_debug.part1.gf711 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf711 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf711 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf712.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf712.sh new file mode 100755 index 0000000..3094cca --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf712.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-925712224 +# @用例名称: ltp.scsi_debug.part1.gf712 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf712 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf712 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf713.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf713.sh new file mode 100755 index 0000000..f2da391 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf713.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-934330262 +# @用例名称: ltp.scsi_debug.part1.gf713 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf713 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf713 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf714.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf714.sh new file mode 100755 index 0000000..6498624 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf714.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-942893449 +# @用例名称: ltp.scsi_debug.part1.gf714 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf714 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf714 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf715.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf715.sh new file mode 100755 index 0000000..90e4bf7 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf715.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-951374972 +# @用例名称: ltp.scsi_debug.part1.gf715 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf715 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf715 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf716.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf716.sh new file mode 100755 index 0000000..6d15b0e --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf716.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-960373523 +# @用例名称: ltp.scsi_debug.part1.gf716 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf716 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf716 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf717.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf717.sh new file mode 100755 index 0000000..3e505f5 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf717.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-969110133 +# @用例名称: ltp.scsi_debug.part1.gf717 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf717 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf717 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf718.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf718.sh new file mode 100755 index 0000000..ec513bd --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf718.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-977794506 +# @用例名称: ltp.scsi_debug.part1.gf718 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf718 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf718 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf719.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf719.sh new file mode 100755 index 0000000..773402b --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf719.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-986487685 +# @用例名称: ltp.scsi_debug.part1.gf719 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf719 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf719 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf720.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf720.sh new file mode 100755 index 0000000..8305771 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf720.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213010-995151219 +# @用例名称: ltp.scsi_debug.part1.gf720 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf720 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf720 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf721.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf721.sh new file mode 100755 index 0000000..dee3ac1 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf721.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-004484056 +# @用例名称: ltp.scsi_debug.part1.gf721 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf721 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf721 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf722.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf722.sh new file mode 100755 index 0000000..79e6dad --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf722.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-013169220 +# @用例名称: ltp.scsi_debug.part1.gf722 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf722 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf722 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf723.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf723.sh new file mode 100755 index 0000000..bad573f --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf723.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-021787609 +# @用例名称: ltp.scsi_debug.part1.gf723 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf723 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf723 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf724.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf724.sh new file mode 100755 index 0000000..005ef7f --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf724.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-030472664 +# @用例名称: ltp.scsi_debug.part1.gf724 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf724 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf724 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf725.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf725.sh new file mode 100755 index 0000000..7717e73 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf725.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-039145034 +# @用例名称: ltp.scsi_debug.part1.gf725 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf725 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf725 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf726.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf726.sh new file mode 100755 index 0000000..8977640 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf726.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-047752693 +# @用例名称: ltp.scsi_debug.part1.gf726 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf726 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf726 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf727.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf727.sh new file mode 100755 index 0000000..7d5cad7 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf727.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-056364891 +# @用例名称: ltp.scsi_debug.part1.gf727 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf727 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf727 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf728.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf728.sh new file mode 100755 index 0000000..0dca328 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf728.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-065412233 +# @用例名称: ltp.scsi_debug.part1.gf728 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf728 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf728 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf729.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf729.sh new file mode 100755 index 0000000..b05b6c3 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf729.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-073971572 +# @用例名称: ltp.scsi_debug.part1.gf729 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf729 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf729 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf730.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf730.sh new file mode 100755 index 0000000..d04299f --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf730.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-082611442 +# @用例名称: ltp.scsi_debug.part1.gf730 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.gf730 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 gf730 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest01.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest01.sh new file mode 100755 index 0000000..ff7ffc6 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest01.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-412399422 +# @用例名称: ltp.scsi_debug.part1.rwtest01 +# @用例级别: 2 +# @用例标签: +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.rwtest01 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 rwtest01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest02.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest02.sh new file mode 100755 index 0000000..6eeab98 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest02.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-421060040 +# @用例名称: ltp.scsi_debug.part1.rwtest02 +# @用例级别: 3 +# @用例标签: +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.rwtest02 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 rwtest02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest03.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest03.sh new file mode 100755 index 0000000..73b3f8c --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest03.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-429757337 +# @用例名称: ltp.scsi_debug.part1.rwtest03 +# @用例级别: 3 +# @用例标签: +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.rwtest03 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 rwtest03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest04.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest04.sh new file mode 100755 index 0000000..6ee5671 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest04.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-438446069 +# @用例名称: ltp.scsi_debug.part1.rwtest04 +# @用例级别: 3 +# @用例标签: +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.rwtest04 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 rwtest04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest05.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest05.sh new file mode 100755 index 0000000..b906446 --- /dev/null +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-447164095 +# @用例名称: ltp.scsi_debug.part1.rwtest05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.scsi_debug.part1.rwtest05 + # @预期结果:1: 用例返回0 + ltp_run_testcase scsi_debug.part1 rwtest05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smack/ltp.smack.smack_file_access.sh b/testcase/smack/ltp.smack.smack_file_access.sh new file mode 100755 index 0000000..22a4518 --- /dev/null +++ b/testcase/smack/ltp.smack.smack_file_access.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-572517695 +# @用例名称: ltp.smack.smack_file_access +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smack.smack_file_access + # @预期结果:1: 用例返回0 + ltp_run_testcase smack smack_file_access + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smack/ltp.smack.smack_set_ambient.sh b/testcase/smack/ltp.smack.smack_set_ambient.sh new file mode 100755 index 0000000..6cd911f --- /dev/null +++ b/testcase/smack/ltp.smack.smack_set_ambient.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-493003704 +# @用例名称: ltp.smack.smack_set_ambient +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smack.smack_set_ambient + # @预期结果:1: 用例返回0 + ltp_run_testcase smack smack_set_ambient + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smack/ltp.smack.smack_set_cipso.sh b/testcase/smack/ltp.smack.smack_set_cipso.sh new file mode 100755 index 0000000..e29a482 --- /dev/null +++ b/testcase/smack/ltp.smack.smack_set_cipso.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-536745527 +# @用例名称: ltp.smack.smack_set_cipso +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smack.smack_set_cipso + # @预期结果:1: 用例返回0 + ltp_run_testcase smack smack_set_cipso + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smack/ltp.smack.smack_set_current.sh b/testcase/smack/ltp.smack.smack_set_current.sh new file mode 100755 index 0000000..bf9a626 --- /dev/null +++ b/testcase/smack/ltp.smack.smack_set_current.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-501656367 +# @用例名称: ltp.smack.smack_set_current +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smack.smack_set_current + # @预期结果:1: 用例返回0 + ltp_run_testcase smack smack_set_current + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smack/ltp.smack.smack_set_direct.sh b/testcase/smack/ltp.smack.smack_set_direct.sh new file mode 100755 index 0000000..ac1ba3b --- /dev/null +++ b/testcase/smack/ltp.smack.smack_set_direct.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-545360309 +# @用例名称: ltp.smack.smack_set_direct +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smack.smack_set_direct + # @预期结果:1: 用例返回0 + ltp_run_testcase smack smack_set_direct + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smack/ltp.smack.smack_set_doi.sh b/testcase/smack/ltp.smack.smack_set_doi.sh new file mode 100755 index 0000000..57b774c --- /dev/null +++ b/testcase/smack/ltp.smack.smack_set_doi.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-510814547 +# @用例名称: ltp.smack.smack_set_doi +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smack.smack_set_doi + # @预期结果:1: 用例返回0 + ltp_run_testcase smack smack_set_doi + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smack/ltp.smack.smack_set_load.sh b/testcase/smack/ltp.smack.smack_set_load.sh new file mode 100755 index 0000000..d349819 --- /dev/null +++ b/testcase/smack/ltp.smack.smack_set_load.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-555218278 +# @用例名称: ltp.smack.smack_set_load +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smack.smack_set_load + # @预期结果:1: 用例返回0 + ltp_run_testcase smack smack_set_load + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smack/ltp.smack.smack_set_netlabel.sh b/testcase/smack/ltp.smack.smack_set_netlabel.sh new file mode 100755 index 0000000..8970ed6 --- /dev/null +++ b/testcase/smack/ltp.smack.smack_set_netlabel.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-519548984 +# @用例名称: ltp.smack.smack_set_netlabel +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smack.smack_set_netlabel + # @预期结果:1: 用例返回0 + ltp_run_testcase smack smack_set_netlabel + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smack/ltp.smack.smack_set_onlycap.sh b/testcase/smack/ltp.smack.smack_set_onlycap.sh new file mode 100755 index 0000000..7ef3857 --- /dev/null +++ b/testcase/smack/ltp.smack.smack_set_onlycap.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-563893073 +# @用例名称: ltp.smack.smack_set_onlycap +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smack.smack_set_onlycap + # @预期结果:1: 用例返回0 + ltp_run_testcase smack smack_set_onlycap + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smack/ltp.smack.smack_set_socket_labels.sh b/testcase/smack/ltp.smack.smack_set_socket_labels.sh new file mode 100755 index 0000000..bb4f1c8 --- /dev/null +++ b/testcase/smack/ltp.smack.smack_set_socket_labels.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-528039894 +# @用例名称: ltp.smack.smack_set_socket_labels +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smack.smack_set_socket_labels + # @预期结果:1: 用例返回0 + ltp_run_testcase smack smack_set_socket_labels + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.access01.sh b/testcase/smoketest/ltp.smoketest.access01.sh new file mode 100755 index 0000000..f405c5b --- /dev/null +++ b/testcase/smoketest/ltp.smoketest.access01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-590006134 +# @用例名称: ltp.smoketest.access01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smoketest.access01 + # @预期结果:1: 用例返回0 + ltp_run_testcase smoketest access01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.chdir01.sh b/testcase/smoketest/ltp.smoketest.chdir01.sh new file mode 100755 index 0000000..cefe461 --- /dev/null +++ b/testcase/smoketest/ltp.smoketest.chdir01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-602597469 +# @用例名称: ltp.smoketest.chdir01 +# @用例级别: 2 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smoketest.chdir01 + # @预期结果:1: 用例返回0 + ltp_run_testcase smoketest chdir01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.df01_sh.sh b/testcase/smoketest/ltp.smoketest.df01_sh.sh new file mode 100755 index 0000000..a585e42 --- /dev/null +++ b/testcase/smoketest/ltp.smoketest.df01_sh.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141851-168068237 +# @用例名称: ltp.smoketest.df01_sh +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smoketest.df01_sh + # @预期结果:1: 用例返回0 + ltp_run_testcase smoketest df01_sh + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.fork01.sh b/testcase/smoketest/ltp.smoketest.fork01.sh new file mode 100755 index 0000000..b64db7c --- /dev/null +++ b/testcase/smoketest/ltp.smoketest.fork01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-613603086 +# @用例名称: ltp.smoketest.fork01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smoketest.fork01 + # @预期结果:1: 用例返回0 + ltp_run_testcase smoketest fork01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.macsec02.sh b/testcase/smoketest/ltp.smoketest.macsec02.sh new file mode 100755 index 0000000..90f1fe3 --- /dev/null +++ b/testcase/smoketest/ltp.smoketest.macsec02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141851-233031485 +# @用例名称: ltp.smoketest.macsec02 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smoketest.macsec02 + # @预期结果:1: 用例返回0 + ltp_run_testcase smoketest macsec02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.ping602.sh b/testcase/smoketest/ltp.smoketest.ping602.sh new file mode 100755 index 0000000..2d2ec66 --- /dev/null +++ b/testcase/smoketest/ltp.smoketest.ping602.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-708401943 +# @用例名称: ltp.smoketest.ping602 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smoketest.ping602 + # @预期结果:1: 用例返回0 + ltp_run_testcase smoketest ping602 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.rename01A.sh b/testcase/smoketest/ltp.smoketest.rename01A.sh new file mode 100755 index 0000000..7c43f0e --- /dev/null +++ b/testcase/smoketest/ltp.smoketest.rename01A.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-674150180 +# @用例名称: ltp.smoketest.rename01A +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smoketest.rename01A + # @预期结果:1: 用例返回0 + ltp_run_testcase smoketest rename01A + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.shell_test01.sh b/testcase/smoketest/ltp.smoketest.shell_test01.sh new file mode 100755 index 0000000..e0ffc9c --- /dev/null +++ b/testcase/smoketest/ltp.smoketest.shell_test01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-691269499 +# @用例名称: ltp.smoketest.shell_test01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smoketest.shell_test01 + # @预期结果:1: 用例返回0 + ltp_run_testcase smoketest shell_test01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.splice02.sh b/testcase/smoketest/ltp.smoketest.splice02.sh new file mode 100755 index 0000000..0bc0fea --- /dev/null +++ b/testcase/smoketest/ltp.smoketest.splice02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-682785130 +# @用例名称: ltp.smoketest.splice02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smoketest.splice02 + # @预期结果:1: 用例返回0 + ltp_run_testcase smoketest splice02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.stat04.sh b/testcase/smoketest/ltp.smoketest.stat04.sh new file mode 100755 index 0000000..6a15f02 --- /dev/null +++ b/testcase/smoketest/ltp.smoketest.stat04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-656885970 +# @用例名称: ltp.smoketest.stat04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smoketest.stat04 + # @预期结果:1: 用例返回0 + ltp_run_testcase smoketest stat04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.symlink01.sh b/testcase/smoketest/ltp.smoketest.symlink01.sh new file mode 100755 index 0000000..ccced47 --- /dev/null +++ b/testcase/smoketest/ltp.smoketest.symlink01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-648146584 +# @用例名称: ltp.smoketest.symlink01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smoketest.symlink01 + # @预期结果:1: 用例返回0 + ltp_run_testcase smoketest symlink01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.time01.sh b/testcase/smoketest/ltp.smoketest.time01.sh new file mode 100755 index 0000000..3164217 --- /dev/null +++ b/testcase/smoketest/ltp.smoketest.time01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-622425087 +# @用例名称: ltp.smoketest.time01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smoketest.time01 + # @预期结果:1: 用例返回0 + ltp_run_testcase smoketest time01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.utime07.sh b/testcase/smoketest/ltp.smoketest.utime07.sh new file mode 100755 index 0000000..a92c988 --- /dev/null +++ b/testcase/smoketest/ltp.smoketest.utime07.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172837-722644026 +# @用例名称: ltp.smoketest.utime07 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smoketest.utime07 + # @预期结果:1: 用例返回0 + ltp_run_testcase smoketest utime07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.wait02.sh b/testcase/smoketest/ltp.smoketest.wait02.sh new file mode 100755 index 0000000..5e8a314 --- /dev/null +++ b/testcase/smoketest/ltp.smoketest.wait02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-631070947 +# @用例名称: ltp.smoketest.wait02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smoketest.wait02 + # @预期结果:1: 用例返回0 + ltp_run_testcase smoketest wait02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.write01.sh b/testcase/smoketest/ltp.smoketest.write01.sh new file mode 100755 index 0000000..e61b189 --- /dev/null +++ b/testcase/smoketest/ltp.smoketest.write01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-639537091 +# @用例名称: ltp.smoketest.write01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.smoketest.write01 + # @预期结果:1: 用例返回0 + ltp_run_testcase smoketest write01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl01.sh new file mode 100755 index 0000000..326edd3 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-530005641 +# @用例名称: ltp.syscalls-ipc.msgctl01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgctl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgctl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl02.sh new file mode 100755 index 0000000..58292eb --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-538618480 +# @用例名称: ltp.syscalls-ipc.msgctl02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgctl02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgctl02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl03.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl03.sh new file mode 100755 index 0000000..7f357bd --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-547214888 +# @用例名称: ltp.syscalls-ipc.msgctl03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgctl03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgctl03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl04.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl04.sh new file mode 100755 index 0000000..1218e42 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-555705238 +# @用例名称: ltp.syscalls-ipc.msgctl04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgctl04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgctl04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl05.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl05.sh new file mode 100755 index 0000000..11e7220 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-564357230 +# @用例名称: ltp.syscalls-ipc.msgctl05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgctl05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgctl05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl06.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl06.sh new file mode 100755 index 0000000..6fcaf43 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-572901461 +# @用例名称: ltp.syscalls-ipc.msgctl06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgctl06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgctl06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl12.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl12.sh new file mode 100755 index 0000000..9b1cc04 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-621044862 +# @用例名称: ltp.syscalls-ipc.msgctl12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgctl12 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgctl12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget01.sh new file mode 100755 index 0000000..c7449ae --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-632555003 +# @用例名称: ltp.syscalls-ipc.msgget01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgget01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgget01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget02.sh new file mode 100755 index 0000000..28b45ab --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-641055762 +# @用例名称: ltp.syscalls-ipc.msgget02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgget02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgget02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget03.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget03.sh new file mode 100755 index 0000000..2b64b36 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-649517608 +# @用例名称: ltp.syscalls-ipc.msgget03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgget03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgget03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget04.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget04.sh new file mode 100755 index 0000000..376dccb --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-657985676 +# @用例名称: ltp.syscalls-ipc.msgget04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgget04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgget04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget05.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget05.sh new file mode 100755 index 0000000..3cb030a --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-666605629 +# @用例名称: ltp.syscalls-ipc.msgget05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgget05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgget05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv01.sh new file mode 100755 index 0000000..6c7bc95 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-677220505 +# @用例名称: ltp.syscalls-ipc.msgrcv01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgrcv01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgrcv01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv02.sh new file mode 100755 index 0000000..dbbd0ec --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-685908364 +# @用例名称: ltp.syscalls-ipc.msgrcv02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgrcv02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgrcv02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv03.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv03.sh new file mode 100755 index 0000000..3d2bd8d --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-694348950 +# @用例名称: ltp.syscalls-ipc.msgrcv03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgrcv03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgrcv03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv05.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv05.sh new file mode 100755 index 0000000..3ea696c --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-702857725 +# @用例名称: ltp.syscalls-ipc.msgrcv05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgrcv05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgrcv05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv06.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv06.sh new file mode 100755 index 0000000..f58cdfa --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-711541376 +# @用例名称: ltp.syscalls-ipc.msgrcv06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgrcv06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgrcv06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv07.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv07.sh new file mode 100755 index 0000000..b24dbcd --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-720055921 +# @用例名称: ltp.syscalls-ipc.msgrcv07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgrcv07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgrcv07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv08.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv08.sh new file mode 100755 index 0000000..008e244 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-728656127 +# @用例名称: ltp.syscalls-ipc.msgrcv08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgrcv08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgrcv08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd01.sh new file mode 100755 index 0000000..14033b6 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-739149245 +# @用例名称: ltp.syscalls-ipc.msgsnd01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgsnd01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgsnd01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd02.sh new file mode 100755 index 0000000..9c78d44 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-749138579 +# @用例名称: ltp.syscalls-ipc.msgsnd02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgsnd02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgsnd02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd05.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd05.sh new file mode 100755 index 0000000..351da52 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-759242449 +# @用例名称: ltp.syscalls-ipc.msgsnd05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgsnd05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgsnd05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd06.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd06.sh new file mode 100755 index 0000000..0f5dc4c --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-769454350 +# @用例名称: ltp.syscalls-ipc.msgsnd06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgsnd06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgsnd06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgstress01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgstress01.sh new file mode 100755 index 0000000..b38ee03 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgstress01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-581463255 +# @用例名称: ltp.syscalls-ipc.msgstress01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.msgstress01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc msgstress01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl01.sh new file mode 100755 index 0000000..5c30f64 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-784136869 +# @用例名称: ltp.syscalls-ipc.semctl01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.semctl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc semctl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl02.sh new file mode 100755 index 0000000..f1b24ba --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-792561937 +# @用例名称: ltp.syscalls-ipc.semctl02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.semctl02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc semctl02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl03.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl03.sh new file mode 100755 index 0000000..4a5b511 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-801410988 +# @用例名称: ltp.syscalls-ipc.semctl03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.semctl03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc semctl03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl04.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl04.sh new file mode 100755 index 0000000..a607fb0 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-810886972 +# @用例名称: ltp.syscalls-ipc.semctl04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.semctl04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc semctl04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl05.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl05.sh new file mode 100755 index 0000000..e6c04b3 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-820573000 +# @用例名称: ltp.syscalls-ipc.semctl05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.semctl05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc semctl05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl06.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl06.sh new file mode 100755 index 0000000..4bf28b3 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-830698078 +# @用例名称: ltp.syscalls-ipc.semctl06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.semctl06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc semctl06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl07.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl07.sh new file mode 100755 index 0000000..c220516 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-840139910 +# @用例名称: ltp.syscalls-ipc.semctl07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.semctl07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc semctl07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl08.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl08.sh new file mode 100755 index 0000000..ef2cf37 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-851801734 +# @用例名称: ltp.syscalls-ipc.semctl08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.semctl08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc semctl08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl09.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl09.sh new file mode 100755 index 0000000..72ea979 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-861446324 +# @用例名称: ltp.syscalls-ipc.semctl09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.semctl09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc semctl09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semget01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semget01.sh new file mode 100755 index 0000000..aa602b0 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semget01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-873632020 +# @用例名称: ltp.syscalls-ipc.semget01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.semget01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc semget01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semget02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semget02.sh new file mode 100755 index 0000000..bc5cfeb --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semget02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-882396032 +# @用例名称: ltp.syscalls-ipc.semget02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.semget02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc semget02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semget05.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semget05.sh new file mode 100755 index 0000000..0fb0e53 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semget05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-902128982 +# @用例名称: ltp.syscalls-ipc.semget05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.semget05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc semget05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semop01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semop01.sh new file mode 100755 index 0000000..d15c39e --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semop01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-921531695 +# @用例名称: ltp.syscalls-ipc.semop01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.semop01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc semop01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semop02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semop02.sh new file mode 100755 index 0000000..70687b6 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semop02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-930140977 +# @用例名称: ltp.syscalls-ipc.semop02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.semop02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc semop02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semop03.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semop03.sh new file mode 100755 index 0000000..7f78438 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semop03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-938859373 +# @用例名称: ltp.syscalls-ipc.semop03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.semop03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc semop03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat01.sh new file mode 100755 index 0000000..e4925fd --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-949397626 +# @用例名称: ltp.syscalls-ipc.shmat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat02.sh new file mode 100755 index 0000000..d59ad4b --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-958008051 +# @用例名称: ltp.syscalls-ipc.shmat02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmat02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat04.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat04.sh new file mode 100755 index 0000000..513d4cc --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat04.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172840-804303109 +# @用例名称: ltp.syscalls-ipc.shmat04 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmat04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmat04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl01.sh new file mode 100755 index 0000000..8884e23 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-968793015 +# @用例名称: ltp.syscalls-ipc.shmctl01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmctl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmctl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl02.sh new file mode 100755 index 0000000..40c0d84 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-977431341 +# @用例名称: ltp.syscalls-ipc.shmctl02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmctl02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmctl02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl03.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl03.sh new file mode 100755 index 0000000..27ed405 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-986109202 +# @用例名称: ltp.syscalls-ipc.shmctl03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmctl03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmctl03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl04.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl04.sh new file mode 100755 index 0000000..acc3bb7 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-994665254 +# @用例名称: ltp.syscalls-ipc.shmctl04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmctl04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmctl04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl05.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl05.sh new file mode 100755 index 0000000..4e2d2fb --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-003465895 +# @用例名称: ltp.syscalls-ipc.shmctl05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmctl05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmctl05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl06.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl06.sh new file mode 100755 index 0000000..e1424d7 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-013213177 +# @用例名称: ltp.syscalls-ipc.shmctl06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmctl06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmctl06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl07.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl07.sh new file mode 100755 index 0000000..654534a --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-021772666 +# @用例名称: ltp.syscalls-ipc.shmctl07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmctl07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmctl07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl08.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl08.sh new file mode 100755 index 0000000..3d0e084 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-030376679 +# @用例名称: ltp.syscalls-ipc.shmctl08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmctl08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmctl08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt01.sh new file mode 100755 index 0000000..954cb73 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-040967901 +# @用例名称: ltp.syscalls-ipc.shmdt01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmdt01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmdt01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt02.sh new file mode 100755 index 0000000..0fa240c --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-049491973 +# @用例名称: ltp.syscalls-ipc.shmdt02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmdt02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmdt02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget02.sh new file mode 100755 index 0000000..2c2c601 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-060109444 +# @用例名称: ltp.syscalls-ipc.shmget02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmget02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmget02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget03.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget03.sh new file mode 100755 index 0000000..69622da --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-071613775 +# @用例名称: ltp.syscalls-ipc.shmget03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmget03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmget03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget04.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget04.sh new file mode 100755 index 0000000..112f8e6 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-080576128 +# @用例名称: ltp.syscalls-ipc.shmget04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmget04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmget04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget05.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget05.sh new file mode 100755 index 0000000..9eb60ce --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-089670417 +# @用例名称: ltp.syscalls-ipc.shmget05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmget05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmget05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget06.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget06.sh new file mode 100755 index 0000000..167f291 --- /dev/null +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-098358347 +# @用例名称: ltp.syscalls-ipc.shmget06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls-ipc.shmget06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls-ipc shmget06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.abort01.sh b/testcase/syscalls/ltp.syscalls.abort01.sh new file mode 100755 index 0000000..c02e658 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.abort01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-719788102 +# @用例名称: ltp.syscalls.abort01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.abort01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls abort01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.accept01.sh b/testcase/syscalls/ltp.syscalls.accept01.sh new file mode 100755 index 0000000..6dfc1c8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.accept01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-730392738 +# @用例名称: ltp.syscalls.accept01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.accept01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls accept01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.accept02.sh b/testcase/syscalls/ltp.syscalls.accept02.sh new file mode 100755 index 0000000..1011401 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.accept02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-738993836 +# @用例名称: ltp.syscalls.accept02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.accept02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls accept02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.accept03.sh b/testcase/syscalls/ltp.syscalls.accept03.sh new file mode 100755 index 0000000..0edeff5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.accept03.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172837-797107847 +# @用例名称: ltp.syscalls.accept03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.accept03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls accept03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.accept4_01.sh b/testcase/syscalls/ltp.syscalls.accept4_01.sh new file mode 100755 index 0000000..811f4cb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.accept4_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-749467036 +# @用例名称: ltp.syscalls.accept4_01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.accept4_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls accept4_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.access01.sh b/testcase/syscalls/ltp.syscalls.access01.sh new file mode 100755 index 0000000..fa0d008 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.access01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-760120524 +# @用例名称: ltp.syscalls.access01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.access01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls access01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.access02.sh b/testcase/syscalls/ltp.syscalls.access02.sh new file mode 100755 index 0000000..6e2aba1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.access02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-768863016 +# @用例名称: ltp.syscalls.access02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.access02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls access02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.access03.sh b/testcase/syscalls/ltp.syscalls.access03.sh new file mode 100755 index 0000000..48a3013 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.access03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-777544864 +# @用例名称: ltp.syscalls.access03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.access03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls access03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.access04.sh b/testcase/syscalls/ltp.syscalls.access04.sh new file mode 100755 index 0000000..9e5dd82 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.access04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-786075740 +# @用例名称: ltp.syscalls.access04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.access04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls access04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.acct01.sh b/testcase/syscalls/ltp.syscalls.acct01.sh new file mode 100755 index 0000000..fd1209c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.acct01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-796345299 +# @用例名称: ltp.syscalls.acct01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.acct01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls acct01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.acct02.sh b/testcase/syscalls/ltp.syscalls.acct02.sh new file mode 100755 index 0000000..aca8bd4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.acct02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-804947549 +# @用例名称: ltp.syscalls.acct02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.acct02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls acct02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.add_key01.sh b/testcase/syscalls/ltp.syscalls.add_key01.sh new file mode 100755 index 0000000..3368796 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.add_key01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-815341400 +# @用例名称: ltp.syscalls.add_key01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.add_key01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls add_key01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.add_key02.sh b/testcase/syscalls/ltp.syscalls.add_key02.sh new file mode 100755 index 0000000..302d5cf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.add_key02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-823795924 +# @用例名称: ltp.syscalls.add_key02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.add_key02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls add_key02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.add_key03.sh b/testcase/syscalls/ltp.syscalls.add_key03.sh new file mode 100755 index 0000000..1befeed --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.add_key03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-832375520 +# @用例名称: ltp.syscalls.add_key03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.add_key03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls add_key03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.add_key04.sh b/testcase/syscalls/ltp.syscalls.add_key04.sh new file mode 100755 index 0000000..1f97c5a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.add_key04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-841081834 +# @用例名称: ltp.syscalls.add_key04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.add_key04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls add_key04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.add_key05.sh b/testcase/syscalls/ltp.syscalls.add_key05.sh new file mode 100755 index 0000000..906fbf5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.add_key05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-849819056 +# @用例名称: ltp.syscalls.add_key05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.add_key05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls add_key05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.adjtimex01.sh b/testcase/syscalls/ltp.syscalls.adjtimex01.sh new file mode 100755 index 0000000..4523778 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.adjtimex01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-860257752 +# @用例名称: ltp.syscalls.adjtimex01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.adjtimex01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls adjtimex01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.adjtimex02.sh b/testcase/syscalls/ltp.syscalls.adjtimex02.sh new file mode 100755 index 0000000..760eca6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.adjtimex02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-868864961 +# @用例名称: ltp.syscalls.adjtimex02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.adjtimex02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls adjtimex02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.adjtimex03.sh b/testcase/syscalls/ltp.syscalls.adjtimex03.sh new file mode 100755 index 0000000..0cfff23 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.adjtimex03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-878590582 +# @用例名称: ltp.syscalls.adjtimex03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.adjtimex03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls adjtimex03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.alarm02.sh b/testcase/syscalls/ltp.syscalls.alarm02.sh new file mode 100755 index 0000000..4454da8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.alarm02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-891608976 +# @用例名称: ltp.syscalls.alarm02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.alarm02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls alarm02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.alarm03.sh b/testcase/syscalls/ltp.syscalls.alarm03.sh new file mode 100755 index 0000000..2fd0fd4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.alarm03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-900379410 +# @用例名称: ltp.syscalls.alarm03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.alarm03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls alarm03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.alarm05.sh b/testcase/syscalls/ltp.syscalls.alarm05.sh new file mode 100755 index 0000000..70b1934 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.alarm05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-909021855 +# @用例名称: ltp.syscalls.alarm05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.alarm05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls alarm05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.alarm06.sh b/testcase/syscalls/ltp.syscalls.alarm06.sh new file mode 100755 index 0000000..386ae8e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.alarm06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-917627480 +# @用例名称: ltp.syscalls.alarm06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.alarm06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls alarm06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.alarm07.sh b/testcase/syscalls/ltp.syscalls.alarm07.sh new file mode 100755 index 0000000..0ff137f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.alarm07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-926198431 +# @用例名称: ltp.syscalls.alarm07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.alarm07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls alarm07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.arch_prctl01.sh b/testcase/syscalls/ltp.syscalls.arch_prctl01.sh new file mode 100755 index 0000000..90afe46 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.arch_prctl01.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172837-869723872 +# @用例名称: ltp.syscalls.arch_prctl01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.arch_prctl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls arch_prctl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.bind01.sh b/testcase/syscalls/ltp.syscalls.bind01.sh new file mode 100755 index 0000000..a6af116 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.bind01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-936791275 +# @用例名称: ltp.syscalls.bind01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.bind01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls bind01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.bind02.sh b/testcase/syscalls/ltp.syscalls.bind02.sh new file mode 100755 index 0000000..7dbbf64 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.bind02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-945345474 +# @用例名称: ltp.syscalls.bind02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.bind02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls bind02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.bind03.sh b/testcase/syscalls/ltp.syscalls.bind03.sh new file mode 100755 index 0000000..5801cda --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.bind03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-953878153 +# @用例名称: ltp.syscalls.bind03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.bind03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls bind03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.bind04.sh b/testcase/syscalls/ltp.syscalls.bind04.sh new file mode 100755 index 0000000..c0ca486 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.bind04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-962397146 +# @用例名称: ltp.syscalls.bind04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.bind04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls bind04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.bind05.sh b/testcase/syscalls/ltp.syscalls.bind05.sh new file mode 100755 index 0000000..94ba68d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.bind05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-971122786 +# @用例名称: ltp.syscalls.bind05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.bind05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls bind05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.bind06.sh b/testcase/syscalls/ltp.syscalls.bind06.sh new file mode 100755 index 0000000..30cefb1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.bind06.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-979905714 +# @用例名称: ltp.syscalls.bind06 +# @用例级别: 3 +# @用例标签: +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.bind06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls bind06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.bpf_map01.sh b/testcase/syscalls/ltp.syscalls.bpf_map01.sh new file mode 100755 index 0000000..2d1dd29 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.bpf_map01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-990248541 +# @用例名称: ltp.syscalls.bpf_map01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.bpf_map01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls bpf_map01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.bpf_prog01.sh b/testcase/syscalls/ltp.syscalls.bpf_prog01.sh new file mode 100755 index 0000000..18e5783 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.bpf_prog01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213011-998919067 +# @用例名称: ltp.syscalls.bpf_prog01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.bpf_prog01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls bpf_prog01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.bpf_prog02.sh b/testcase/syscalls/ltp.syscalls.bpf_prog02.sh new file mode 100755 index 0000000..7706aa6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.bpf_prog02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-007703698 +# @用例名称: ltp.syscalls.bpf_prog02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.bpf_prog02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls bpf_prog02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.bpf_prog03.sh b/testcase/syscalls/ltp.syscalls.bpf_prog03.sh new file mode 100755 index 0000000..c524729 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.bpf_prog03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-016183307 +# @用例名称: ltp.syscalls.bpf_prog03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.bpf_prog03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls bpf_prog03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.bpf_prog04.sh b/testcase/syscalls/ltp.syscalls.bpf_prog04.sh new file mode 100755 index 0000000..34d522b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.bpf_prog04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-025105506 +# @用例名称: ltp.syscalls.bpf_prog04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.bpf_prog04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls bpf_prog04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.bpf_prog05.sh b/testcase/syscalls/ltp.syscalls.bpf_prog05.sh new file mode 100755 index 0000000..3cc6483 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.bpf_prog05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-033811980 +# @用例名称: ltp.syscalls.bpf_prog05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.bpf_prog05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls bpf_prog05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.bpf_prog06.sh b/testcase/syscalls/ltp.syscalls.bpf_prog06.sh new file mode 100755 index 0000000..ba06c27 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.bpf_prog06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141851-361729557 +# @用例名称: ltp.syscalls.bpf_prog06 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.bpf_prog06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls bpf_prog06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.bpf_prog07.sh b/testcase/syscalls/ltp.syscalls.bpf_prog07.sh new file mode 100755 index 0000000..a3807a8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.bpf_prog07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141851-426202344 +# @用例名称: ltp.syscalls.bpf_prog07 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.bpf_prog07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls bpf_prog07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.brk01.sh b/testcase/syscalls/ltp.syscalls.brk01.sh new file mode 100755 index 0000000..87f59e9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.brk01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-045000279 +# @用例名称: ltp.syscalls.brk01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.brk01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls brk01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.brk02.sh b/testcase/syscalls/ltp.syscalls.brk02.sh new file mode 100755 index 0000000..fb0666e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.brk02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-053541283 +# @用例名称: ltp.syscalls.brk02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.brk02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls brk02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.cacheflush01.sh b/testcase/syscalls/ltp.syscalls.cacheflush01.sh new file mode 100755 index 0000000..e87190f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.cacheflush01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-120216907 +# @用例名称: ltp.syscalls.cacheflush01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.cacheflush01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls cacheflush01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.capget01.sh b/testcase/syscalls/ltp.syscalls.capget01.sh new file mode 100755 index 0000000..07a54ed --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.capget01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-064343369 +# @用例名称: ltp.syscalls.capget01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.capget01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls capget01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.capget02.sh b/testcase/syscalls/ltp.syscalls.capget02.sh new file mode 100755 index 0000000..9a8b2d2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.capget02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-073075792 +# @用例名称: ltp.syscalls.capget02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.capget02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls capget02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.capset01.sh b/testcase/syscalls/ltp.syscalls.capset01.sh new file mode 100755 index 0000000..6ef2990 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.capset01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-083748547 +# @用例名称: ltp.syscalls.capset01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.capset01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls capset01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.capset02.sh b/testcase/syscalls/ltp.syscalls.capset02.sh new file mode 100755 index 0000000..1def0c2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.capset02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-092353811 +# @用例名称: ltp.syscalls.capset02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.capset02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls capset02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.capset03.sh b/testcase/syscalls/ltp.syscalls.capset03.sh new file mode 100755 index 0000000..b301d74 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.capset03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-101005123 +# @用例名称: ltp.syscalls.capset03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.capset03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls capset03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.capset04.sh b/testcase/syscalls/ltp.syscalls.capset04.sh new file mode 100755 index 0000000..55af68e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.capset04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-109605628 +# @用例名称: ltp.syscalls.capset04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.capset04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls capset04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chdir01.sh b/testcase/syscalls/ltp.syscalls.chdir01.sh new file mode 100755 index 0000000..6051841 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chdir01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-130608125 +# @用例名称: ltp.syscalls.chdir01 +# @用例级别: 2 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chdir01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chdir01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chdir01A.sh b/testcase/syscalls/ltp.syscalls.chdir01A.sh new file mode 100755 index 0000000..f8192da --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chdir01A.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-144534188 +# @用例名称: ltp.syscalls.chdir01A +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chdir01A + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chdir01A + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chdir04.sh b/testcase/syscalls/ltp.syscalls.chdir04.sh new file mode 100755 index 0000000..dc85877 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chdir04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-153074069 +# @用例名称: ltp.syscalls.chdir04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chdir04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chdir04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chmod01.sh b/testcase/syscalls/ltp.syscalls.chmod01.sh new file mode 100755 index 0000000..12f4475 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chmod01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-163750050 +# @用例名称: ltp.syscalls.chmod01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chmod01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chmod01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chmod01A.sh b/testcase/syscalls/ltp.syscalls.chmod01A.sh new file mode 100755 index 0000000..09e2096 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chmod01A.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-172377536 +# @用例名称: ltp.syscalls.chmod01A +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chmod01A + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chmod01A + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chmod03.sh b/testcase/syscalls/ltp.syscalls.chmod03.sh new file mode 100755 index 0000000..0710b56 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chmod03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-181224523 +# @用例名称: ltp.syscalls.chmod03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chmod03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chmod03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chmod05.sh b/testcase/syscalls/ltp.syscalls.chmod05.sh new file mode 100755 index 0000000..df5888e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chmod05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-189916270 +# @用例名称: ltp.syscalls.chmod05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chmod05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chmod05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chmod06.sh b/testcase/syscalls/ltp.syscalls.chmod06.sh new file mode 100755 index 0000000..0cbfb40 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chmod06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-198474156 +# @用例名称: ltp.syscalls.chmod06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chmod06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chmod06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chmod07.sh b/testcase/syscalls/ltp.syscalls.chmod07.sh new file mode 100755 index 0000000..e30d868 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chmod07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-207065826 +# @用例名称: ltp.syscalls.chmod07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chmod07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chmod07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chown01.sh b/testcase/syscalls/ltp.syscalls.chown01.sh new file mode 100755 index 0000000..ab76da8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chown01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-217705357 +# @用例名称: ltp.syscalls.chown01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chown01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chown01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chown01_16.sh b/testcase/syscalls/ltp.syscalls.chown01_16.sh new file mode 100755 index 0000000..5ed6836 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chown01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-226314921 +# @用例名称: ltp.syscalls.chown01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chown01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chown01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chown02.sh b/testcase/syscalls/ltp.syscalls.chown02.sh new file mode 100755 index 0000000..bd2b5e3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chown02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-234941465 +# @用例名称: ltp.syscalls.chown02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chown02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chown02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chown02_16.sh b/testcase/syscalls/ltp.syscalls.chown02_16.sh new file mode 100755 index 0000000..573e7a1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chown02_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-243459156 +# @用例名称: ltp.syscalls.chown02_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chown02_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chown02_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chown03.sh b/testcase/syscalls/ltp.syscalls.chown03.sh new file mode 100755 index 0000000..dd8d6c5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chown03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-252028253 +# @用例名称: ltp.syscalls.chown03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chown03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chown03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chown03_16.sh b/testcase/syscalls/ltp.syscalls.chown03_16.sh new file mode 100755 index 0000000..fedf705 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chown03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-260577884 +# @用例名称: ltp.syscalls.chown03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chown03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chown03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chown04.sh b/testcase/syscalls/ltp.syscalls.chown04.sh new file mode 100755 index 0000000..1fb71b0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chown04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-269072532 +# @用例名称: ltp.syscalls.chown04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chown04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chown04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chown04_16.sh b/testcase/syscalls/ltp.syscalls.chown04_16.sh new file mode 100755 index 0000000..f8a4ae0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chown04_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-277569915 +# @用例名称: ltp.syscalls.chown04_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chown04_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chown04_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chown05.sh b/testcase/syscalls/ltp.syscalls.chown05.sh new file mode 100755 index 0000000..7846590 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chown05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-286067909 +# @用例名称: ltp.syscalls.chown05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chown05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chown05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chown05_16.sh b/testcase/syscalls/ltp.syscalls.chown05_16.sh new file mode 100755 index 0000000..7196471 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chown05_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-294722486 +# @用例名称: ltp.syscalls.chown05_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chown05_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chown05_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chroot01.sh b/testcase/syscalls/ltp.syscalls.chroot01.sh new file mode 100755 index 0000000..3118e92 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chroot01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-305261459 +# @用例名称: ltp.syscalls.chroot01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chroot01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chroot01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chroot02.sh b/testcase/syscalls/ltp.syscalls.chroot02.sh new file mode 100755 index 0000000..3a3c708 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chroot02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-317742057 +# @用例名称: ltp.syscalls.chroot02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chroot02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chroot02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chroot03.sh b/testcase/syscalls/ltp.syscalls.chroot03.sh new file mode 100755 index 0000000..fbef28b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chroot03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-326190448 +# @用例名称: ltp.syscalls.chroot03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chroot03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chroot03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chroot04.sh b/testcase/syscalls/ltp.syscalls.chroot04.sh new file mode 100755 index 0000000..0202fab --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chroot04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-334696487 +# @用例名称: ltp.syscalls.chroot04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chroot04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chroot04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clock_adjtime01.sh b/testcase/syscalls/ltp.syscalls.clock_adjtime01.sh new file mode 100755 index 0000000..65ef9fb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clock_adjtime01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-345192751 +# @用例名称: ltp.syscalls.clock_adjtime01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clock_adjtime01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clock_adjtime01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clock_adjtime02.sh b/testcase/syscalls/ltp.syscalls.clock_adjtime02.sh new file mode 100755 index 0000000..24312e6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clock_adjtime02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-355368486 +# @用例名称: ltp.syscalls.clock_adjtime02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clock_adjtime02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clock_adjtime02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clock_getres01.sh b/testcase/syscalls/ltp.syscalls.clock_getres01.sh new file mode 100755 index 0000000..f34acc4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clock_getres01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-369766912 +# @用例名称: ltp.syscalls.clock_getres01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clock_getres01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clock_getres01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clock_gettime01.sh b/testcase/syscalls/ltp.syscalls.clock_gettime01.sh new file mode 100755 index 0000000..2e9e542 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clock_gettime01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-416511685 +# @用例名称: ltp.syscalls.clock_gettime01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clock_gettime01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clock_gettime01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clock_gettime02.sh b/testcase/syscalls/ltp.syscalls.clock_gettime02.sh new file mode 100755 index 0000000..c5ab20f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clock_gettime02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-424981316 +# @用例名称: ltp.syscalls.clock_gettime02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clock_gettime02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clock_gettime02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clock_gettime03.sh b/testcase/syscalls/ltp.syscalls.clock_gettime03.sh new file mode 100755 index 0000000..99a7b43 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clock_gettime03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-433640321 +# @用例名称: ltp.syscalls.clock_gettime03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clock_gettime03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clock_gettime03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clock_gettime04.sh b/testcase/syscalls/ltp.syscalls.clock_gettime04.sh new file mode 100755 index 0000000..aa9b7fa --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clock_gettime04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-442524138 +# @用例名称: ltp.syscalls.clock_gettime04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clock_gettime04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clock_gettime04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clock_nanosleep01.sh b/testcase/syscalls/ltp.syscalls.clock_nanosleep01.sh new file mode 100755 index 0000000..f9ce466 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clock_nanosleep01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-378502801 +# @用例名称: ltp.syscalls.clock_nanosleep01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clock_nanosleep01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clock_nanosleep01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clock_nanosleep02.sh b/testcase/syscalls/ltp.syscalls.clock_nanosleep02.sh new file mode 100755 index 0000000..6177468 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clock_nanosleep02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-387144524 +# @用例名称: ltp.syscalls.clock_nanosleep02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clock_nanosleep02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clock_nanosleep02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clock_nanosleep03.sh b/testcase/syscalls/ltp.syscalls.clock_nanosleep03.sh new file mode 100755 index 0000000..fc6e7d9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clock_nanosleep03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-395722879 +# @用例名称: ltp.syscalls.clock_nanosleep03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clock_nanosleep03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clock_nanosleep03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clock_nanosleep04.sh b/testcase/syscalls/ltp.syscalls.clock_nanosleep04.sh new file mode 100755 index 0000000..41c3656 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clock_nanosleep04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-404308156 +# @用例名称: ltp.syscalls.clock_nanosleep04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clock_nanosleep04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clock_nanosleep04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clock_settime01.sh b/testcase/syscalls/ltp.syscalls.clock_settime01.sh new file mode 100755 index 0000000..cb026ed --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clock_settime01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-462030053 +# @用例名称: ltp.syscalls.clock_settime01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clock_settime01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clock_settime01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clock_settime02.sh b/testcase/syscalls/ltp.syscalls.clock_settime02.sh new file mode 100755 index 0000000..071e29f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clock_settime02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-470668320 +# @用例名称: ltp.syscalls.clock_settime02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clock_settime02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clock_settime02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clock_settime03.sh b/testcase/syscalls/ltp.syscalls.clock_settime03.sh new file mode 100755 index 0000000..4f324e9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clock_settime03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-479214694 +# @用例名称: ltp.syscalls.clock_settime03 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clock_settime03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clock_settime03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clone01.sh b/testcase/syscalls/ltp.syscalls.clone01.sh new file mode 100755 index 0000000..2565f18 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clone01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-489842765 +# @用例名称: ltp.syscalls.clone01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clone01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clone01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clone02.sh b/testcase/syscalls/ltp.syscalls.clone02.sh new file mode 100755 index 0000000..89a7043 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clone02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-498405219 +# @用例名称: ltp.syscalls.clone02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clone02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clone02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clone03.sh b/testcase/syscalls/ltp.syscalls.clone03.sh new file mode 100755 index 0000000..4e3847f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clone03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-507072801 +# @用例名称: ltp.syscalls.clone03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clone03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clone03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clone04.sh b/testcase/syscalls/ltp.syscalls.clone04.sh new file mode 100755 index 0000000..feb011c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clone04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-515749288 +# @用例名称: ltp.syscalls.clone04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clone04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clone04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clone05.sh b/testcase/syscalls/ltp.syscalls.clone05.sh new file mode 100755 index 0000000..82353b4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clone05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-524453549 +# @用例名称: ltp.syscalls.clone05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clone05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clone05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clone06.sh b/testcase/syscalls/ltp.syscalls.clone06.sh new file mode 100755 index 0000000..3e9eaaa --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clone06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-533141969 +# @用例名称: ltp.syscalls.clone06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clone06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clone06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clone07.sh b/testcase/syscalls/ltp.syscalls.clone07.sh new file mode 100755 index 0000000..4ff3e0e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clone07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-541815502 +# @用例名称: ltp.syscalls.clone07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clone07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clone07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clone08.sh b/testcase/syscalls/ltp.syscalls.clone08.sh new file mode 100755 index 0000000..66d2718 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clone08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-550389027 +# @用例名称: ltp.syscalls.clone08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clone08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clone08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clone09.sh b/testcase/syscalls/ltp.syscalls.clone09.sh new file mode 100755 index 0000000..4ec021b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clone09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-559025230 +# @用例名称: ltp.syscalls.clone09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clone09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clone09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clone301.sh b/testcase/syscalls/ltp.syscalls.clone301.sh new file mode 100755 index 0000000..a5d3e09 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clone301.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-569676454 +# @用例名称: ltp.syscalls.clone301 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clone301 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clone301 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clone302.sh b/testcase/syscalls/ltp.syscalls.clone302.sh new file mode 100755 index 0000000..0a1053a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clone302.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-578404428 +# @用例名称: ltp.syscalls.clone302 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clone302 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clone302 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.clone303.sh b/testcase/syscalls/ltp.syscalls.clone303.sh new file mode 100755 index 0000000..a1458d8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.clone303.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172837-945897448 +# @用例名称: ltp.syscalls.clone303 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.clone303 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls clone303 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.close01.sh b/testcase/syscalls/ltp.syscalls.close01.sh new file mode 100755 index 0000000..e8e562c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.close01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-588814662 +# @用例名称: ltp.syscalls.close01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.close01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls close01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.close02.sh b/testcase/syscalls/ltp.syscalls.close02.sh new file mode 100755 index 0000000..b82f973 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.close02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-597397854 +# @用例名称: ltp.syscalls.close02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.close02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls close02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.close_range01.sh b/testcase/syscalls/ltp.syscalls.close_range01.sh new file mode 100755 index 0000000..b619a63 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.close_range01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-607868521 +# @用例名称: ltp.syscalls.close_range01 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.close_range01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls close_range01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.close_range02.sh b/testcase/syscalls/ltp.syscalls.close_range02.sh new file mode 100755 index 0000000..208a954 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.close_range02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-616608488 +# @用例名称: ltp.syscalls.close_range02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.close_range02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls close_range02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.confstr01.sh b/testcase/syscalls/ltp.syscalls.confstr01.sh new file mode 100755 index 0000000..b4c2616 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.confstr01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-629014956 +# @用例名称: ltp.syscalls.confstr01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.confstr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls confstr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.connect01.sh b/testcase/syscalls/ltp.syscalls.connect01.sh new file mode 100755 index 0000000..2194199 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.connect01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-639591350 +# @用例名称: ltp.syscalls.connect01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.connect01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls connect01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.connect02.sh b/testcase/syscalls/ltp.syscalls.connect02.sh new file mode 100755 index 0000000..b1f1b3b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.connect02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-648181887 +# @用例名称: ltp.syscalls.connect02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.connect02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls connect02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.copy_file_range01.sh b/testcase/syscalls/ltp.syscalls.copy_file_range01.sh new file mode 100755 index 0000000..b64cd52 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.copy_file_range01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-389222936 +# @用例名称: ltp.syscalls.copy_file_range01 +# @用例级别: 2 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.copy_file_range01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls copy_file_range01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.copy_file_range02.sh b/testcase/syscalls/ltp.syscalls.copy_file_range02.sh new file mode 100755 index 0000000..c2209c2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.copy_file_range02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-397796971 +# @用例名称: ltp.syscalls.copy_file_range02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.copy_file_range02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls copy_file_range02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.copy_file_range03.sh b/testcase/syscalls/ltp.syscalls.copy_file_range03.sh new file mode 100755 index 0000000..c113040 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.copy_file_range03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-406369505 +# @用例名称: ltp.syscalls.copy_file_range03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.copy_file_range03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls copy_file_range03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.creat01.sh b/testcase/syscalls/ltp.syscalls.creat01.sh new file mode 100755 index 0000000..e3e20ea --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.creat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-658852798 +# @用例名称: ltp.syscalls.creat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.creat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls creat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.creat03.sh b/testcase/syscalls/ltp.syscalls.creat03.sh new file mode 100755 index 0000000..af80c00 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.creat03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-667524437 +# @用例名称: ltp.syscalls.creat03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.creat03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls creat03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.creat04.sh b/testcase/syscalls/ltp.syscalls.creat04.sh new file mode 100755 index 0000000..203bafe --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.creat04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-676039433 +# @用例名称: ltp.syscalls.creat04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.creat04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls creat04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.creat05.sh b/testcase/syscalls/ltp.syscalls.creat05.sh new file mode 100755 index 0000000..57b4619 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.creat05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-684675475 +# @用例名称: ltp.syscalls.creat05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.creat05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls creat05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.creat06.sh b/testcase/syscalls/ltp.syscalls.creat06.sh new file mode 100755 index 0000000..b3ffaa4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.creat06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-693299015 +# @用例名称: ltp.syscalls.creat06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.creat06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls creat06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.creat07.sh b/testcase/syscalls/ltp.syscalls.creat07.sh new file mode 100755 index 0000000..813877b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.creat07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-701877980 +# @用例名称: ltp.syscalls.creat07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.creat07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls creat07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.creat08.sh b/testcase/syscalls/ltp.syscalls.creat08.sh new file mode 100755 index 0000000..1d93f7a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.creat08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-714387672 +# @用例名称: ltp.syscalls.creat08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.creat08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls creat08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.creat09.sh b/testcase/syscalls/ltp.syscalls.creat09.sh new file mode 100755 index 0000000..47d60a6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.creat09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-722912747 +# @用例名称: ltp.syscalls.creat09 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.creat09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls creat09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.delete_module01.sh b/testcase/syscalls/ltp.syscalls.delete_module01.sh new file mode 100755 index 0000000..bd49315 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.delete_module01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-734477521 +# @用例名称: ltp.syscalls.delete_module01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.delete_module01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls delete_module01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.delete_module02.sh b/testcase/syscalls/ltp.syscalls.delete_module02.sh new file mode 100755 index 0000000..af5c1c9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.delete_module02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-743062757 +# @用例名称: ltp.syscalls.delete_module02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.delete_module02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls delete_module02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.delete_module03.sh b/testcase/syscalls/ltp.syscalls.delete_module03.sh new file mode 100755 index 0000000..24c0d6a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.delete_module03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-751566963 +# @用例名称: ltp.syscalls.delete_module03 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.delete_module03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls delete_module03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dirtyc0w.sh b/testcase/syscalls/ltp.syscalls.dirtyc0w.sh new file mode 100755 index 0000000..b6a15ae --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dirtyc0w.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-328304692 +# @用例名称: ltp.syscalls.dirtyc0w +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dirtyc0w + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dirtyc0w + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dirtyc0w_shmem.sh b/testcase/syscalls/ltp.syscalls.dirtyc0w_shmem.sh new file mode 100755 index 0000000..71f1022 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dirtyc0w_shmem.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141852-789277645 +# @用例名称: ltp.syscalls.dirtyc0w_shmem +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dirtyc0w_shmem + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dirtyc0w_shmem + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dirtypipe.sh b/testcase/syscalls/ltp.syscalls.dirtypipe.sh new file mode 100755 index 0000000..e2af64f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dirtypipe.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141852-852976126 +# @用例名称: ltp.syscalls.dirtypipe +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dirtypipe + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dirtypipe + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dup01.sh b/testcase/syscalls/ltp.syscalls.dup01.sh new file mode 100755 index 0000000..7d34a5a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dup01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-763399558 +# @用例名称: ltp.syscalls.dup01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dup01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dup01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dup02.sh b/testcase/syscalls/ltp.syscalls.dup02.sh new file mode 100755 index 0000000..b1d9c22 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dup02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-772094381 +# @用例名称: ltp.syscalls.dup02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dup02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dup02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dup03.sh b/testcase/syscalls/ltp.syscalls.dup03.sh new file mode 100755 index 0000000..cdb23ad --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dup03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-780705977 +# @用例名称: ltp.syscalls.dup03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dup03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dup03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dup04.sh b/testcase/syscalls/ltp.syscalls.dup04.sh new file mode 100755 index 0000000..08dfdc8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dup04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-791058803 +# @用例名称: ltp.syscalls.dup04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dup04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dup04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dup05.sh b/testcase/syscalls/ltp.syscalls.dup05.sh new file mode 100755 index 0000000..f2b32d9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dup05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-799527792 +# @用例名称: ltp.syscalls.dup05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dup05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dup05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dup06.sh b/testcase/syscalls/ltp.syscalls.dup06.sh new file mode 100755 index 0000000..48c0c7a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dup06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-808047347 +# @用例名称: ltp.syscalls.dup06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dup06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dup06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dup07.sh b/testcase/syscalls/ltp.syscalls.dup07.sh new file mode 100755 index 0000000..fa020ef --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dup07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-816666136 +# @用例名称: ltp.syscalls.dup07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dup07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dup07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dup201.sh b/testcase/syscalls/ltp.syscalls.dup201.sh new file mode 100755 index 0000000..cbf60ce --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dup201.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-827126123 +# @用例名称: ltp.syscalls.dup201 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dup201 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dup201 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dup202.sh b/testcase/syscalls/ltp.syscalls.dup202.sh new file mode 100755 index 0000000..f201ccb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dup202.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-835713514 +# @用例名称: ltp.syscalls.dup202 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dup202 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dup202 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dup203.sh b/testcase/syscalls/ltp.syscalls.dup203.sh new file mode 100755 index 0000000..2627395 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dup203.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-844199756 +# @用例名称: ltp.syscalls.dup203 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dup203 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dup203 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dup204.sh b/testcase/syscalls/ltp.syscalls.dup204.sh new file mode 100755 index 0000000..199e985 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dup204.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-852775155 +# @用例名称: ltp.syscalls.dup204 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dup204 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dup204 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dup205.sh b/testcase/syscalls/ltp.syscalls.dup205.sh new file mode 100755 index 0000000..cc2c9fc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dup205.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-863373660 +# @用例名称: ltp.syscalls.dup205 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dup205 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dup205 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dup206.sh b/testcase/syscalls/ltp.syscalls.dup206.sh new file mode 100755 index 0000000..17b9b8a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dup206.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-871890029 +# @用例名称: ltp.syscalls.dup206 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dup206 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dup206 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dup207.sh b/testcase/syscalls/ltp.syscalls.dup207.sh new file mode 100755 index 0000000..08c4078 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dup207.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-880535799 +# @用例名称: ltp.syscalls.dup207 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dup207 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dup207 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dup3_01.sh b/testcase/syscalls/ltp.syscalls.dup3_01.sh new file mode 100755 index 0000000..e8685c1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dup3_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-891002188 +# @用例名称: ltp.syscalls.dup3_01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dup3_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dup3_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.dup3_02.sh b/testcase/syscalls/ltp.syscalls.dup3_02.sh new file mode 100755 index 0000000..34515f2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.dup3_02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-899485494 +# @用例名称: ltp.syscalls.dup3_02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.dup3_02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls dup3_02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll01.sh b/testcase/syscalls/ltp.syscalls.epoll01.sh new file mode 100755 index 0000000..49009f0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-944335340 +# @用例名称: ltp.syscalls.epoll01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_create01.sh b/testcase/syscalls/ltp.syscalls.epoll_create01.sh new file mode 100755 index 0000000..fb1373b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_create01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-910045878 +# @用例名称: ltp.syscalls.epoll_create01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_create01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_create01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_create02.sh b/testcase/syscalls/ltp.syscalls.epoll_create02.sh new file mode 100755 index 0000000..b5bb061 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_create02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-918588785 +# @用例名称: ltp.syscalls.epoll_create02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_create02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_create02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_create1_01.sh b/testcase/syscalls/ltp.syscalls.epoll_create1_01.sh new file mode 100755 index 0000000..491bc09 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_create1_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-927171148 +# @用例名称: ltp.syscalls.epoll_create1_01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_create1_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_create1_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_create1_02.sh b/testcase/syscalls/ltp.syscalls.epoll_create1_02.sh new file mode 100755 index 0000000..be5a282 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_create1_02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-935717432 +# @用例名称: ltp.syscalls.epoll_create1_02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_create1_02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_create1_02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_ctl01.sh b/testcase/syscalls/ltp.syscalls.epoll_ctl01.sh new file mode 100755 index 0000000..7f10d19 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_ctl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-952930827 +# @用例名称: ltp.syscalls.epoll_ctl01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_ctl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_ctl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_ctl02.sh b/testcase/syscalls/ltp.syscalls.epoll_ctl02.sh new file mode 100755 index 0000000..ed816c1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_ctl02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-961650566 +# @用例名称: ltp.syscalls.epoll_ctl02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_ctl02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_ctl02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_ctl03.sh b/testcase/syscalls/ltp.syscalls.epoll_ctl03.sh new file mode 100755 index 0000000..8ca8bbd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_ctl03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-970369093 +# @用例名称: ltp.syscalls.epoll_ctl03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_ctl03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_ctl03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_ctl04.sh b/testcase/syscalls/ltp.syscalls.epoll_ctl04.sh new file mode 100755 index 0000000..8e193e6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_ctl04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-979042646 +# @用例名称: ltp.syscalls.epoll_ctl04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_ctl04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_ctl04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_ctl05.sh b/testcase/syscalls/ltp.syscalls.epoll_ctl05.sh new file mode 100755 index 0000000..7fb4c44 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_ctl05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-987597355 +# @用例名称: ltp.syscalls.epoll_ctl05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_ctl05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_ctl05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_pwait01.sh b/testcase/syscalls/ltp.syscalls.epoll_pwait01.sh new file mode 100755 index 0000000..8965212 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_pwait01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-034389147 +# @用例名称: ltp.syscalls.epoll_pwait01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_pwait01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_pwait01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_pwait02.sh b/testcase/syscalls/ltp.syscalls.epoll_pwait02.sh new file mode 100755 index 0000000..6a005b1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_pwait02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-043455404 +# @用例名称: ltp.syscalls.epoll_pwait02 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_pwait02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_pwait02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_pwait03.sh b/testcase/syscalls/ltp.syscalls.epoll_pwait03.sh new file mode 100755 index 0000000..553957c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_pwait03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-052499170 +# @用例名称: ltp.syscalls.epoll_pwait03 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_pwait03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_pwait03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_pwait04.sh b/testcase/syscalls/ltp.syscalls.epoll_pwait04.sh new file mode 100755 index 0000000..e5d4f2f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_pwait04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-061090028 +# @用例名称: ltp.syscalls.epoll_pwait04 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_pwait04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_pwait04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_pwait05.sh b/testcase/syscalls/ltp.syscalls.epoll_pwait05.sh new file mode 100755 index 0000000..728e5b8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_pwait05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-069654156 +# @用例名称: ltp.syscalls.epoll_pwait05 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_pwait05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_pwait05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_wait01.sh b/testcase/syscalls/ltp.syscalls.epoll_wait01.sh new file mode 100755 index 0000000..5987c8e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_wait01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-996018997 +# @用例名称: ltp.syscalls.epoll_wait01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_wait01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_wait01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_wait02.sh b/testcase/syscalls/ltp.syscalls.epoll_wait02.sh new file mode 100755 index 0000000..1172964 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_wait02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-004543961 +# @用例名称: ltp.syscalls.epoll_wait02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_wait02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_wait02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_wait03.sh b/testcase/syscalls/ltp.syscalls.epoll_wait03.sh new file mode 100755 index 0000000..d24c8b0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_wait03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-013255916 +# @用例名称: ltp.syscalls.epoll_wait03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_wait03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_wait03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_wait04.sh b/testcase/syscalls/ltp.syscalls.epoll_wait04.sh new file mode 100755 index 0000000..3e26fd5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_wait04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-025846199 +# @用例名称: ltp.syscalls.epoll_wait04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_wait04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_wait04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_wait05.sh b/testcase/syscalls/ltp.syscalls.epoll_wait05.sh new file mode 100755 index 0000000..b4d97a2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_wait05.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172838-021827047 +# @用例名称: ltp.syscalls.epoll_wait05 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_wait05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_wait05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_wait06.sh b/testcase/syscalls/ltp.syscalls.epoll_wait06.sh new file mode 100755 index 0000000..0890b22 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_wait06.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172838-106298584 +# @用例名称: ltp.syscalls.epoll_wait06 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_wait06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_wait06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_wait07.sh b/testcase/syscalls/ltp.syscalls.epoll_wait07.sh new file mode 100755 index 0000000..c56fa0a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_wait07.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172838-183947463 +# @用例名称: ltp.syscalls.epoll_wait07 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_wait07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_wait07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.eventfd01.sh b/testcase/syscalls/ltp.syscalls.eventfd01.sh new file mode 100755 index 0000000..bf8a82e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.eventfd01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-080242782 +# @用例名称: ltp.syscalls.eventfd01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.eventfd01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls eventfd01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.eventfd02.sh b/testcase/syscalls/ltp.syscalls.eventfd02.sh new file mode 100755 index 0000000..9241031 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.eventfd02.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172838-259351063 +# @用例名称: ltp.syscalls.eventfd02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.eventfd02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls eventfd02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.eventfd03.sh b/testcase/syscalls/ltp.syscalls.eventfd03.sh new file mode 100755 index 0000000..b233590 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.eventfd03.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172838-341022514 +# @用例名称: ltp.syscalls.eventfd03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.eventfd03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls eventfd03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.eventfd04.sh b/testcase/syscalls/ltp.syscalls.eventfd04.sh new file mode 100755 index 0000000..30d9e90 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.eventfd04.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172838-414947635 +# @用例名称: ltp.syscalls.eventfd04 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.eventfd04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls eventfd04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.eventfd05.sh b/testcase/syscalls/ltp.syscalls.eventfd05.sh new file mode 100755 index 0000000..8bd7b29 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.eventfd05.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172838-490071965 +# @用例名称: ltp.syscalls.eventfd05 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.eventfd05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls eventfd05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.eventfd06.sh b/testcase/syscalls/ltp.syscalls.eventfd06.sh new file mode 100755 index 0000000..99e1aec --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.eventfd06.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172838-563667756 +# @用例名称: ltp.syscalls.eventfd06 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.eventfd06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls eventfd06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.eventfd2_01.sh b/testcase/syscalls/ltp.syscalls.eventfd2_01.sh new file mode 100755 index 0000000..fb28ec5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.eventfd2_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-091057572 +# @用例名称: ltp.syscalls.eventfd2_01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.eventfd2_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls eventfd2_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.eventfd2_02.sh b/testcase/syscalls/ltp.syscalls.eventfd2_02.sh new file mode 100755 index 0000000..93051df --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.eventfd2_02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-101147255 +# @用例名称: ltp.syscalls.eventfd2_02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.eventfd2_02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls eventfd2_02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.eventfd2_03.sh b/testcase/syscalls/ltp.syscalls.eventfd2_03.sh new file mode 100755 index 0000000..0d3d972 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.eventfd2_03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-111233161 +# @用例名称: ltp.syscalls.eventfd2_03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.eventfd2_03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls eventfd2_03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.execl01.sh b/testcase/syscalls/ltp.syscalls.execl01.sh new file mode 100755 index 0000000..5ba28bb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.execl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-122202710 +# @用例名称: ltp.syscalls.execl01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.execl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls execl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.execle01.sh b/testcase/syscalls/ltp.syscalls.execle01.sh new file mode 100755 index 0000000..c35ab12 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.execle01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-131269960 +# @用例名称: ltp.syscalls.execle01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.execle01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls execle01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.execlp01.sh b/testcase/syscalls/ltp.syscalls.execlp01.sh new file mode 100755 index 0000000..6efc72d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.execlp01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-139978397 +# @用例名称: ltp.syscalls.execlp01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.execlp01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls execlp01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.execv01.sh b/testcase/syscalls/ltp.syscalls.execv01.sh new file mode 100755 index 0000000..ac793ae --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.execv01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-150403108 +# @用例名称: ltp.syscalls.execv01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.execv01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls execv01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.execve01.sh b/testcase/syscalls/ltp.syscalls.execve01.sh new file mode 100755 index 0000000..f659e5a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.execve01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-159084846 +# @用例名称: ltp.syscalls.execve01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.execve01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls execve01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.execve02.sh b/testcase/syscalls/ltp.syscalls.execve02.sh new file mode 100755 index 0000000..fbc5600 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.execve02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-167785288 +# @用例名称: ltp.syscalls.execve02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.execve02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls execve02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.execve03.sh b/testcase/syscalls/ltp.syscalls.execve03.sh new file mode 100755 index 0000000..325a934 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.execve03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-176446709 +# @用例名称: ltp.syscalls.execve03 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.execve03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls execve03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.execve04.sh b/testcase/syscalls/ltp.syscalls.execve04.sh new file mode 100755 index 0000000..8b890cc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.execve04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-185142884 +# @用例名称: ltp.syscalls.execve04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.execve04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls execve04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.execve05.sh b/testcase/syscalls/ltp.syscalls.execve05.sh new file mode 100755 index 0000000..371af54 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.execve05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-193671385 +# @用例名称: ltp.syscalls.execve05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.execve05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls execve05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.execve06.sh b/testcase/syscalls/ltp.syscalls.execve06.sh new file mode 100755 index 0000000..d1d9f37 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.execve06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141851-491416493 +# @用例名称: ltp.syscalls.execve06 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.execve06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls execve06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.execveat01.sh b/testcase/syscalls/ltp.syscalls.execveat01.sh new file mode 100755 index 0000000..9977779 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.execveat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-210868299 +# @用例名称: ltp.syscalls.execveat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.execveat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls execveat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.execveat02.sh b/testcase/syscalls/ltp.syscalls.execveat02.sh new file mode 100755 index 0000000..afb8d91 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.execveat02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-221342391 +# @用例名称: ltp.syscalls.execveat02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.execveat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls execveat02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.execveat03.sh b/testcase/syscalls/ltp.syscalls.execveat03.sh new file mode 100755 index 0000000..4ff6ba0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.execveat03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-229899005 +# @用例名称: ltp.syscalls.execveat03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.execveat03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls execveat03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.execvp01.sh b/testcase/syscalls/ltp.syscalls.execvp01.sh new file mode 100755 index 0000000..716df20 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.execvp01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-202245671 +# @用例名称: ltp.syscalls.execvp01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.execvp01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls execvp01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.exit01.sh b/testcase/syscalls/ltp.syscalls.exit01.sh new file mode 100755 index 0000000..0933d8b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.exit01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-240595373 +# @用例名称: ltp.syscalls.exit01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.exit01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls exit01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.exit02.sh b/testcase/syscalls/ltp.syscalls.exit02.sh new file mode 100755 index 0000000..9de45ac --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.exit02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-249210506 +# @用例名称: ltp.syscalls.exit02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.exit02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls exit02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.exit_group01.sh b/testcase/syscalls/ltp.syscalls.exit_group01.sh new file mode 100755 index 0000000..f0a7f02 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.exit_group01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-259647509 +# @用例名称: ltp.syscalls.exit_group01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.exit_group01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls exit_group01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.faccessat01.sh b/testcase/syscalls/ltp.syscalls.faccessat01.sh new file mode 100755 index 0000000..f2faa94 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.faccessat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-271031344 +# @用例名称: ltp.syscalls.faccessat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.faccessat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls faccessat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.faccessat02.sh b/testcase/syscalls/ltp.syscalls.faccessat02.sh new file mode 100755 index 0000000..f7a8bcf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.faccessat02.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172838-637298337 +# @用例名称: ltp.syscalls.faccessat02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.faccessat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls faccessat02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.faccessat201.sh b/testcase/syscalls/ltp.syscalls.faccessat201.sh new file mode 100755 index 0000000..b1db179 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.faccessat201.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172838-711062337 +# @用例名称: ltp.syscalls.faccessat201 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.faccessat201 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls faccessat201 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.faccessat202.sh b/testcase/syscalls/ltp.syscalls.faccessat202.sh new file mode 100755 index 0000000..4d003e1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.faccessat202.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172838-785317421 +# @用例名称: ltp.syscalls.faccessat202 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.faccessat202 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls faccessat202 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fallocate01.sh b/testcase/syscalls/ltp.syscalls.fallocate01.sh new file mode 100755 index 0000000..1e49829 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fallocate01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-282719058 +# @用例名称: ltp.syscalls.fallocate01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fallocate01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fallocate01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fallocate02.sh b/testcase/syscalls/ltp.syscalls.fallocate02.sh new file mode 100755 index 0000000..19f370b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fallocate02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-291235326 +# @用例名称: ltp.syscalls.fallocate02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fallocate02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fallocate02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fallocate03.sh b/testcase/syscalls/ltp.syscalls.fallocate03.sh new file mode 100755 index 0000000..887487c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fallocate03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-299792931 +# @用例名称: ltp.syscalls.fallocate03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fallocate03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fallocate03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fallocate04.sh b/testcase/syscalls/ltp.syscalls.fallocate04.sh new file mode 100755 index 0000000..2a37ce2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fallocate04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-308642834 +# @用例名称: ltp.syscalls.fallocate04 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fallocate04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fallocate04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fallocate05.sh b/testcase/syscalls/ltp.syscalls.fallocate05.sh new file mode 100755 index 0000000..a956039 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fallocate05.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-317376249 +# @用例名称: ltp.syscalls.fallocate05 +# @用例级别: 4 +# @用例标签: 待分析 +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fallocate05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fallocate05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fallocate06.sh b/testcase/syscalls/ltp.syscalls.fallocate06.sh new file mode 100755 index 0000000..520acdd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fallocate06.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-325940267 +# @用例名称: ltp.syscalls.fallocate06 +# @用例级别: 4 +# @用例标签: 待分析 +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fallocate06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fallocate06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify01.sh b/testcase/syscalls/ltp.syscalls.fanotify01.sh new file mode 100755 index 0000000..2d092fb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-096807113 +# @用例名称: ltp.syscalls.fanotify01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify02.sh b/testcase/syscalls/ltp.syscalls.fanotify02.sh new file mode 100755 index 0000000..5c06b19 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-105396668 +# @用例名称: ltp.syscalls.fanotify02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify03.sh b/testcase/syscalls/ltp.syscalls.fanotify03.sh new file mode 100755 index 0000000..2ef77c3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-114392424 +# @用例名称: ltp.syscalls.fanotify03 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify04.sh b/testcase/syscalls/ltp.syscalls.fanotify04.sh new file mode 100755 index 0000000..31cba49 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-122859350 +# @用例名称: ltp.syscalls.fanotify04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify05.sh b/testcase/syscalls/ltp.syscalls.fanotify05.sh new file mode 100755 index 0000000..c37c85f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-131435621 +# @用例名称: ltp.syscalls.fanotify05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify06.sh b/testcase/syscalls/ltp.syscalls.fanotify06.sh new file mode 100755 index 0000000..1a3659c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-140031738 +# @用例名称: ltp.syscalls.fanotify06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify07.sh b/testcase/syscalls/ltp.syscalls.fanotify07.sh new file mode 100755 index 0000000..1e86a95 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-148532176 +# @用例名称: ltp.syscalls.fanotify07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify08.sh b/testcase/syscalls/ltp.syscalls.fanotify08.sh new file mode 100755 index 0000000..67ebea3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-161105287 +# @用例名称: ltp.syscalls.fanotify08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify09.sh b/testcase/syscalls/ltp.syscalls.fanotify09.sh new file mode 100755 index 0000000..e329b48 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-169611216 +# @用例名称: ltp.syscalls.fanotify09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify10.sh b/testcase/syscalls/ltp.syscalls.fanotify10.sh new file mode 100755 index 0000000..61a90f5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-178228524 +# @用例名称: ltp.syscalls.fanotify10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify11.sh b/testcase/syscalls/ltp.syscalls.fanotify11.sh new file mode 100755 index 0000000..33a1f8e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-186823029 +# @用例名称: ltp.syscalls.fanotify11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify11 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify12.sh b/testcase/syscalls/ltp.syscalls.fanotify12.sh new file mode 100755 index 0000000..beefa0d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-196040740 +# @用例名称: ltp.syscalls.fanotify12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify12 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify13.sh b/testcase/syscalls/ltp.syscalls.fanotify13.sh new file mode 100755 index 0000000..6317fb4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-204633520 +# @用例名称: ltp.syscalls.fanotify13 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify13 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify14.sh b/testcase/syscalls/ltp.syscalls.fanotify14.sh new file mode 100755 index 0000000..b33118d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-213355423 +# @用例名称: ltp.syscalls.fanotify14 +# @用例级别: 3 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify14 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify15.sh b/testcase/syscalls/ltp.syscalls.fanotify15.sh new file mode 100755 index 0000000..a525f8d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-222066086 +# @用例名称: ltp.syscalls.fanotify15 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify15 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify16.sh b/testcase/syscalls/ltp.syscalls.fanotify16.sh new file mode 100755 index 0000000..db5245e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-230604205 +# @用例名称: ltp.syscalls.fanotify16 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify17.sh b/testcase/syscalls/ltp.syscalls.fanotify17.sh new file mode 100755 index 0000000..67f9ac2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-239077152 +# @用例名称: ltp.syscalls.fanotify17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify17 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify18.sh b/testcase/syscalls/ltp.syscalls.fanotify18.sh new file mode 100755 index 0000000..5f0abb5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-247723935 +# @用例名称: ltp.syscalls.fanotify18 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify18 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify19.sh b/testcase/syscalls/ltp.syscalls.fanotify19.sh new file mode 100755 index 0000000..87ffca8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-256143251 +# @用例名称: ltp.syscalls.fanotify19 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify19 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify20.sh b/testcase/syscalls/ltp.syscalls.fanotify20.sh new file mode 100755 index 0000000..56c330a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify20.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-264791818 +# @用例名称: ltp.syscalls.fanotify20 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify20 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify21.sh b/testcase/syscalls/ltp.syscalls.fanotify21.sh new file mode 100755 index 0000000..4b4f932 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-273416579 +# @用例名称: ltp.syscalls.fanotify21 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify21 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify22.sh b/testcase/syscalls/ltp.syscalls.fanotify22.sh new file mode 100755 index 0000000..df3cf04 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify22.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-282069172 +# @用例名称: ltp.syscalls.fanotify22 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify22 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify23.sh b/testcase/syscalls/ltp.syscalls.fanotify23.sh new file mode 100755 index 0000000..1dbec09 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify23.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172839-314052736 +# @用例名称: ltp.syscalls.fanotify23 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify23 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify23 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchdir01.sh b/testcase/syscalls/ltp.syscalls.fchdir01.sh new file mode 100755 index 0000000..5fba4a1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchdir01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-437110102 +# @用例名称: ltp.syscalls.fchdir01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchdir01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchdir01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchdir02.sh b/testcase/syscalls/ltp.syscalls.fchdir02.sh new file mode 100755 index 0000000..a884250 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchdir02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-445894422 +# @用例名称: ltp.syscalls.fchdir02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchdir02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchdir02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchdir03.sh b/testcase/syscalls/ltp.syscalls.fchdir03.sh new file mode 100755 index 0000000..582199f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchdir03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-454478617 +# @用例名称: ltp.syscalls.fchdir03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchdir03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchdir03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchmod01.sh b/testcase/syscalls/ltp.syscalls.fchmod01.sh new file mode 100755 index 0000000..e4f4cd0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchmod01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-465190975 +# @用例名称: ltp.syscalls.fchmod01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchmod01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchmod01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchmod02.sh b/testcase/syscalls/ltp.syscalls.fchmod02.sh new file mode 100755 index 0000000..2e97622 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchmod02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-473944598 +# @用例名称: ltp.syscalls.fchmod02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchmod02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchmod02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchmod03.sh b/testcase/syscalls/ltp.syscalls.fchmod03.sh new file mode 100755 index 0000000..d639874 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchmod03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-482602791 +# @用例名称: ltp.syscalls.fchmod03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchmod03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchmod03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchmod04.sh b/testcase/syscalls/ltp.syscalls.fchmod04.sh new file mode 100755 index 0000000..adcedae --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchmod04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-491157231 +# @用例名称: ltp.syscalls.fchmod04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchmod04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchmod04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchmod05.sh b/testcase/syscalls/ltp.syscalls.fchmod05.sh new file mode 100755 index 0000000..5fcf621 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchmod05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-499766023 +# @用例名称: ltp.syscalls.fchmod05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchmod05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchmod05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchmod06.sh b/testcase/syscalls/ltp.syscalls.fchmod06.sh new file mode 100755 index 0000000..040a9ff --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchmod06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-508373091 +# @用例名称: ltp.syscalls.fchmod06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchmod06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchmod06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchmodat01.sh b/testcase/syscalls/ltp.syscalls.fchmodat01.sh new file mode 100755 index 0000000..09980eb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchmodat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-519940339 +# @用例名称: ltp.syscalls.fchmodat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchmodat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchmodat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchmodat02.sh b/testcase/syscalls/ltp.syscalls.fchmodat02.sh new file mode 100755 index 0000000..c9cd2ca --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchmodat02.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172838-858936629 +# @用例名称: ltp.syscalls.fchmodat02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchmodat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchmodat02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchown01.sh b/testcase/syscalls/ltp.syscalls.fchown01.sh new file mode 100755 index 0000000..a561061 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchown01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-530458313 +# @用例名称: ltp.syscalls.fchown01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchown01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchown01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchown01_16.sh b/testcase/syscalls/ltp.syscalls.fchown01_16.sh new file mode 100755 index 0000000..a604599 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchown01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-538979351 +# @用例名称: ltp.syscalls.fchown01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchown01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchown01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchown02.sh b/testcase/syscalls/ltp.syscalls.fchown02.sh new file mode 100755 index 0000000..89570e8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchown02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-547526236 +# @用例名称: ltp.syscalls.fchown02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchown02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchown02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchown02_16.sh b/testcase/syscalls/ltp.syscalls.fchown02_16.sh new file mode 100755 index 0000000..c84a41b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchown02_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-556063644 +# @用例名称: ltp.syscalls.fchown02_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchown02_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchown02_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchown03.sh b/testcase/syscalls/ltp.syscalls.fchown03.sh new file mode 100755 index 0000000..48acfce --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchown03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-564654512 +# @用例名称: ltp.syscalls.fchown03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchown03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchown03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchown03_16.sh b/testcase/syscalls/ltp.syscalls.fchown03_16.sh new file mode 100755 index 0000000..086cd72 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchown03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-573415618 +# @用例名称: ltp.syscalls.fchown03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchown03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchown03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchown04.sh b/testcase/syscalls/ltp.syscalls.fchown04.sh new file mode 100755 index 0000000..5d03269 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchown04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-582041241 +# @用例名称: ltp.syscalls.fchown04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchown04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchown04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchown04_16.sh b/testcase/syscalls/ltp.syscalls.fchown04_16.sh new file mode 100755 index 0000000..349c3fb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchown04_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-590527003 +# @用例名称: ltp.syscalls.fchown04_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchown04_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchown04_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchown05.sh b/testcase/syscalls/ltp.syscalls.fchown05.sh new file mode 100755 index 0000000..a1d74bd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchown05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-599267300 +# @用例名称: ltp.syscalls.fchown05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchown05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchown05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchown05_16.sh b/testcase/syscalls/ltp.syscalls.fchown05_16.sh new file mode 100755 index 0000000..b3965ed --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchown05_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-607910125 +# @用例名称: ltp.syscalls.fchown05_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchown05_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchown05_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchownat01.sh b/testcase/syscalls/ltp.syscalls.fchownat01.sh new file mode 100755 index 0000000..811e394 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchownat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-619472704 +# @用例名称: ltp.syscalls.fchownat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchownat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchownat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchownat02.sh b/testcase/syscalls/ltp.syscalls.fchownat02.sh new file mode 100755 index 0000000..e7322f1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchownat02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-628041020 +# @用例名称: ltp.syscalls.fchownat02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchownat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchownat02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl01.sh b/testcase/syscalls/ltp.syscalls.fcntl01.sh new file mode 100755 index 0000000..ebf16cc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-638574854 +# @用例名称: ltp.syscalls.fcntl01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl01_64.sh b/testcase/syscalls/ltp.syscalls.fcntl01_64.sh new file mode 100755 index 0000000..12d0162 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl01_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-647177274 +# @用例名称: ltp.syscalls.fcntl01_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl01_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl01_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl02.sh b/testcase/syscalls/ltp.syscalls.fcntl02.sh new file mode 100755 index 0000000..41fe264 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-655876374 +# @用例名称: ltp.syscalls.fcntl02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl02_64.sh b/testcase/syscalls/ltp.syscalls.fcntl02_64.sh new file mode 100755 index 0000000..9b3d236 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl02_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-664552862 +# @用例名称: ltp.syscalls.fcntl02_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl02_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl02_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl03.sh b/testcase/syscalls/ltp.syscalls.fcntl03.sh new file mode 100755 index 0000000..20c1113 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-673148028 +# @用例名称: ltp.syscalls.fcntl03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl03_64.sh b/testcase/syscalls/ltp.syscalls.fcntl03_64.sh new file mode 100755 index 0000000..8d4d23e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl03_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-681724981 +# @用例名称: ltp.syscalls.fcntl03_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl03_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl03_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl04.sh b/testcase/syscalls/ltp.syscalls.fcntl04.sh new file mode 100755 index 0000000..e7145c3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-690207736 +# @用例名称: ltp.syscalls.fcntl04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl04_64.sh b/testcase/syscalls/ltp.syscalls.fcntl04_64.sh new file mode 100755 index 0000000..b3de0ad --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl04_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-698738862 +# @用例名称: ltp.syscalls.fcntl04_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl04_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl04_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl05.sh b/testcase/syscalls/ltp.syscalls.fcntl05.sh new file mode 100755 index 0000000..f2be5fd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-707363773 +# @用例名称: ltp.syscalls.fcntl05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl05_64.sh b/testcase/syscalls/ltp.syscalls.fcntl05_64.sh new file mode 100755 index 0000000..124b16a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl05_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-715925747 +# @用例名称: ltp.syscalls.fcntl05_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl05_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl05_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl07.sh b/testcase/syscalls/ltp.syscalls.fcntl07.sh new file mode 100755 index 0000000..06bca1e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-741618381 +# @用例名称: ltp.syscalls.fcntl07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl07_64.sh b/testcase/syscalls/ltp.syscalls.fcntl07_64.sh new file mode 100755 index 0000000..bb82020 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl07_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-750213768 +# @用例名称: ltp.syscalls.fcntl07_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl07_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl07_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl08.sh b/testcase/syscalls/ltp.syscalls.fcntl08.sh new file mode 100755 index 0000000..66ce525 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-758865860 +# @用例名称: ltp.syscalls.fcntl08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl08_64.sh b/testcase/syscalls/ltp.syscalls.fcntl08_64.sh new file mode 100755 index 0000000..6c2474d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl08_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-767568397 +# @用例名称: ltp.syscalls.fcntl08_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl08_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl08_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl09.sh b/testcase/syscalls/ltp.syscalls.fcntl09.sh new file mode 100755 index 0000000..a4fa5b9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-776222093 +# @用例名称: ltp.syscalls.fcntl09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl09_64.sh b/testcase/syscalls/ltp.syscalls.fcntl09_64.sh new file mode 100755 index 0000000..2a73247 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl09_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-784750463 +# @用例名称: ltp.syscalls.fcntl09_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl09_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl09_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl10.sh b/testcase/syscalls/ltp.syscalls.fcntl10.sh new file mode 100755 index 0000000..fe9d6f1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-793177966 +# @用例名称: ltp.syscalls.fcntl10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl10_64.sh b/testcase/syscalls/ltp.syscalls.fcntl10_64.sh new file mode 100755 index 0000000..21eeed1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl10_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-801656223 +# @用例名称: ltp.syscalls.fcntl10_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl10_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl10_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl11.sh b/testcase/syscalls/ltp.syscalls.fcntl11.sh new file mode 100755 index 0000000..e2b7df9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-810069117 +# @用例名称: ltp.syscalls.fcntl11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl11 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl11_64.sh b/testcase/syscalls/ltp.syscalls.fcntl11_64.sh new file mode 100755 index 0000000..d80981f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl11_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-818615722 +# @用例名称: ltp.syscalls.fcntl11_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl11_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl11_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl12.sh b/testcase/syscalls/ltp.syscalls.fcntl12.sh new file mode 100755 index 0000000..47f400c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-827376158 +# @用例名称: ltp.syscalls.fcntl12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl12 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl12_64.sh b/testcase/syscalls/ltp.syscalls.fcntl12_64.sh new file mode 100755 index 0000000..99a3424 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl12_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-835940085 +# @用例名称: ltp.syscalls.fcntl12_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl12_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl12_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl13.sh b/testcase/syscalls/ltp.syscalls.fcntl13.sh new file mode 100755 index 0000000..cdee71b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-844441034 +# @用例名称: ltp.syscalls.fcntl13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl13 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl13_64.sh b/testcase/syscalls/ltp.syscalls.fcntl13_64.sh new file mode 100755 index 0000000..fdac359 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl13_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-853000513 +# @用例名称: ltp.syscalls.fcntl13_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl13_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl13_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl14.sh b/testcase/syscalls/ltp.syscalls.fcntl14.sh new file mode 100755 index 0000000..c2f7620 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-861771548 +# @用例名称: ltp.syscalls.fcntl14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl14 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl14_64.sh b/testcase/syscalls/ltp.syscalls.fcntl14_64.sh new file mode 100755 index 0000000..dec336d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl14_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-870362627 +# @用例名称: ltp.syscalls.fcntl14_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl14_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl14_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl15.sh b/testcase/syscalls/ltp.syscalls.fcntl15.sh new file mode 100755 index 0000000..b2a60b3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-879044585 +# @用例名称: ltp.syscalls.fcntl15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl15 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl15_64.sh b/testcase/syscalls/ltp.syscalls.fcntl15_64.sh new file mode 100755 index 0000000..531bb23 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl15_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-887723958 +# @用例名称: ltp.syscalls.fcntl15_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl15_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl15_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl16.sh b/testcase/syscalls/ltp.syscalls.fcntl16.sh new file mode 100755 index 0000000..cc6ab1d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-896285672 +# @用例名称: ltp.syscalls.fcntl16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl16_64.sh b/testcase/syscalls/ltp.syscalls.fcntl16_64.sh new file mode 100755 index 0000000..ad003ec --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl16_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-904934489 +# @用例名称: ltp.syscalls.fcntl16_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl16_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl16_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl17.sh b/testcase/syscalls/ltp.syscalls.fcntl17.sh new file mode 100755 index 0000000..7b60b6e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-913665719 +# @用例名称: ltp.syscalls.fcntl17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl17 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl17_64.sh b/testcase/syscalls/ltp.syscalls.fcntl17_64.sh new file mode 100755 index 0000000..5b5bf45 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl17_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-922195762 +# @用例名称: ltp.syscalls.fcntl17_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl17_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl17_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl18.sh b/testcase/syscalls/ltp.syscalls.fcntl18.sh new file mode 100755 index 0000000..da217ea --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-930797030 +# @用例名称: ltp.syscalls.fcntl18 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl18 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl18_64.sh b/testcase/syscalls/ltp.syscalls.fcntl18_64.sh new file mode 100755 index 0000000..b792a95 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl18_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-939314401 +# @用例名称: ltp.syscalls.fcntl18_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl18_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl18_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl19.sh b/testcase/syscalls/ltp.syscalls.fcntl19.sh new file mode 100755 index 0000000..c04c1bc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-947856227 +# @用例名称: ltp.syscalls.fcntl19 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl19 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl19_64.sh b/testcase/syscalls/ltp.syscalls.fcntl19_64.sh new file mode 100755 index 0000000..bb8d05a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl19_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-956476770 +# @用例名称: ltp.syscalls.fcntl19_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl19_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl19_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl20.sh b/testcase/syscalls/ltp.syscalls.fcntl20.sh new file mode 100755 index 0000000..81a7cdb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl20.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-967595328 +# @用例名称: ltp.syscalls.fcntl20 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl20 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl20_64.sh b/testcase/syscalls/ltp.syscalls.fcntl20_64.sh new file mode 100755 index 0000000..30546f1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl20_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-976218868 +# @用例名称: ltp.syscalls.fcntl20_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl20_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl20_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl21.sh b/testcase/syscalls/ltp.syscalls.fcntl21.sh new file mode 100755 index 0000000..ad93e34 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-984797602 +# @用例名称: ltp.syscalls.fcntl21 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl21 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl21_64.sh b/testcase/syscalls/ltp.syscalls.fcntl21_64.sh new file mode 100755 index 0000000..6335e48 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl21_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-993270159 +# @用例名称: ltp.syscalls.fcntl21_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl21_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl21_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl22.sh b/testcase/syscalls/ltp.syscalls.fcntl22.sh new file mode 100755 index 0000000..52160e2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl22.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-001835018 +# @用例名称: ltp.syscalls.fcntl22 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl22 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl22 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl22_64.sh b/testcase/syscalls/ltp.syscalls.fcntl22_64.sh new file mode 100755 index 0000000..b8775ea --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl22_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-010424334 +# @用例名称: ltp.syscalls.fcntl22_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl22_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl22_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl23.sh b/testcase/syscalls/ltp.syscalls.fcntl23.sh new file mode 100755 index 0000000..853b67a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl23.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-018963384 +# @用例名称: ltp.syscalls.fcntl23 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl23 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl23 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl23_64.sh b/testcase/syscalls/ltp.syscalls.fcntl23_64.sh new file mode 100755 index 0000000..1178719 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl23_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-027519817 +# @用例名称: ltp.syscalls.fcntl23_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl23_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl23_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl24.sh b/testcase/syscalls/ltp.syscalls.fcntl24.sh new file mode 100755 index 0000000..23817d8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl24.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-036169566 +# @用例名称: ltp.syscalls.fcntl24 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl24 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl24 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl24_64.sh b/testcase/syscalls/ltp.syscalls.fcntl24_64.sh new file mode 100755 index 0000000..8199e25 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl24_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-044714066 +# @用例名称: ltp.syscalls.fcntl24_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl24_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl24_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl25.sh b/testcase/syscalls/ltp.syscalls.fcntl25.sh new file mode 100755 index 0000000..9b1dddf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl25.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-053717526 +# @用例名称: ltp.syscalls.fcntl25 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl25 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl25 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl25_64.sh b/testcase/syscalls/ltp.syscalls.fcntl25_64.sh new file mode 100755 index 0000000..1021475 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl25_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-062516123 +# @用例名称: ltp.syscalls.fcntl25_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl25_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl25_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl26.sh b/testcase/syscalls/ltp.syscalls.fcntl26.sh new file mode 100755 index 0000000..e74574e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl26.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-071383579 +# @用例名称: ltp.syscalls.fcntl26 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl26 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl26 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl26_64.sh b/testcase/syscalls/ltp.syscalls.fcntl26_64.sh new file mode 100755 index 0000000..c86457b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl26_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-080048966 +# @用例名称: ltp.syscalls.fcntl26_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl26_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl26_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl27.sh b/testcase/syscalls/ltp.syscalls.fcntl27.sh new file mode 100755 index 0000000..8b1dfdc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl27.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-091227417 +# @用例名称: ltp.syscalls.fcntl27 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl27 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl27 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl27_64.sh b/testcase/syscalls/ltp.syscalls.fcntl27_64.sh new file mode 100755 index 0000000..1986bc0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl27_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-099859071 +# @用例名称: ltp.syscalls.fcntl27_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl27_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl27_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl29.sh b/testcase/syscalls/ltp.syscalls.fcntl29.sh new file mode 100755 index 0000000..e0c3486 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl29.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-125615654 +# @用例名称: ltp.syscalls.fcntl29 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl29 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl29 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl29_64.sh b/testcase/syscalls/ltp.syscalls.fcntl29_64.sh new file mode 100755 index 0000000..1dc80de --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl29_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-134240777 +# @用例名称: ltp.syscalls.fcntl29_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl29_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl29_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl30.sh b/testcase/syscalls/ltp.syscalls.fcntl30.sh new file mode 100755 index 0000000..2535648 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl30.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-142815043 +# @用例名称: ltp.syscalls.fcntl30 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl30 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl30 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl30_64.sh b/testcase/syscalls/ltp.syscalls.fcntl30_64.sh new file mode 100755 index 0000000..caf5ce5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl30_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-153148823 +# @用例名称: ltp.syscalls.fcntl30_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl30_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl30_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl31.sh b/testcase/syscalls/ltp.syscalls.fcntl31.sh new file mode 100755 index 0000000..aa095ac --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl31.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-163021921 +# @用例名称: ltp.syscalls.fcntl31 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl31 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl31 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl31_64.sh b/testcase/syscalls/ltp.syscalls.fcntl31_64.sh new file mode 100755 index 0000000..a5965ad --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl31_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-171547517 +# @用例名称: ltp.syscalls.fcntl31_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl31_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl31_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl32.sh b/testcase/syscalls/ltp.syscalls.fcntl32.sh new file mode 100755 index 0000000..86fd39d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl32.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-181311700 +# @用例名称: ltp.syscalls.fcntl32 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl32 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl32 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl32_64.sh b/testcase/syscalls/ltp.syscalls.fcntl32_64.sh new file mode 100755 index 0000000..4f19655 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl32_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-191515577 +# @用例名称: ltp.syscalls.fcntl32_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl32_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl32_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl33.sh b/testcase/syscalls/ltp.syscalls.fcntl33.sh new file mode 100755 index 0000000..7cfcc8b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl33.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-200081839 +# @用例名称: ltp.syscalls.fcntl33 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl33 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl33 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl33_64.sh b/testcase/syscalls/ltp.syscalls.fcntl33_64.sh new file mode 100755 index 0000000..2239d83 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl33_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-208740914 +# @用例名称: ltp.syscalls.fcntl33_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl33_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl33_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl34.sh b/testcase/syscalls/ltp.syscalls.fcntl34.sh new file mode 100755 index 0000000..8102031 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl34.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-217423785 +# @用例名称: ltp.syscalls.fcntl34 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl34 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl34 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl34_64.sh b/testcase/syscalls/ltp.syscalls.fcntl34_64.sh new file mode 100755 index 0000000..38c7d74 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl34_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-225987962 +# @用例名称: ltp.syscalls.fcntl34_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl34_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl34_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl35.sh b/testcase/syscalls/ltp.syscalls.fcntl35.sh new file mode 100755 index 0000000..cbc5346 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl35.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-234545988 +# @用例名称: ltp.syscalls.fcntl35 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl35 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl35 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl35_64.sh b/testcase/syscalls/ltp.syscalls.fcntl35_64.sh new file mode 100755 index 0000000..8f8aced --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl35_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-243039995 +# @用例名称: ltp.syscalls.fcntl35_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl35_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl35_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl36.sh b/testcase/syscalls/ltp.syscalls.fcntl36.sh new file mode 100755 index 0000000..9433010 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl36.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-252270330 +# @用例名称: ltp.syscalls.fcntl36 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl36 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl36 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl36_64.sh b/testcase/syscalls/ltp.syscalls.fcntl36_64.sh new file mode 100755 index 0000000..1c512e9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl36_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-260919567 +# @用例名称: ltp.syscalls.fcntl36_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl36_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl36_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl37.sh b/testcase/syscalls/ltp.syscalls.fcntl37.sh new file mode 100755 index 0000000..6fd36f5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl37.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-270017173 +# @用例名称: ltp.syscalls.fcntl37 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl37 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl37 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl37_64.sh b/testcase/syscalls/ltp.syscalls.fcntl37_64.sh new file mode 100755 index 0000000..af4e017 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl37_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-278660640 +# @用例名称: ltp.syscalls.fcntl37_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl37_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl37_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl38.sh b/testcase/syscalls/ltp.syscalls.fcntl38.sh new file mode 100755 index 0000000..9a7981e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl38.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-287167490 +# @用例名称: ltp.syscalls.fcntl38 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl38 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl38 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl38_64.sh b/testcase/syscalls/ltp.syscalls.fcntl38_64.sh new file mode 100755 index 0000000..418d721 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl38_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-295607225 +# @用例名称: ltp.syscalls.fcntl38_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl38_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl38_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl39.sh b/testcase/syscalls/ltp.syscalls.fcntl39.sh new file mode 100755 index 0000000..796a1de --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl39.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141851-556379305 +# @用例名称: ltp.syscalls.fcntl39 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl39 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl39 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl39_64.sh b/testcase/syscalls/ltp.syscalls.fcntl39_64.sh new file mode 100755 index 0000000..8c4d798 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl39_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141851-622204669 +# @用例名称: ltp.syscalls.fcntl39_64 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl39_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl39_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fdatasync01.sh b/testcase/syscalls/ltp.syscalls.fdatasync01.sh new file mode 100755 index 0000000..199f81e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fdatasync01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-305993172 +# @用例名称: ltp.syscalls.fdatasync01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fdatasync01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fdatasync01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fdatasync02.sh b/testcase/syscalls/ltp.syscalls.fdatasync02.sh new file mode 100755 index 0000000..e69bcd3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fdatasync02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-314460940 +# @用例名称: ltp.syscalls.fdatasync02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fdatasync02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fdatasync02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fdatasync03.sh b/testcase/syscalls/ltp.syscalls.fdatasync03.sh new file mode 100755 index 0000000..f01dc6d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fdatasync03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-323020248 +# @用例名称: ltp.syscalls.fdatasync03 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fdatasync03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fdatasync03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fgetxattr01.sh b/testcase/syscalls/ltp.syscalls.fgetxattr01.sh new file mode 100755 index 0000000..39b912d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fgetxattr01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-335765291 +# @用例名称: ltp.syscalls.fgetxattr01 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fgetxattr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fgetxattr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fgetxattr02.sh b/testcase/syscalls/ltp.syscalls.fgetxattr02.sh new file mode 100755 index 0000000..51b5ed2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fgetxattr02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-355950007 +# @用例名称: ltp.syscalls.fgetxattr02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fgetxattr02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fgetxattr02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fgetxattr03.sh b/testcase/syscalls/ltp.syscalls.fgetxattr03.sh new file mode 100755 index 0000000..535354e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fgetxattr03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-364712536 +# @用例名称: ltp.syscalls.fgetxattr03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fgetxattr03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fgetxattr03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.finit_module01.sh b/testcase/syscalls/ltp.syscalls.finit_module01.sh new file mode 100755 index 0000000..eb0a521 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.finit_module01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-375229999 +# @用例名称: ltp.syscalls.finit_module01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.finit_module01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls finit_module01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.finit_module02.sh b/testcase/syscalls/ltp.syscalls.finit_module02.sh new file mode 100755 index 0000000..d1ef3b4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.finit_module02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-383798015 +# @用例名称: ltp.syscalls.finit_module02 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.finit_module02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls finit_module02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.flistxattr01.sh b/testcase/syscalls/ltp.syscalls.flistxattr01.sh new file mode 100755 index 0000000..8deff02 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.flistxattr01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-394364850 +# @用例名称: ltp.syscalls.flistxattr01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.flistxattr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls flistxattr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.flistxattr02.sh b/testcase/syscalls/ltp.syscalls.flistxattr02.sh new file mode 100755 index 0000000..16b8cb9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.flistxattr02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-403008898 +# @用例名称: ltp.syscalls.flistxattr02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.flistxattr02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls flistxattr02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.flistxattr03.sh b/testcase/syscalls/ltp.syscalls.flistxattr03.sh new file mode 100755 index 0000000..0597cc0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.flistxattr03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-412936498 +# @用例名称: ltp.syscalls.flistxattr03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.flistxattr03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls flistxattr03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.flock01.sh b/testcase/syscalls/ltp.syscalls.flock01.sh new file mode 100755 index 0000000..d6b88f5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.flock01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-428243845 +# @用例名称: ltp.syscalls.flock01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.flock01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls flock01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.flock02.sh b/testcase/syscalls/ltp.syscalls.flock02.sh new file mode 100755 index 0000000..6a3a3de --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.flock02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-437033585 +# @用例名称: ltp.syscalls.flock02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.flock02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls flock02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.flock03.sh b/testcase/syscalls/ltp.syscalls.flock03.sh new file mode 100755 index 0000000..2115e1b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.flock03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-445531950 +# @用例名称: ltp.syscalls.flock03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.flock03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls flock03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.flock04.sh b/testcase/syscalls/ltp.syscalls.flock04.sh new file mode 100755 index 0000000..8718e94 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.flock04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-454005268 +# @用例名称: ltp.syscalls.flock04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.flock04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls flock04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.flock06.sh b/testcase/syscalls/ltp.syscalls.flock06.sh new file mode 100755 index 0000000..d924e48 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.flock06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-462637453 +# @用例名称: ltp.syscalls.flock06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.flock06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls flock06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fmtmsg01.sh b/testcase/syscalls/ltp.syscalls.fmtmsg01.sh new file mode 100755 index 0000000..864b177 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fmtmsg01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-473220299 +# @用例名称: ltp.syscalls.fmtmsg01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fmtmsg01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fmtmsg01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fork01.sh b/testcase/syscalls/ltp.syscalls.fork01.sh new file mode 100755 index 0000000..90adf4c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fork01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-483760826 +# @用例名称: ltp.syscalls.fork01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fork01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fork01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fork03.sh b/testcase/syscalls/ltp.syscalls.fork03.sh new file mode 100755 index 0000000..7539e81 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fork03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-500869555 +# @用例名称: ltp.syscalls.fork03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fork03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fork03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fork04.sh b/testcase/syscalls/ltp.syscalls.fork04.sh new file mode 100755 index 0000000..32bc5ec --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fork04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-509533370 +# @用例名称: ltp.syscalls.fork04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fork04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fork04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fork05.sh b/testcase/syscalls/ltp.syscalls.fork05.sh new file mode 100755 index 0000000..0b6df20 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fork05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-518100061 +# @用例名称: ltp.syscalls.fork05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fork05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fork05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fork06.sh b/testcase/syscalls/ltp.syscalls.fork06.sh new file mode 100755 index 0000000..e4594ab --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fork06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-526765920 +# @用例名称: ltp.syscalls.fork06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fork06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fork06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fork07.sh b/testcase/syscalls/ltp.syscalls.fork07.sh new file mode 100755 index 0000000..043e60e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fork07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-535223198 +# @用例名称: ltp.syscalls.fork07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fork07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fork07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fork08.sh b/testcase/syscalls/ltp.syscalls.fork08.sh new file mode 100755 index 0000000..433f3f2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fork08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-543841427 +# @用例名称: ltp.syscalls.fork08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fork08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fork08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fork09.sh b/testcase/syscalls/ltp.syscalls.fork09.sh new file mode 100755 index 0000000..20795bd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fork09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-552346514 +# @用例名称: ltp.syscalls.fork09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fork09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fork09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fork10.sh b/testcase/syscalls/ltp.syscalls.fork10.sh new file mode 100755 index 0000000..da62659 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fork10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-560832275 +# @用例名称: ltp.syscalls.fork10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fork10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fork10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fork11.sh b/testcase/syscalls/ltp.syscalls.fork11.sh new file mode 100755 index 0000000..fa12c54 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fork11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-569455684 +# @用例名称: ltp.syscalls.fork11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fork11 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fork11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fork13.sh b/testcase/syscalls/ltp.syscalls.fork13.sh new file mode 100755 index 0000000..39f242b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fork13.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-578081427 +# @用例名称: ltp.syscalls.fork13 +# @用例级别: 3 +# @用例标签: aarch64不支持 eks不支持 +# @超时时间: 360 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fork13 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fork13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fork14.sh b/testcase/syscalls/ltp.syscalls.fork14.sh new file mode 100755 index 0000000..ad8098d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fork14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-586879262 +# @用例名称: ltp.syscalls.fork14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fork14 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fork14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fpathconf01.sh b/testcase/syscalls/ltp.syscalls.fpathconf01.sh new file mode 100755 index 0000000..6df9bad --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fpathconf01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-598074645 +# @用例名称: ltp.syscalls.fpathconf01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fpathconf01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fpathconf01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fremovexattr01.sh b/testcase/syscalls/ltp.syscalls.fremovexattr01.sh new file mode 100755 index 0000000..f60ba39 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fremovexattr01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-608572682 +# @用例名称: ltp.syscalls.fremovexattr01 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fremovexattr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fremovexattr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fremovexattr02.sh b/testcase/syscalls/ltp.syscalls.fremovexattr02.sh new file mode 100755 index 0000000..3d19aeb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fremovexattr02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-617170974 +# @用例名称: ltp.syscalls.fremovexattr02 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fremovexattr02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fremovexattr02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fsconfig01.sh b/testcase/syscalls/ltp.syscalls.fsconfig01.sh new file mode 100755 index 0000000..28346ae --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fsconfig01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-627570937 +# @用例名称: ltp.syscalls.fsconfig01 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fsconfig01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fsconfig01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fsconfig02.sh b/testcase/syscalls/ltp.syscalls.fsconfig02.sh new file mode 100755 index 0000000..fcaabab --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fsconfig02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-636110650 +# @用例名称: ltp.syscalls.fsconfig02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fsconfig02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fsconfig02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fsconfig03.sh b/testcase/syscalls/ltp.syscalls.fsconfig03.sh new file mode 100755 index 0000000..962df23 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fsconfig03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141851-688366711 +# @用例名称: ltp.syscalls.fsconfig03 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fsconfig03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fsconfig03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fsetxattr01.sh b/testcase/syscalls/ltp.syscalls.fsetxattr01.sh new file mode 100755 index 0000000..98d72b7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fsetxattr01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-341323216 +# @用例名称: ltp.syscalls.fsetxattr01 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fsetxattr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fsetxattr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fsetxattr02.sh b/testcase/syscalls/ltp.syscalls.fsetxattr02.sh new file mode 100755 index 0000000..74eadb9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fsetxattr02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-352945427 +# @用例名称: ltp.syscalls.fsetxattr02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fsetxattr02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fsetxattr02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fsmount01.sh b/testcase/syscalls/ltp.syscalls.fsmount01.sh new file mode 100755 index 0000000..fd75673 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fsmount01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-646543745 +# @用例名称: ltp.syscalls.fsmount01 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fsmount01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fsmount01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fsmount02.sh b/testcase/syscalls/ltp.syscalls.fsmount02.sh new file mode 100755 index 0000000..134ec6d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fsmount02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-655075141 +# @用例名称: ltp.syscalls.fsmount02 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fsmount02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fsmount02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fsopen01.sh b/testcase/syscalls/ltp.syscalls.fsopen01.sh new file mode 100755 index 0000000..0e41b81 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fsopen01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-665839457 +# @用例名称: ltp.syscalls.fsopen01 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fsopen01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fsopen01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fsopen02.sh b/testcase/syscalls/ltp.syscalls.fsopen02.sh new file mode 100755 index 0000000..629029c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fsopen02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-674641019 +# @用例名称: ltp.syscalls.fsopen02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fsopen02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fsopen02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fspick01.sh b/testcase/syscalls/ltp.syscalls.fspick01.sh new file mode 100755 index 0000000..5f940c5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fspick01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-685446321 +# @用例名称: ltp.syscalls.fspick01 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fspick01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fspick01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fspick02.sh b/testcase/syscalls/ltp.syscalls.fspick02.sh new file mode 100755 index 0000000..826b87f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fspick02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-694028934 +# @用例名称: ltp.syscalls.fspick02 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fspick02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fspick02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fstat02.sh b/testcase/syscalls/ltp.syscalls.fstat02.sh new file mode 100755 index 0000000..79bf4e2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fstat02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-704755489 +# @用例名称: ltp.syscalls.fstat02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fstat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fstat02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fstat02_64.sh b/testcase/syscalls/ltp.syscalls.fstat02_64.sh new file mode 100755 index 0000000..a142f04 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fstat02_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-713232784 +# @用例名称: ltp.syscalls.fstat02_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fstat02_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fstat02_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fstat03.sh b/testcase/syscalls/ltp.syscalls.fstat03.sh new file mode 100755 index 0000000..ae59b34 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fstat03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-721834953 +# @用例名称: ltp.syscalls.fstat03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fstat03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fstat03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fstat03_64.sh b/testcase/syscalls/ltp.syscalls.fstat03_64.sh new file mode 100755 index 0000000..cda22b3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fstat03_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-730338538 +# @用例名称: ltp.syscalls.fstat03_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fstat03_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fstat03_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fstatat01.sh b/testcase/syscalls/ltp.syscalls.fstatat01.sh new file mode 100755 index 0000000..2f67d71 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fstatat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-743396015 +# @用例名称: ltp.syscalls.fstatat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fstatat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fstatat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fstatfs01.sh b/testcase/syscalls/ltp.syscalls.fstatfs01.sh new file mode 100755 index 0000000..dd828e9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fstatfs01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-754571570 +# @用例名称: ltp.syscalls.fstatfs01 +# @用例级别: 0 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fstatfs01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fstatfs01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fstatfs01_64.sh b/testcase/syscalls/ltp.syscalls.fstatfs01_64.sh new file mode 100755 index 0000000..9a88a5b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fstatfs01_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-764632970 +# @用例名称: ltp.syscalls.fstatfs01_64 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fstatfs01_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fstatfs01_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fstatfs02.sh b/testcase/syscalls/ltp.syscalls.fstatfs02.sh new file mode 100755 index 0000000..b420d80 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fstatfs02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-774113383 +# @用例名称: ltp.syscalls.fstatfs02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fstatfs02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fstatfs02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fstatfs02_64.sh b/testcase/syscalls/ltp.syscalls.fstatfs02_64.sh new file mode 100755 index 0000000..025fb5c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fstatfs02_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-785530449 +# @用例名称: ltp.syscalls.fstatfs02_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fstatfs02_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fstatfs02_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fsync01.sh b/testcase/syscalls/ltp.syscalls.fsync01.sh new file mode 100755 index 0000000..ff5f655 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fsync01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-797858652 +# @用例名称: ltp.syscalls.fsync01 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fsync01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fsync01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fsync02.sh b/testcase/syscalls/ltp.syscalls.fsync02.sh new file mode 100755 index 0000000..eb73361 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fsync02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-807478846 +# @用例名称: ltp.syscalls.fsync02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fsync02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fsync02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fsync03.sh b/testcase/syscalls/ltp.syscalls.fsync03.sh new file mode 100755 index 0000000..e1aaa78 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fsync03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-816746911 +# @用例名称: ltp.syscalls.fsync03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fsync03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fsync03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fsync04.sh b/testcase/syscalls/ltp.syscalls.fsync04.sh new file mode 100755 index 0000000..a44c327 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fsync04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-825784075 +# @用例名称: ltp.syscalls.fsync04 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fsync04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fsync04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ftruncate01.sh b/testcase/syscalls/ltp.syscalls.ftruncate01.sh new file mode 100755 index 0000000..a3dc4fb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ftruncate01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-836834055 +# @用例名称: ltp.syscalls.ftruncate01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ftruncate01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ftruncate01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ftruncate01_64.sh b/testcase/syscalls/ltp.syscalls.ftruncate01_64.sh new file mode 100755 index 0000000..ca676c2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ftruncate01_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-845470298 +# @用例名称: ltp.syscalls.ftruncate01_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ftruncate01_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ftruncate01_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ftruncate03.sh b/testcase/syscalls/ltp.syscalls.ftruncate03.sh new file mode 100755 index 0000000..b3cd08e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ftruncate03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-854101902 +# @用例名称: ltp.syscalls.ftruncate03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ftruncate03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ftruncate03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ftruncate03_64.sh b/testcase/syscalls/ltp.syscalls.ftruncate03_64.sh new file mode 100755 index 0000000..6783691 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ftruncate03_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-862853420 +# @用例名称: ltp.syscalls.ftruncate03_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ftruncate03_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ftruncate03_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ftruncate04.sh b/testcase/syscalls/ltp.syscalls.ftruncate04.sh new file mode 100755 index 0000000..cdb534c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ftruncate04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-871664721 +# @用例名称: ltp.syscalls.ftruncate04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ftruncate04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ftruncate04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ftruncate04_64.sh b/testcase/syscalls/ltp.syscalls.ftruncate04_64.sh new file mode 100755 index 0000000..6037b50 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ftruncate04_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-880342521 +# @用例名称: ltp.syscalls.ftruncate04_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ftruncate04_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ftruncate04_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.futex_cmp_requeue01.sh b/testcase/syscalls/ltp.syscalls.futex_cmp_requeue01.sh new file mode 100755 index 0000000..fe826c6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.futex_cmp_requeue01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-247546106 +# @用例名称: ltp.syscalls.futex_cmp_requeue01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.futex_cmp_requeue01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls futex_cmp_requeue01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.futex_cmp_requeue02.sh b/testcase/syscalls/ltp.syscalls.futex_cmp_requeue02.sh new file mode 100755 index 0000000..8c03100 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.futex_cmp_requeue02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-256181457 +# @用例名称: ltp.syscalls.futex_cmp_requeue02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.futex_cmp_requeue02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls futex_cmp_requeue02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.futex_wait01.sh b/testcase/syscalls/ltp.syscalls.futex_wait01.sh new file mode 100755 index 0000000..03fb83e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.futex_wait01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-264797192 +# @用例名称: ltp.syscalls.futex_wait01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.futex_wait01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls futex_wait01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.futex_wait02.sh b/testcase/syscalls/ltp.syscalls.futex_wait02.sh new file mode 100755 index 0000000..ec97164 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.futex_wait02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-273478619 +# @用例名称: ltp.syscalls.futex_wait02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.futex_wait02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls futex_wait02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.futex_wait03.sh b/testcase/syscalls/ltp.syscalls.futex_wait03.sh new file mode 100755 index 0000000..ee042a0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.futex_wait03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-282131814 +# @用例名称: ltp.syscalls.futex_wait03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.futex_wait03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls futex_wait03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.futex_wait04.sh b/testcase/syscalls/ltp.syscalls.futex_wait04.sh new file mode 100755 index 0000000..daac7e9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.futex_wait04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-290623075 +# @用例名称: ltp.syscalls.futex_wait04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.futex_wait04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls futex_wait04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.futex_wait05.sh b/testcase/syscalls/ltp.syscalls.futex_wait05.sh new file mode 100755 index 0000000..7cd1db8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.futex_wait05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-299215175 +# @用例名称: ltp.syscalls.futex_wait05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.futex_wait05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls futex_wait05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.futex_wait_bitset01.sh b/testcase/syscalls/ltp.syscalls.futex_wait_bitset01.sh new file mode 100755 index 0000000..4f77092 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.futex_wait_bitset01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-342126414 +# @用例名称: ltp.syscalls.futex_wait_bitset01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.futex_wait_bitset01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls futex_wait_bitset01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.futex_waitv01.sh b/testcase/syscalls/ltp.syscalls.futex_waitv01.sh new file mode 100755 index 0000000..6ebf8db --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.futex_waitv01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141853-684205612 +# @用例名称: ltp.syscalls.futex_waitv01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.futex_waitv01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls futex_waitv01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.futex_waitv02.sh b/testcase/syscalls/ltp.syscalls.futex_waitv02.sh new file mode 100755 index 0000000..ace5382 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.futex_waitv02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141853-747022893 +# @用例名称: ltp.syscalls.futex_waitv02 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.futex_waitv02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls futex_waitv02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.futex_waitv03.sh b/testcase/syscalls/ltp.syscalls.futex_waitv03.sh new file mode 100755 index 0000000..c728b32 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.futex_waitv03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141853-811210768 +# @用例名称: ltp.syscalls.futex_waitv03 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.futex_waitv03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls futex_waitv03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.futex_wake01.sh b/testcase/syscalls/ltp.syscalls.futex_wake01.sh new file mode 100755 index 0000000..83e0acf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.futex_wake01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-307745920 +# @用例名称: ltp.syscalls.futex_wake01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.futex_wake01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls futex_wake01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.futex_wake02.sh b/testcase/syscalls/ltp.syscalls.futex_wake02.sh new file mode 100755 index 0000000..175a72d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.futex_wake02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-316360463 +# @用例名称: ltp.syscalls.futex_wake02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.futex_wake02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls futex_wake02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.futex_wake03.sh b/testcase/syscalls/ltp.syscalls.futex_wake03.sh new file mode 100755 index 0000000..d947f3c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.futex_wake03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-325106882 +# @用例名称: ltp.syscalls.futex_wake03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.futex_wake03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls futex_wake03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.futex_wake04.sh b/testcase/syscalls/ltp.syscalls.futex_wake04.sh new file mode 100755 index 0000000..98356d0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.futex_wake04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-333584137 +# @用例名称: ltp.syscalls.futex_wake04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.futex_wake04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls futex_wake04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.futimesat01.sh b/testcase/syscalls/ltp.syscalls.futimesat01.sh new file mode 100755 index 0000000..edb33ba --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.futimesat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-892914239 +# @用例名称: ltp.syscalls.futimesat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.futimesat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls futimesat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.get_mempolicy01.sh b/testcase/syscalls/ltp.syscalls.get_mempolicy01.sh new file mode 100755 index 0000000..e7a420f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.get_mempolicy01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-519200217 +# @用例名称: ltp.syscalls.get_mempolicy01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.get_mempolicy01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls get_mempolicy01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.get_mempolicy02.sh b/testcase/syscalls/ltp.syscalls.get_mempolicy02.sh new file mode 100755 index 0000000..a6a93e9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.get_mempolicy02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-527755409 +# @用例名称: ltp.syscalls.get_mempolicy02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.get_mempolicy02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls get_mempolicy02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.get_robust_list01.sh b/testcase/syscalls/ltp.syscalls.get_robust_list01.sh new file mode 100755 index 0000000..6fe3f41 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.get_robust_list01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-536446494 +# @用例名称: ltp.syscalls.get_robust_list01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.get_robust_list01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls get_robust_list01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getcontext01.sh b/testcase/syscalls/ltp.syscalls.getcontext01.sh new file mode 100755 index 0000000..c422cee --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getcontext01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-903371280 +# @用例名称: ltp.syscalls.getcontext01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getcontext01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getcontext01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getcpu01.sh b/testcase/syscalls/ltp.syscalls.getcpu01.sh new file mode 100755 index 0000000..be2e341 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getcpu01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-913976337 +# @用例名称: ltp.syscalls.getcpu01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getcpu01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getcpu01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getcwd01.sh b/testcase/syscalls/ltp.syscalls.getcwd01.sh new file mode 100755 index 0000000..6b0180f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getcwd01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-924335765 +# @用例名称: ltp.syscalls.getcwd01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getcwd01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getcwd01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getcwd02.sh b/testcase/syscalls/ltp.syscalls.getcwd02.sh new file mode 100755 index 0000000..79ebd1e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getcwd02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-937849165 +# @用例名称: ltp.syscalls.getcwd02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getcwd02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getcwd02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getcwd03.sh b/testcase/syscalls/ltp.syscalls.getcwd03.sh new file mode 100755 index 0000000..c7bd758 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getcwd03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-950777029 +# @用例名称: ltp.syscalls.getcwd03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getcwd03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getcwd03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getcwd04.sh b/testcase/syscalls/ltp.syscalls.getcwd04.sh new file mode 100755 index 0000000..4d5cd66 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getcwd04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-959539068 +# @用例名称: ltp.syscalls.getcwd04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getcwd04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getcwd04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getdents01.sh b/testcase/syscalls/ltp.syscalls.getdents01.sh new file mode 100755 index 0000000..d5aa415 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getdents01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-970087248 +# @用例名称: ltp.syscalls.getdents01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getdents01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getdents01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getdents02.sh b/testcase/syscalls/ltp.syscalls.getdents02.sh new file mode 100755 index 0000000..ff69270 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getdents02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-978834649 +# @用例名称: ltp.syscalls.getdents02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getdents02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getdents02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getdomainname01.sh b/testcase/syscalls/ltp.syscalls.getdomainname01.sh new file mode 100755 index 0000000..2ca3868 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getdomainname01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213014-989231287 +# @用例名称: ltp.syscalls.getdomainname01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getdomainname01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getdomainname01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getegid01.sh b/testcase/syscalls/ltp.syscalls.getegid01.sh new file mode 100755 index 0000000..f75af69 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getegid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-010143214 +# @用例名称: ltp.syscalls.getegid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getegid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getegid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getegid01_16.sh b/testcase/syscalls/ltp.syscalls.getegid01_16.sh new file mode 100755 index 0000000..7668211 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getegid01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-018590683 +# @用例名称: ltp.syscalls.getegid01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getegid01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getegid01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getegid02.sh b/testcase/syscalls/ltp.syscalls.getegid02.sh new file mode 100755 index 0000000..9b82656 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getegid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-027096933 +# @用例名称: ltp.syscalls.getegid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getegid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getegid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getegid02_16.sh b/testcase/syscalls/ltp.syscalls.getegid02_16.sh new file mode 100755 index 0000000..50d7e06 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getegid02_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-035595137 +# @用例名称: ltp.syscalls.getegid02_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getegid02_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getegid02_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.geteuid01.sh b/testcase/syscalls/ltp.syscalls.geteuid01.sh new file mode 100755 index 0000000..326bb13 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.geteuid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-046126577 +# @用例名称: ltp.syscalls.geteuid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.geteuid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls geteuid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.geteuid01_16.sh b/testcase/syscalls/ltp.syscalls.geteuid01_16.sh new file mode 100755 index 0000000..3dff6eb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.geteuid01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-054632185 +# @用例名称: ltp.syscalls.geteuid01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.geteuid01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls geteuid01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.geteuid02.sh b/testcase/syscalls/ltp.syscalls.geteuid02.sh new file mode 100755 index 0000000..5f6811b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.geteuid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-067177945 +# @用例名称: ltp.syscalls.geteuid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.geteuid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls geteuid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.geteuid02_16.sh b/testcase/syscalls/ltp.syscalls.geteuid02_16.sh new file mode 100755 index 0000000..1ca7021 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.geteuid02_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-078245307 +# @用例名称: ltp.syscalls.geteuid02_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.geteuid02_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls geteuid02_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getgid01.sh b/testcase/syscalls/ltp.syscalls.getgid01.sh new file mode 100755 index 0000000..fde32d4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getgid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-088894347 +# @用例名称: ltp.syscalls.getgid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getgid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getgid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getgid01_16.sh b/testcase/syscalls/ltp.syscalls.getgid01_16.sh new file mode 100755 index 0000000..d9fa1fe --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getgid01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-097372234 +# @用例名称: ltp.syscalls.getgid01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getgid01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getgid01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getgid03.sh b/testcase/syscalls/ltp.syscalls.getgid03.sh new file mode 100755 index 0000000..cfa336e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getgid03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-105998507 +# @用例名称: ltp.syscalls.getgid03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getgid03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getgid03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getgid03_16.sh b/testcase/syscalls/ltp.syscalls.getgid03_16.sh new file mode 100755 index 0000000..3197fc3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getgid03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-114831318 +# @用例名称: ltp.syscalls.getgid03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getgid03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getgid03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getgroups01.sh b/testcase/syscalls/ltp.syscalls.getgroups01.sh new file mode 100755 index 0000000..e5ba674 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getgroups01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-125329776 +# @用例名称: ltp.syscalls.getgroups01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getgroups01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getgroups01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getgroups01_16.sh b/testcase/syscalls/ltp.syscalls.getgroups01_16.sh new file mode 100755 index 0000000..faf984b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getgroups01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-133818553 +# @用例名称: ltp.syscalls.getgroups01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getgroups01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getgroups01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getgroups03.sh b/testcase/syscalls/ltp.syscalls.getgroups03.sh new file mode 100755 index 0000000..485cf28 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getgroups03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-142384554 +# @用例名称: ltp.syscalls.getgroups03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getgroups03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getgroups03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getgroups03_16.sh b/testcase/syscalls/ltp.syscalls.getgroups03_16.sh new file mode 100755 index 0000000..60bb140 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getgroups03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-151974663 +# @用例名称: ltp.syscalls.getgroups03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getgroups03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getgroups03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.gethostbyname_r01.sh b/testcase/syscalls/ltp.syscalls.gethostbyname_r01.sh new file mode 100755 index 0000000..bfbe795 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.gethostbyname_r01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-162421564 +# @用例名称: ltp.syscalls.gethostbyname_r01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.gethostbyname_r01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls gethostbyname_r01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.gethostid01.sh b/testcase/syscalls/ltp.syscalls.gethostid01.sh new file mode 100755 index 0000000..74f74fd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.gethostid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-173065234 +# @用例名称: ltp.syscalls.gethostid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.gethostid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls gethostid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.gethostname01.sh b/testcase/syscalls/ltp.syscalls.gethostname01.sh new file mode 100755 index 0000000..750c8e5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.gethostname01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-183595291 +# @用例名称: ltp.syscalls.gethostname01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.gethostname01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls gethostname01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.gethostname02.sh b/testcase/syscalls/ltp.syscalls.gethostname02.sh new file mode 100755 index 0000000..53f2dc8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.gethostname02.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172838-931561044 +# @用例名称: ltp.syscalls.gethostname02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.gethostname02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls gethostname02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getitimer01.sh b/testcase/syscalls/ltp.syscalls.getitimer01.sh new file mode 100755 index 0000000..859fd8a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getitimer01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-194116922 +# @用例名称: ltp.syscalls.getitimer01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getitimer01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getitimer01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getitimer02.sh b/testcase/syscalls/ltp.syscalls.getitimer02.sh new file mode 100755 index 0000000..3edcf98 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getitimer02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-202682112 +# @用例名称: ltp.syscalls.getitimer02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getitimer02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getitimer02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getpagesize01.sh b/testcase/syscalls/ltp.syscalls.getpagesize01.sh new file mode 100755 index 0000000..03ba8d2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getpagesize01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-221598794 +# @用例名称: ltp.syscalls.getpagesize01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getpagesize01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getpagesize01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getpeername01.sh b/testcase/syscalls/ltp.syscalls.getpeername01.sh new file mode 100755 index 0000000..7bd7529 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getpeername01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-232159970 +# @用例名称: ltp.syscalls.getpeername01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getpeername01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getpeername01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getpgid01.sh b/testcase/syscalls/ltp.syscalls.getpgid01.sh new file mode 100755 index 0000000..802bc6d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getpgid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-242983877 +# @用例名称: ltp.syscalls.getpgid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getpgid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getpgid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getpgid02.sh b/testcase/syscalls/ltp.syscalls.getpgid02.sh new file mode 100755 index 0000000..d140bc9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getpgid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-251535251 +# @用例名称: ltp.syscalls.getpgid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getpgid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getpgid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getpgrp01.sh b/testcase/syscalls/ltp.syscalls.getpgrp01.sh new file mode 100755 index 0000000..2ad099e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getpgrp01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-262204559 +# @用例名称: ltp.syscalls.getpgrp01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getpgrp01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getpgrp01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getpid01.sh b/testcase/syscalls/ltp.syscalls.getpid01.sh new file mode 100755 index 0000000..dbd1963 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getpid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-275207273 +# @用例名称: ltp.syscalls.getpid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getpid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getpid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getpid02.sh b/testcase/syscalls/ltp.syscalls.getpid02.sh new file mode 100755 index 0000000..ca667d2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getpid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-291706552 +# @用例名称: ltp.syscalls.getpid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getpid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getpid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getppid01.sh b/testcase/syscalls/ltp.syscalls.getppid01.sh new file mode 100755 index 0000000..4cc0dd7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getppid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-303600942 +# @用例名称: ltp.syscalls.getppid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getppid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getppid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getppid02.sh b/testcase/syscalls/ltp.syscalls.getppid02.sh new file mode 100755 index 0000000..20f118f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getppid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-313305815 +# @用例名称: ltp.syscalls.getppid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getppid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getppid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getpriority01.sh b/testcase/syscalls/ltp.syscalls.getpriority01.sh new file mode 100755 index 0000000..56c001d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getpriority01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-323666144 +# @用例名称: ltp.syscalls.getpriority01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getpriority01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getpriority01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getpriority02.sh b/testcase/syscalls/ltp.syscalls.getpriority02.sh new file mode 100755 index 0000000..c559962 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getpriority02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-332333425 +# @用例名称: ltp.syscalls.getpriority02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getpriority02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getpriority02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getrandom01.sh b/testcase/syscalls/ltp.syscalls.getrandom01.sh new file mode 100755 index 0000000..f8f0ef2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getrandom01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-343309436 +# @用例名称: ltp.syscalls.getrandom01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getrandom01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getrandom01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getrandom02.sh b/testcase/syscalls/ltp.syscalls.getrandom02.sh new file mode 100755 index 0000000..de01a86 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getrandom02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-355593497 +# @用例名称: ltp.syscalls.getrandom02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getrandom02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getrandom02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getrandom03.sh b/testcase/syscalls/ltp.syscalls.getrandom03.sh new file mode 100755 index 0000000..1aa2af0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getrandom03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-364161732 +# @用例名称: ltp.syscalls.getrandom03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getrandom03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getrandom03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getrandom04.sh b/testcase/syscalls/ltp.syscalls.getrandom04.sh new file mode 100755 index 0000000..d16bcd3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getrandom04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-372731871 +# @用例名称: ltp.syscalls.getrandom04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getrandom04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getrandom04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getrandom05.sh b/testcase/syscalls/ltp.syscalls.getrandom05.sh new file mode 100755 index 0000000..7d36b40 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getrandom05.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172839-005041554 +# @用例名称: ltp.syscalls.getrandom05 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getrandom05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getrandom05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getresgid01.sh b/testcase/syscalls/ltp.syscalls.getresgid01.sh new file mode 100755 index 0000000..4ec4730 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getresgid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-384448549 +# @用例名称: ltp.syscalls.getresgid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getresgid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getresgid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getresgid01_16.sh b/testcase/syscalls/ltp.syscalls.getresgid01_16.sh new file mode 100755 index 0000000..4b30ed4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getresgid01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-393062550 +# @用例名称: ltp.syscalls.getresgid01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getresgid01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getresgid01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getresgid02.sh b/testcase/syscalls/ltp.syscalls.getresgid02.sh new file mode 100755 index 0000000..60e900d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getresgid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-401564141 +# @用例名称: ltp.syscalls.getresgid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getresgid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getresgid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getresgid02_16.sh b/testcase/syscalls/ltp.syscalls.getresgid02_16.sh new file mode 100755 index 0000000..9b9827b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getresgid02_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-410427279 +# @用例名称: ltp.syscalls.getresgid02_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getresgid02_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getresgid02_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getresgid03.sh b/testcase/syscalls/ltp.syscalls.getresgid03.sh new file mode 100755 index 0000000..83c9058 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getresgid03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-418983903 +# @用例名称: ltp.syscalls.getresgid03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getresgid03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getresgid03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getresgid03_16.sh b/testcase/syscalls/ltp.syscalls.getresgid03_16.sh new file mode 100755 index 0000000..5c9f8b8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getresgid03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-427574740 +# @用例名称: ltp.syscalls.getresgid03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getresgid03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getresgid03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getresuid01.sh b/testcase/syscalls/ltp.syscalls.getresuid01.sh new file mode 100755 index 0000000..077564d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getresuid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-438076383 +# @用例名称: ltp.syscalls.getresuid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getresuid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getresuid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getresuid01_16.sh b/testcase/syscalls/ltp.syscalls.getresuid01_16.sh new file mode 100755 index 0000000..ef13180 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getresuid01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-446577964 +# @用例名称: ltp.syscalls.getresuid01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getresuid01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getresuid01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getresuid02.sh b/testcase/syscalls/ltp.syscalls.getresuid02.sh new file mode 100755 index 0000000..a5d29c0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getresuid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-455106045 +# @用例名称: ltp.syscalls.getresuid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getresuid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getresuid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getresuid02_16.sh b/testcase/syscalls/ltp.syscalls.getresuid02_16.sh new file mode 100755 index 0000000..d994928 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getresuid02_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-463704036 +# @用例名称: ltp.syscalls.getresuid02_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getresuid02_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getresuid02_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getresuid03.sh b/testcase/syscalls/ltp.syscalls.getresuid03.sh new file mode 100755 index 0000000..8abc131 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getresuid03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-472349977 +# @用例名称: ltp.syscalls.getresuid03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getresuid03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getresuid03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getresuid03_16.sh b/testcase/syscalls/ltp.syscalls.getresuid03_16.sh new file mode 100755 index 0000000..4e1cf75 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getresuid03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-481003723 +# @用例名称: ltp.syscalls.getresuid03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getresuid03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getresuid03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getrlimit01.sh b/testcase/syscalls/ltp.syscalls.getrlimit01.sh new file mode 100755 index 0000000..75db19d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getrlimit01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-491546915 +# @用例名称: ltp.syscalls.getrlimit01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getrlimit01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getrlimit01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getrlimit02.sh b/testcase/syscalls/ltp.syscalls.getrlimit02.sh new file mode 100755 index 0000000..870edf6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getrlimit02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-500080514 +# @用例名称: ltp.syscalls.getrlimit02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getrlimit02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getrlimit02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getrlimit03.sh b/testcase/syscalls/ltp.syscalls.getrlimit03.sh new file mode 100755 index 0000000..520e9ac --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getrlimit03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-508727859 +# @用例名称: ltp.syscalls.getrlimit03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getrlimit03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getrlimit03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getrusage01.sh b/testcase/syscalls/ltp.syscalls.getrusage01.sh new file mode 100755 index 0000000..1f7286b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getrusage01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-546976681 +# @用例名称: ltp.syscalls.getrusage01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getrusage01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getrusage01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getrusage02.sh b/testcase/syscalls/ltp.syscalls.getrusage02.sh new file mode 100755 index 0000000..d31c521 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getrusage02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-555615890 +# @用例名称: ltp.syscalls.getrusage02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getrusage02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getrusage02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getrusage03.sh b/testcase/syscalls/ltp.syscalls.getrusage03.sh new file mode 100755 index 0000000..bc569e0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getrusage03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-564536224 +# @用例名称: ltp.syscalls.getrusage03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getrusage03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getrusage03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getrusage04.sh b/testcase/syscalls/ltp.syscalls.getrusage04.sh new file mode 100755 index 0000000..b83b406 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getrusage04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-573398731 +# @用例名称: ltp.syscalls.getrusage04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getrusage04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getrusage04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getsid01.sh b/testcase/syscalls/ltp.syscalls.getsid01.sh new file mode 100755 index 0000000..bec84aa --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getsid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-583865048 +# @用例名称: ltp.syscalls.getsid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getsid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getsid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getsid02.sh b/testcase/syscalls/ltp.syscalls.getsid02.sh new file mode 100755 index 0000000..4a65490 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getsid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-592363253 +# @用例名称: ltp.syscalls.getsid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getsid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getsid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getsockname01.sh b/testcase/syscalls/ltp.syscalls.getsockname01.sh new file mode 100755 index 0000000..75d94b0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getsockname01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-602845630 +# @用例名称: ltp.syscalls.getsockname01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getsockname01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getsockname01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getsockopt01.sh b/testcase/syscalls/ltp.syscalls.getsockopt01.sh new file mode 100755 index 0000000..5f940d6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getsockopt01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-613522503 +# @用例名称: ltp.syscalls.getsockopt01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getsockopt01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getsockopt01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getsockopt02.sh b/testcase/syscalls/ltp.syscalls.getsockopt02.sh new file mode 100755 index 0000000..4d041fd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getsockopt02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-622156721 +# @用例名称: ltp.syscalls.getsockopt02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getsockopt02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getsockopt02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.gettid01.sh b/testcase/syscalls/ltp.syscalls.gettid01.sh new file mode 100755 index 0000000..27268de --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.gettid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-633807656 +# @用例名称: ltp.syscalls.gettid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.gettid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls gettid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.gettid02.sh b/testcase/syscalls/ltp.syscalls.gettid02.sh new file mode 100755 index 0000000..12e5266 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.gettid02.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172839-087930437 +# @用例名称: ltp.syscalls.gettid02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.gettid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls gettid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.gettimeofday01.sh b/testcase/syscalls/ltp.syscalls.gettimeofday01.sh new file mode 100755 index 0000000..a548de7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.gettimeofday01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-644352942 +# @用例名称: ltp.syscalls.gettimeofday01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.gettimeofday01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls gettimeofday01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.gettimeofday02.sh b/testcase/syscalls/ltp.syscalls.gettimeofday02.sh new file mode 100755 index 0000000..5754cc7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.gettimeofday02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-652885821 +# @用例名称: ltp.syscalls.gettimeofday02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.gettimeofday02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls gettimeofday02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getuid01.sh b/testcase/syscalls/ltp.syscalls.getuid01.sh new file mode 100755 index 0000000..9540824 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getuid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-663555960 +# @用例名称: ltp.syscalls.getuid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getuid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getuid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getuid01_16.sh b/testcase/syscalls/ltp.syscalls.getuid01_16.sh new file mode 100755 index 0000000..7d27977 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getuid01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-672385585 +# @用例名称: ltp.syscalls.getuid01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getuid01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getuid01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getuid03.sh b/testcase/syscalls/ltp.syscalls.getuid03.sh new file mode 100755 index 0000000..8543f8c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getuid03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-681129930 +# @用例名称: ltp.syscalls.getuid03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getuid03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getuid03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getuid03_16.sh b/testcase/syscalls/ltp.syscalls.getuid03_16.sh new file mode 100755 index 0000000..3466ba0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getuid03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-689652200 +# @用例名称: ltp.syscalls.getuid03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getuid03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getuid03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getxattr01.sh b/testcase/syscalls/ltp.syscalls.getxattr01.sh new file mode 100755 index 0000000..c38405a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getxattr01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-700111945 +# @用例名称: ltp.syscalls.getxattr01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getxattr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getxattr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getxattr02.sh b/testcase/syscalls/ltp.syscalls.getxattr02.sh new file mode 100755 index 0000000..8b902f1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getxattr02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-708673378 +# @用例名称: ltp.syscalls.getxattr02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getxattr02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getxattr02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getxattr03.sh b/testcase/syscalls/ltp.syscalls.getxattr03.sh new file mode 100755 index 0000000..bbd9ff5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getxattr03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-717240672 +# @用例名称: ltp.syscalls.getxattr03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getxattr03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getxattr03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getxattr04.sh b/testcase/syscalls/ltp.syscalls.getxattr04.sh new file mode 100755 index 0000000..21216cc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getxattr04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-725758273 +# @用例名称: ltp.syscalls.getxattr04 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getxattr04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getxattr04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getxattr05.sh b/testcase/syscalls/ltp.syscalls.getxattr05.sh new file mode 100755 index 0000000..a4af02f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getxattr05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-734350613 +# @用例名称: ltp.syscalls.getxattr05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getxattr05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getxattr05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.init_module01.sh b/testcase/syscalls/ltp.syscalls.init_module01.sh new file mode 100755 index 0000000..3fbabde --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.init_module01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-744727984 +# @用例名称: ltp.syscalls.init_module01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.init_module01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls init_module01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.init_module02.sh b/testcase/syscalls/ltp.syscalls.init_module02.sh new file mode 100755 index 0000000..2604824 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.init_module02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-753904087 +# @用例名称: ltp.syscalls.init_module02 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.init_module02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls init_module02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.inotify01.sh b/testcase/syscalls/ltp.syscalls.inotify01.sh new file mode 100755 index 0000000..0434621 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.inotify01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-000749590 +# @用例名称: ltp.syscalls.inotify01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.inotify01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls inotify01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.inotify02.sh b/testcase/syscalls/ltp.syscalls.inotify02.sh new file mode 100755 index 0000000..f542df8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.inotify02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-012194560 +# @用例名称: ltp.syscalls.inotify02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.inotify02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls inotify02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.inotify03.sh b/testcase/syscalls/ltp.syscalls.inotify03.sh new file mode 100755 index 0000000..4618afc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.inotify03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-021200555 +# @用例名称: ltp.syscalls.inotify03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.inotify03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls inotify03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.inotify04.sh b/testcase/syscalls/ltp.syscalls.inotify04.sh new file mode 100755 index 0000000..127a476 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.inotify04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-029920754 +# @用例名称: ltp.syscalls.inotify04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.inotify04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls inotify04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.inotify05.sh b/testcase/syscalls/ltp.syscalls.inotify05.sh new file mode 100755 index 0000000..039b960 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.inotify05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-038476837 +# @用例名称: ltp.syscalls.inotify05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.inotify05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls inotify05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.inotify06.sh b/testcase/syscalls/ltp.syscalls.inotify06.sh new file mode 100755 index 0000000..a22d7e3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.inotify06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-046942952 +# @用例名称: ltp.syscalls.inotify06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.inotify06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls inotify06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.inotify07.sh b/testcase/syscalls/ltp.syscalls.inotify07.sh new file mode 100755 index 0000000..1ff658c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.inotify07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-055434323 +# @用例名称: ltp.syscalls.inotify07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.inotify07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls inotify07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.inotify08.sh b/testcase/syscalls/ltp.syscalls.inotify08.sh new file mode 100755 index 0000000..afc27ed --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.inotify08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-064474302 +# @用例名称: ltp.syscalls.inotify08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.inotify08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls inotify08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.inotify09.sh b/testcase/syscalls/ltp.syscalls.inotify09.sh new file mode 100755 index 0000000..166f654 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.inotify09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-073245828 +# @用例名称: ltp.syscalls.inotify09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.inotify09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls inotify09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.inotify10.sh b/testcase/syscalls/ltp.syscalls.inotify10.sh new file mode 100755 index 0000000..cf14f7c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.inotify10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-081915172 +# @用例名称: ltp.syscalls.inotify10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.inotify10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls inotify10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.inotify11.sh b/testcase/syscalls/ltp.syscalls.inotify11.sh new file mode 100755 index 0000000..5f7f308 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.inotify11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141851-752885807 +# @用例名称: ltp.syscalls.inotify11 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.inotify11 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls inotify11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.inotify12.sh b/testcase/syscalls/ltp.syscalls.inotify12.sh new file mode 100755 index 0000000..8fda8c2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.inotify12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141851-817734476 +# @用例名称: ltp.syscalls.inotify12 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.inotify12 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls inotify12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.inotify_init1_01.sh b/testcase/syscalls/ltp.syscalls.inotify_init1_01.sh new file mode 100755 index 0000000..47c7234 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.inotify_init1_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-980438658 +# @用例名称: ltp.syscalls.inotify_init1_01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.inotify_init1_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls inotify_init1_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.inotify_init1_02.sh b/testcase/syscalls/ltp.syscalls.inotify_init1_02.sh new file mode 100755 index 0000000..b4480f6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.inotify_init1_02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-990249780 +# @用例名称: ltp.syscalls.inotify_init1_02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.inotify_init1_02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls inotify_init1_02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.io_cancel01.sh b/testcase/syscalls/ltp.syscalls.io_cancel01.sh new file mode 100755 index 0000000..38b884a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.io_cancel01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-368359264 +# @用例名称: ltp.syscalls.io_cancel01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.io_cancel01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls io_cancel01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.io_cancel02.sh b/testcase/syscalls/ltp.syscalls.io_cancel02.sh new file mode 100755 index 0000000..8419d8a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.io_cancel02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-376939422 +# @用例名称: ltp.syscalls.io_cancel02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.io_cancel02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls io_cancel02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.io_destroy01.sh b/testcase/syscalls/ltp.syscalls.io_destroy01.sh new file mode 100755 index 0000000..46d7952 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.io_destroy01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-385533335 +# @用例名称: ltp.syscalls.io_destroy01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.io_destroy01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls io_destroy01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.io_destroy02.sh b/testcase/syscalls/ltp.syscalls.io_destroy02.sh new file mode 100755 index 0000000..b47ed44 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.io_destroy02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-394141216 +# @用例名称: ltp.syscalls.io_destroy02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.io_destroy02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls io_destroy02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.io_getevents01.sh b/testcase/syscalls/ltp.syscalls.io_getevents01.sh new file mode 100755 index 0000000..3b97d7a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.io_getevents01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-402738686 +# @用例名称: ltp.syscalls.io_getevents01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.io_getevents01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls io_getevents01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.io_getevents02.sh b/testcase/syscalls/ltp.syscalls.io_getevents02.sh new file mode 100755 index 0000000..f6467f5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.io_getevents02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-411236830 +# @用例名称: ltp.syscalls.io_getevents02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.io_getevents02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls io_getevents02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.io_pgetevents01.sh b/testcase/syscalls/ltp.syscalls.io_pgetevents01.sh new file mode 100755 index 0000000..89f4df9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.io_pgetevents01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-421861133 +# @用例名称: ltp.syscalls.io_pgetevents01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.io_pgetevents01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls io_pgetevents01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.io_pgetevents02.sh b/testcase/syscalls/ltp.syscalls.io_pgetevents02.sh new file mode 100755 index 0000000..7a650af --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.io_pgetevents02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-430519438 +# @用例名称: ltp.syscalls.io_pgetevents02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.io_pgetevents02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls io_pgetevents02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.io_setup01.sh b/testcase/syscalls/ltp.syscalls.io_setup01.sh new file mode 100755 index 0000000..95b3d56 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.io_setup01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-441101723 +# @用例名称: ltp.syscalls.io_setup01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.io_setup01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls io_setup01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.io_setup02.sh b/testcase/syscalls/ltp.syscalls.io_setup02.sh new file mode 100755 index 0000000..46d45be --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.io_setup02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-449633039 +# @用例名称: ltp.syscalls.io_setup02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.io_setup02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls io_setup02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.io_submit01.sh b/testcase/syscalls/ltp.syscalls.io_submit01.sh new file mode 100755 index 0000000..f449679 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.io_submit01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-458190464 +# @用例名称: ltp.syscalls.io_submit01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.io_submit01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls io_submit01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.io_submit02.sh b/testcase/syscalls/ltp.syscalls.io_submit02.sh new file mode 100755 index 0000000..96b5335 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.io_submit02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-466948495 +# @用例名称: ltp.syscalls.io_submit02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.io_submit02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls io_submit02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.io_submit03.sh b/testcase/syscalls/ltp.syscalls.io_submit03.sh new file mode 100755 index 0000000..4105972 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.io_submit03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-475523734 +# @用例名称: ltp.syscalls.io_submit03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.io_submit03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls io_submit03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.io_uring01.sh b/testcase/syscalls/ltp.syscalls.io_uring01.sh new file mode 100755 index 0000000..1c5cf27 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.io_uring01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-499685667 +# @用例名称: ltp.syscalls.io_uring01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.io_uring01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls io_uring01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.io_uring02.sh b/testcase/syscalls/ltp.syscalls.io_uring02.sh new file mode 100755 index 0000000..c8c3013 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.io_uring02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-508210461 +# @用例名称: ltp.syscalls.io_uring02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.io_uring02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls io_uring02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl01.sh b/testcase/syscalls/ltp.syscalls.ioctl01.sh new file mode 100755 index 0000000..58670ea --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl01.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172839-162699457 +# @用例名称: ltp.syscalls.ioctl01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl02.sh b/testcase/syscalls/ltp.syscalls.ioctl02.sh new file mode 100755 index 0000000..abf41a9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl02.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172839-239708182 +# @用例名称: ltp.syscalls.ioctl02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl03.sh b/testcase/syscalls/ltp.syscalls.ioctl03.sh new file mode 100755 index 0000000..42b26f4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-779152540 +# @用例名称: ltp.syscalls.ioctl03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl04.sh b/testcase/syscalls/ltp.syscalls.ioctl04.sh new file mode 100755 index 0000000..29749de --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-787747686 +# @用例名称: ltp.syscalls.ioctl04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl05.sh b/testcase/syscalls/ltp.syscalls.ioctl05.sh new file mode 100755 index 0000000..494d364 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-796218519 +# @用例名称: ltp.syscalls.ioctl05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl06.sh b/testcase/syscalls/ltp.syscalls.ioctl06.sh new file mode 100755 index 0000000..b935c84 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-804855773 +# @用例名称: ltp.syscalls.ioctl06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl07.sh b/testcase/syscalls/ltp.syscalls.ioctl07.sh new file mode 100755 index 0000000..ae8ad9d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-813509369 +# @用例名称: ltp.syscalls.ioctl07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl08.sh b/testcase/syscalls/ltp.syscalls.ioctl08.sh new file mode 100755 index 0000000..4e1e0f0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-823080672 +# @用例名称: ltp.syscalls.ioctl08 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl09.sh b/testcase/syscalls/ltp.syscalls.ioctl09.sh new file mode 100755 index 0000000..4fc0849 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-831641874 +# @用例名称: ltp.syscalls.ioctl09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_loop01.sh b/testcase/syscalls/ltp.syscalls.ioctl_loop01.sh new file mode 100755 index 0000000..36dcda0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_loop01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-842063959 +# @用例名称: ltp.syscalls.ioctl_loop01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_loop01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_loop01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_loop02.sh b/testcase/syscalls/ltp.syscalls.ioctl_loop02.sh new file mode 100755 index 0000000..915963e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_loop02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-853949874 +# @用例名称: ltp.syscalls.ioctl_loop02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_loop02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_loop02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_loop03.sh b/testcase/syscalls/ltp.syscalls.ioctl_loop03.sh new file mode 100755 index 0000000..2f634d1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_loop03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-862738462 +# @用例名称: ltp.syscalls.ioctl_loop03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_loop03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_loop03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_loop04.sh b/testcase/syscalls/ltp.syscalls.ioctl_loop04.sh new file mode 100755 index 0000000..dedb8dc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_loop04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-871385004 +# @用例名称: ltp.syscalls.ioctl_loop04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_loop04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_loop04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_loop05.sh b/testcase/syscalls/ltp.syscalls.ioctl_loop05.sh new file mode 100755 index 0000000..899731b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_loop05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-880044119 +# @用例名称: ltp.syscalls.ioctl_loop05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_loop05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_loop05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_loop06.sh b/testcase/syscalls/ltp.syscalls.ioctl_loop06.sh new file mode 100755 index 0000000..8d3f280 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_loop06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-888708054 +# @用例名称: ltp.syscalls.ioctl_loop06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_loop06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_loop06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_loop07.sh b/testcase/syscalls/ltp.syscalls.ioctl_loop07.sh new file mode 100755 index 0000000..38fb510 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_loop07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-897192693 +# @用例名称: ltp.syscalls.ioctl_loop07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_loop07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_loop07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ns01.sh b/testcase/syscalls/ltp.syscalls.ioctl_ns01.sh new file mode 100755 index 0000000..2662e4e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_ns01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-907607845 +# @用例名称: ltp.syscalls.ioctl_ns01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_ns01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_ns01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ns02.sh b/testcase/syscalls/ltp.syscalls.ioctl_ns02.sh new file mode 100755 index 0000000..01f0897 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_ns02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-916223510 +# @用例名称: ltp.syscalls.ioctl_ns02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_ns02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_ns02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ns03.sh b/testcase/syscalls/ltp.syscalls.ioctl_ns03.sh new file mode 100755 index 0000000..f6bec6e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_ns03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-924777868 +# @用例名称: ltp.syscalls.ioctl_ns03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_ns03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_ns03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ns04.sh b/testcase/syscalls/ltp.syscalls.ioctl_ns04.sh new file mode 100755 index 0000000..887f8ac --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_ns04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-933369939 +# @用例名称: ltp.syscalls.ioctl_ns04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_ns04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_ns04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ns05.sh b/testcase/syscalls/ltp.syscalls.ioctl_ns05.sh new file mode 100755 index 0000000..b0673c2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_ns05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-942063469 +# @用例名称: ltp.syscalls.ioctl_ns05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_ns05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_ns05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ns06.sh b/testcase/syscalls/ltp.syscalls.ioctl_ns06.sh new file mode 100755 index 0000000..29fb3cc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_ns06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-950591058 +# @用例名称: ltp.syscalls.ioctl_ns06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_ns06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_ns06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ns07.sh b/testcase/syscalls/ltp.syscalls.ioctl_ns07.sh new file mode 100755 index 0000000..04258c3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_ns07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-959199720 +# @用例名称: ltp.syscalls.ioctl_ns07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_ns07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_ns07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_sg01.sh b/testcase/syscalls/ltp.syscalls.ioctl_sg01.sh new file mode 100755 index 0000000..24e2032 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_sg01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213015-969809466 +# @用例名称: ltp.syscalls.ioctl_sg01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_sg01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_sg01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioperm01.sh b/testcase/syscalls/ltp.syscalls.ioperm01.sh new file mode 100755 index 0000000..8cecc58 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioperm01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-292421877 +# @用例名称: ltp.syscalls.ioperm01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioperm01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioperm01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioperm02.sh b/testcase/syscalls/ltp.syscalls.ioperm02.sh new file mode 100755 index 0000000..4c686ec --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioperm02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-300881599 +# @用例名称: ltp.syscalls.ioperm02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioperm02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioperm02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.iopl01.sh b/testcase/syscalls/ltp.syscalls.iopl01.sh new file mode 100755 index 0000000..2053f08 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.iopl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-311878711 +# @用例名称: ltp.syscalls.iopl01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.iopl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls iopl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.iopl02.sh b/testcase/syscalls/ltp.syscalls.iopl02.sh new file mode 100755 index 0000000..748434d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.iopl02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-320458007 +# @用例名称: ltp.syscalls.iopl02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.iopl02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls iopl02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioprio_get01.sh b/testcase/syscalls/ltp.syscalls.ioprio_get01.sh new file mode 100755 index 0000000..5035e8d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioprio_get01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-331082160 +# @用例名称: ltp.syscalls.ioprio_get01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioprio_get01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioprio_get01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioprio_set01.sh b/testcase/syscalls/ltp.syscalls.ioprio_set01.sh new file mode 100755 index 0000000..61938cc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioprio_set01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-339698316 +# @用例名称: ltp.syscalls.ioprio_set01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioprio_set01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioprio_set01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioprio_set02.sh b/testcase/syscalls/ltp.syscalls.ioprio_set02.sh new file mode 100755 index 0000000..2458cb4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioprio_set02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-348825156 +# @用例名称: ltp.syscalls.ioprio_set02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioprio_set02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioprio_set02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioprio_set03.sh b/testcase/syscalls/ltp.syscalls.ioprio_set03.sh new file mode 100755 index 0000000..cc2fa10 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioprio_set03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-357574891 +# @用例名称: ltp.syscalls.ioprio_set03 +# @用例级别: 1 +# @用例标签: TK5不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioprio_set03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioprio_set03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.kcmp01.sh b/testcase/syscalls/ltp.syscalls.kcmp01.sh new file mode 100755 index 0000000..c3b4e0b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.kcmp01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-556807216 +# @用例名称: ltp.syscalls.kcmp01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.kcmp01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls kcmp01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.kcmp02.sh b/testcase/syscalls/ltp.syscalls.kcmp02.sh new file mode 100755 index 0000000..863aa5f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.kcmp02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-565373498 +# @用例名称: ltp.syscalls.kcmp02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.kcmp02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls kcmp02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.kcmp03.sh b/testcase/syscalls/ltp.syscalls.kcmp03.sh new file mode 100755 index 0000000..e64a608 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.kcmp03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-573903442 +# @用例名称: ltp.syscalls.kcmp03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.kcmp03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls kcmp03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.keyctl01.sh b/testcase/syscalls/ltp.syscalls.keyctl01.sh new file mode 100755 index 0000000..d23103e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.keyctl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-486074710 +# @用例名称: ltp.syscalls.keyctl01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.keyctl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls keyctl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.keyctl02.sh b/testcase/syscalls/ltp.syscalls.keyctl02.sh new file mode 100755 index 0000000..22c2c5a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.keyctl02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-494639479 +# @用例名称: ltp.syscalls.keyctl02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.keyctl02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls keyctl02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.keyctl03.sh b/testcase/syscalls/ltp.syscalls.keyctl03.sh new file mode 100755 index 0000000..890026f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.keyctl03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-503266835 +# @用例名称: ltp.syscalls.keyctl03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.keyctl03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls keyctl03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.keyctl04.sh b/testcase/syscalls/ltp.syscalls.keyctl04.sh new file mode 100755 index 0000000..524a95d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.keyctl04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-511948212 +# @用例名称: ltp.syscalls.keyctl04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.keyctl04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls keyctl04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.keyctl05.sh b/testcase/syscalls/ltp.syscalls.keyctl05.sh new file mode 100755 index 0000000..37a55ea --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.keyctl05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-520599123 +# @用例名称: ltp.syscalls.keyctl05 +# @用例级别: 1 +# @用例标签: TK5不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.keyctl05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls keyctl05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.keyctl06.sh b/testcase/syscalls/ltp.syscalls.keyctl06.sh new file mode 100755 index 0000000..b220b17 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.keyctl06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-529213564 +# @用例名称: ltp.syscalls.keyctl06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.keyctl06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls keyctl06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.keyctl07.sh b/testcase/syscalls/ltp.syscalls.keyctl07.sh new file mode 100755 index 0000000..84dd0c2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.keyctl07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-537918856 +# @用例名称: ltp.syscalls.keyctl07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.keyctl07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls keyctl07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.keyctl08.sh b/testcase/syscalls/ltp.syscalls.keyctl08.sh new file mode 100755 index 0000000..b7defa3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.keyctl08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-546375754 +# @用例名称: ltp.syscalls.keyctl08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.keyctl08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls keyctl08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.keyctl09.sh b/testcase/syscalls/ltp.syscalls.keyctl09.sh new file mode 100755 index 0000000..48cc748 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.keyctl09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141851-883483958 +# @用例名称: ltp.syscalls.keyctl09 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.keyctl09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls keyctl09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.kill02.sh b/testcase/syscalls/ltp.syscalls.kill02.sh new file mode 100755 index 0000000..c0a3725 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.kill02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-584448537 +# @用例名称: ltp.syscalls.kill02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.kill02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls kill02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.kill03.sh b/testcase/syscalls/ltp.syscalls.kill03.sh new file mode 100755 index 0000000..6126966 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.kill03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-593331281 +# @用例名称: ltp.syscalls.kill03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.kill03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls kill03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.kill05.sh b/testcase/syscalls/ltp.syscalls.kill05.sh new file mode 100755 index 0000000..f5ce44b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.kill05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-601903725 +# @用例名称: ltp.syscalls.kill05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.kill05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls kill05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.kill06.sh b/testcase/syscalls/ltp.syscalls.kill06.sh new file mode 100755 index 0000000..18dc7f1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.kill06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-610449158 +# @用例名称: ltp.syscalls.kill06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.kill06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls kill06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.kill07.sh b/testcase/syscalls/ltp.syscalls.kill07.sh new file mode 100755 index 0000000..4c8663f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.kill07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-619174237 +# @用例名称: ltp.syscalls.kill07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.kill07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls kill07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.kill08.sh b/testcase/syscalls/ltp.syscalls.kill08.sh new file mode 100755 index 0000000..6dcda51 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.kill08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-627995306 +# @用例名称: ltp.syscalls.kill08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.kill08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls kill08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.kill09.sh b/testcase/syscalls/ltp.syscalls.kill09.sh new file mode 100755 index 0000000..58b52eb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.kill09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-636428518 +# @用例名称: ltp.syscalls.kill09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.kill09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls kill09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.kill10.sh b/testcase/syscalls/ltp.syscalls.kill10.sh new file mode 100755 index 0000000..eb28614 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.kill10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-644963001 +# @用例名称: ltp.syscalls.kill10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.kill10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls kill10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.kill11.sh b/testcase/syscalls/ltp.syscalls.kill11.sh new file mode 100755 index 0000000..0c28d30 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.kill11.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-654043564 +# @用例名称: ltp.syscalls.kill11 +# @用例级别: 4 +# @用例标签: +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.kill11 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls kill11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.kill12.sh b/testcase/syscalls/ltp.syscalls.kill12.sh new file mode 100755 index 0000000..c7da52c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.kill12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-662877678 +# @用例名称: ltp.syscalls.kill12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.kill12 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls kill12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.kill13.sh b/testcase/syscalls/ltp.syscalls.kill13.sh new file mode 100755 index 0000000..564c86b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.kill13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-671538867 +# @用例名称: ltp.syscalls.kill13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.kill13 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls kill13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lchown01.sh b/testcase/syscalls/ltp.syscalls.lchown01.sh new file mode 100755 index 0000000..03916f0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lchown01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-682107466 +# @用例名称: ltp.syscalls.lchown01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lchown01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lchown01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lchown01_16.sh b/testcase/syscalls/ltp.syscalls.lchown01_16.sh new file mode 100755 index 0000000..56734c7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lchown01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-690620548 +# @用例名称: ltp.syscalls.lchown01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lchown01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lchown01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lchown02.sh b/testcase/syscalls/ltp.syscalls.lchown02.sh new file mode 100755 index 0000000..893af83 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lchown02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-699177022 +# @用例名称: ltp.syscalls.lchown02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lchown02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lchown02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lchown02_16.sh b/testcase/syscalls/ltp.syscalls.lchown02_16.sh new file mode 100755 index 0000000..2987523 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lchown02_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-716409182 +# @用例名称: ltp.syscalls.lchown02_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lchown02_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lchown02_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lchown03.sh b/testcase/syscalls/ltp.syscalls.lchown03.sh new file mode 100755 index 0000000..a7e4e67 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lchown03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-707822301 +# @用例名称: ltp.syscalls.lchown03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lchown03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lchown03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lchown03_16.sh b/testcase/syscalls/ltp.syscalls.lchown03_16.sh new file mode 100755 index 0000000..77afddb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lchown03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-725120856 +# @用例名称: ltp.syscalls.lchown03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lchown03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lchown03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.leapsec01.sh b/testcase/syscalls/ltp.syscalls.leapsec01.sh new file mode 100755 index 0000000..5c3bebf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.leapsec01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213012-451615502 +# @用例名称: ltp.syscalls.leapsec01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.leapsec01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls leapsec01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lgetxattr01.sh b/testcase/syscalls/ltp.syscalls.lgetxattr01.sh new file mode 100755 index 0000000..ad7f3ba --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lgetxattr01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-735620115 +# @用例名称: ltp.syscalls.lgetxattr01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lgetxattr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lgetxattr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lgetxattr02.sh b/testcase/syscalls/ltp.syscalls.lgetxattr02.sh new file mode 100755 index 0000000..4207379 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lgetxattr02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-744154838 +# @用例名称: ltp.syscalls.lgetxattr02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lgetxattr02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lgetxattr02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.link01.sh b/testcase/syscalls/ltp.syscalls.link01.sh new file mode 100755 index 0000000..9138aa2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.link01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-754572876 +# @用例名称: ltp.syscalls.link01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.link01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls link01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.link02.sh b/testcase/syscalls/ltp.syscalls.link02.sh new file mode 100755 index 0000000..f2f773d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.link02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-763073265 +# @用例名称: ltp.syscalls.link02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.link02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls link02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.link04.sh b/testcase/syscalls/ltp.syscalls.link04.sh new file mode 100755 index 0000000..6d02e2e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.link04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-780406724 +# @用例名称: ltp.syscalls.link04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.link04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls link04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.link05.sh b/testcase/syscalls/ltp.syscalls.link05.sh new file mode 100755 index 0000000..984dba5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.link05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-788843534 +# @用例名称: ltp.syscalls.link05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.link05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls link05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.link08.sh b/testcase/syscalls/ltp.syscalls.link08.sh new file mode 100755 index 0000000..c74bc8b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.link08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-797305380 +# @用例名称: ltp.syscalls.link08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.link08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls link08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.linkat01.sh b/testcase/syscalls/ltp.syscalls.linkat01.sh new file mode 100755 index 0000000..cd20a37 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.linkat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-808901983 +# @用例名称: ltp.syscalls.linkat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.linkat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls linkat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.linkat02.sh b/testcase/syscalls/ltp.syscalls.linkat02.sh new file mode 100755 index 0000000..fa90d03 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.linkat02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-817460301 +# @用例名称: ltp.syscalls.linkat02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.linkat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls linkat02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.listen01.sh b/testcase/syscalls/ltp.syscalls.listen01.sh new file mode 100755 index 0000000..2491cf7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.listen01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-828108809 +# @用例名称: ltp.syscalls.listen01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.listen01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls listen01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.listxattr01.sh b/testcase/syscalls/ltp.syscalls.listxattr01.sh new file mode 100755 index 0000000..a48deb7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.listxattr01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-838764501 +# @用例名称: ltp.syscalls.listxattr01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.listxattr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls listxattr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.listxattr02.sh b/testcase/syscalls/ltp.syscalls.listxattr02.sh new file mode 100755 index 0000000..9bdd327 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.listxattr02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-847322868 +# @用例名称: ltp.syscalls.listxattr02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.listxattr02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls listxattr02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.listxattr03.sh b/testcase/syscalls/ltp.syscalls.listxattr03.sh new file mode 100755 index 0000000..ebb8c54 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.listxattr03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-857802200 +# @用例名称: ltp.syscalls.listxattr03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.listxattr03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls listxattr03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.llistxattr01.sh b/testcase/syscalls/ltp.syscalls.llistxattr01.sh new file mode 100755 index 0000000..77b0f36 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.llistxattr01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-868382241 +# @用例名称: ltp.syscalls.llistxattr01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.llistxattr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls llistxattr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.llistxattr02.sh b/testcase/syscalls/ltp.syscalls.llistxattr02.sh new file mode 100755 index 0000000..2b95560 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.llistxattr02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-877021579 +# @用例名称: ltp.syscalls.llistxattr02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.llistxattr02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls llistxattr02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.llistxattr03.sh b/testcase/syscalls/ltp.syscalls.llistxattr03.sh new file mode 100755 index 0000000..250b64e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.llistxattr03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-885604453 +# @用例名称: ltp.syscalls.llistxattr03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.llistxattr03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls llistxattr03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.llseek01.sh b/testcase/syscalls/ltp.syscalls.llseek01.sh new file mode 100755 index 0000000..979c461 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.llseek01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-896011719 +# @用例名称: ltp.syscalls.llseek01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.llseek01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls llseek01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.llseek02.sh b/testcase/syscalls/ltp.syscalls.llseek02.sh new file mode 100755 index 0000000..f330418 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.llseek02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-904564947 +# @用例名称: ltp.syscalls.llseek02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.llseek02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls llseek02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.llseek03.sh b/testcase/syscalls/ltp.syscalls.llseek03.sh new file mode 100755 index 0000000..c9502b3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.llseek03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-913075795 +# @用例名称: ltp.syscalls.llseek03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.llseek03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls llseek03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lremovexattr01.sh b/testcase/syscalls/ltp.syscalls.lremovexattr01.sh new file mode 100755 index 0000000..9c96fc6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lremovexattr01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-923491659 +# @用例名称: ltp.syscalls.lremovexattr01 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lremovexattr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lremovexattr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lseek01.sh b/testcase/syscalls/ltp.syscalls.lseek01.sh new file mode 100755 index 0000000..b3f8ba5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lseek01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-933949470 +# @用例名称: ltp.syscalls.lseek01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lseek01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lseek01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lseek02.sh b/testcase/syscalls/ltp.syscalls.lseek02.sh new file mode 100755 index 0000000..177f1aa --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lseek02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-942511144 +# @用例名称: ltp.syscalls.lseek02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lseek02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lseek02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lseek07.sh b/testcase/syscalls/ltp.syscalls.lseek07.sh new file mode 100755 index 0000000..fbe33b7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lseek07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-951061876 +# @用例名称: ltp.syscalls.lseek07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lseek07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lseek07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lseek11.sh b/testcase/syscalls/ltp.syscalls.lseek11.sh new file mode 100755 index 0000000..d71d525 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lseek11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-960555214 +# @用例名称: ltp.syscalls.lseek11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lseek11 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lseek11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lstat01.sh b/testcase/syscalls/ltp.syscalls.lstat01.sh new file mode 100755 index 0000000..c5ce7ce --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lstat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-990956529 +# @用例名称: ltp.syscalls.lstat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lstat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lstat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lstat01A.sh b/testcase/syscalls/ltp.syscalls.lstat01A.sh new file mode 100755 index 0000000..96c2c80 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lstat01A.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-973917832 +# @用例名称: ltp.syscalls.lstat01A +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lstat01A + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lstat01A + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lstat01A_64.sh b/testcase/syscalls/ltp.syscalls.lstat01A_64.sh new file mode 100755 index 0000000..12a18ec --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lstat01A_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-982423180 +# @用例名称: ltp.syscalls.lstat01A_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lstat01A_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lstat01A_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lstat01_64.sh b/testcase/syscalls/ltp.syscalls.lstat01_64.sh new file mode 100755 index 0000000..79bbfc8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lstat01_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213016-999516319 +# @用例名称: ltp.syscalls.lstat01_64 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lstat01_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lstat01_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lstat02.sh b/testcase/syscalls/ltp.syscalls.lstat02.sh new file mode 100755 index 0000000..718b7da --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lstat02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-008042416 +# @用例名称: ltp.syscalls.lstat02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lstat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lstat02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lstat02_64.sh b/testcase/syscalls/ltp.syscalls.lstat02_64.sh new file mode 100755 index 0000000..9e5a2dd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lstat02_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-016775981 +# @用例名称: ltp.syscalls.lstat02_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lstat02_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lstat02_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.madvise01.sh b/testcase/syscalls/ltp.syscalls.madvise01.sh new file mode 100755 index 0000000..725f01b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.madvise01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-655091980 +# @用例名称: ltp.syscalls.madvise01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.madvise01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls madvise01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.madvise02.sh b/testcase/syscalls/ltp.syscalls.madvise02.sh new file mode 100755 index 0000000..c1f0cf4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.madvise02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-663973482 +# @用例名称: ltp.syscalls.madvise02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.madvise02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls madvise02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.madvise03.sh b/testcase/syscalls/ltp.syscalls.madvise03.sh new file mode 100755 index 0000000..11dc16e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.madvise03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141852-405717031 +# @用例名称: ltp.syscalls.madvise03 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.madvise03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls madvise03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.madvise05.sh b/testcase/syscalls/ltp.syscalls.madvise05.sh new file mode 100755 index 0000000..d0dab8a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.madvise05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-672635833 +# @用例名称: ltp.syscalls.madvise05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.madvise05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls madvise05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.madvise06.sh b/testcase/syscalls/ltp.syscalls.madvise06.sh new file mode 100755 index 0000000..b8c386c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.madvise06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-681332920 +# @用例名称: ltp.syscalls.madvise06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.madvise06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls madvise06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.madvise07.sh b/testcase/syscalls/ltp.syscalls.madvise07.sh new file mode 100755 index 0000000..5d53d8e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.madvise07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-689819503 +# @用例名称: ltp.syscalls.madvise07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.madvise07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls madvise07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.madvise08.sh b/testcase/syscalls/ltp.syscalls.madvise08.sh new file mode 100755 index 0000000..d15eb9c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.madvise08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-698352322 +# @用例名称: ltp.syscalls.madvise08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.madvise08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls madvise08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.madvise09.sh b/testcase/syscalls/ltp.syscalls.madvise09.sh new file mode 100755 index 0000000..c2fdd2f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.madvise09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-707244524 +# @用例名称: ltp.syscalls.madvise09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.madvise09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls madvise09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.madvise10.sh b/testcase/syscalls/ltp.syscalls.madvise10.sh new file mode 100755 index 0000000..9d62bdf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.madvise10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-715819051 +# @用例名称: ltp.syscalls.madvise10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.madvise10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls madvise10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.madvise11.sh b/testcase/syscalls/ltp.syscalls.madvise11.sh new file mode 100755 index 0000000..f2ee57b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.madvise11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141852-468970498 +# @用例名称: ltp.syscalls.madvise11 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.madvise11 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls madvise11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mallinfo02.sh b/testcase/syscalls/ltp.syscalls.mallinfo02.sh new file mode 100755 index 0000000..c8b0d74 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mallinfo02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-027369416 +# @用例名称: ltp.syscalls.mallinfo02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mallinfo02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mallinfo02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mallinfo2_01.sh b/testcase/syscalls/ltp.syscalls.mallinfo2_01.sh new file mode 100755 index 0000000..176ed66 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mallinfo2_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-037986817 +# @用例名称: ltp.syscalls.mallinfo2_01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mallinfo2_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mallinfo2_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mallopt01.sh b/testcase/syscalls/ltp.syscalls.mallopt01.sh new file mode 100755 index 0000000..e52f8a5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mallopt01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-049520032 +# @用例名称: ltp.syscalls.mallopt01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mallopt01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mallopt01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mbind01.sh b/testcase/syscalls/ltp.syscalls.mbind01.sh new file mode 100755 index 0000000..eb3efaf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mbind01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-060053345 +# @用例名称: ltp.syscalls.mbind01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mbind01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mbind01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mbind02.sh b/testcase/syscalls/ltp.syscalls.mbind02.sh new file mode 100755 index 0000000..ddebcd8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mbind02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-068904861 +# @用例名称: ltp.syscalls.mbind02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mbind02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mbind02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mbind03.sh b/testcase/syscalls/ltp.syscalls.mbind03.sh new file mode 100755 index 0000000..3c4b39a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mbind03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-077573784 +# @用例名称: ltp.syscalls.mbind03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mbind03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mbind03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mbind04.sh b/testcase/syscalls/ltp.syscalls.mbind04.sh new file mode 100755 index 0000000..5ec0c9a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mbind04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-086182114 +# @用例名称: ltp.syscalls.mbind04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mbind04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mbind04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.membarrier01.sh b/testcase/syscalls/ltp.syscalls.membarrier01.sh new file mode 100755 index 0000000..6584353 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.membarrier01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-489131705 +# @用例名称: ltp.syscalls.membarrier01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.membarrier01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls membarrier01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.memcmp01.sh b/testcase/syscalls/ltp.syscalls.memcmp01.sh new file mode 100755 index 0000000..f0a82a5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.memcmp01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-105451929 +# @用例名称: ltp.syscalls.memcmp01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.memcmp01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls memcmp01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.memcpy01.sh b/testcase/syscalls/ltp.syscalls.memcpy01.sh new file mode 100755 index 0000000..f2f3e9a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.memcpy01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-114805093 +# @用例名称: ltp.syscalls.memcpy01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.memcpy01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls memcpy01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.memfd_create01.sh b/testcase/syscalls/ltp.syscalls.memfd_create01.sh new file mode 100755 index 0000000..8663d91 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.memfd_create01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-352851015 +# @用例名称: ltp.syscalls.memfd_create01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.memfd_create01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls memfd_create01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.memfd_create02.sh b/testcase/syscalls/ltp.syscalls.memfd_create02.sh new file mode 100755 index 0000000..12d2c49 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.memfd_create02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-361536710 +# @用例名称: ltp.syscalls.memfd_create02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.memfd_create02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls memfd_create02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.memfd_create03.sh b/testcase/syscalls/ltp.syscalls.memfd_create03.sh new file mode 100755 index 0000000..2168faf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.memfd_create03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-370266207 +# @用例名称: ltp.syscalls.memfd_create03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.memfd_create03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls memfd_create03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.memfd_create04.sh b/testcase/syscalls/ltp.syscalls.memfd_create04.sh new file mode 100755 index 0000000..4467ecf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.memfd_create04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-378803956 +# @用例名称: ltp.syscalls.memfd_create04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.memfd_create04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls memfd_create04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.memset01.sh b/testcase/syscalls/ltp.syscalls.memset01.sh new file mode 100755 index 0000000..d561046 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.memset01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-096779437 +# @用例名称: ltp.syscalls.memset01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.memset01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls memset01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.migrate_pages01.sh b/testcase/syscalls/ltp.syscalls.migrate_pages01.sh new file mode 100755 index 0000000..760e270 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.migrate_pages01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-125493386 +# @用例名称: ltp.syscalls.migrate_pages01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.migrate_pages01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls migrate_pages01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.migrate_pages02.sh b/testcase/syscalls/ltp.syscalls.migrate_pages02.sh new file mode 100755 index 0000000..b4225a3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.migrate_pages02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-134032688 +# @用例名称: ltp.syscalls.migrate_pages02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.migrate_pages02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls migrate_pages02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.migrate_pages03.sh b/testcase/syscalls/ltp.syscalls.migrate_pages03.sh new file mode 100755 index 0000000..a68b22e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.migrate_pages03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-142565416 +# @用例名称: ltp.syscalls.migrate_pages03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.migrate_pages03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls migrate_pages03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mincore01.sh b/testcase/syscalls/ltp.syscalls.mincore01.sh new file mode 100755 index 0000000..62a706a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mincore01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-618870541 +# @用例名称: ltp.syscalls.mincore01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mincore01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mincore01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mincore02.sh b/testcase/syscalls/ltp.syscalls.mincore02.sh new file mode 100755 index 0000000..b1dfd42 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mincore02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-627456240 +# @用例名称: ltp.syscalls.mincore02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mincore02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mincore02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mincore03.sh b/testcase/syscalls/ltp.syscalls.mincore03.sh new file mode 100755 index 0000000..8db9da6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mincore03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-636045093 +# @用例名称: ltp.syscalls.mincore03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mincore03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mincore03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mincore04.sh b/testcase/syscalls/ltp.syscalls.mincore04.sh new file mode 100755 index 0000000..8fc5042 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mincore04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-644581750 +# @用例名称: ltp.syscalls.mincore04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mincore04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mincore04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mkdir02.sh b/testcase/syscalls/ltp.syscalls.mkdir02.sh new file mode 100755 index 0000000..6698b8b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mkdir02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-180954121 +# @用例名称: ltp.syscalls.mkdir02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mkdir02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mkdir02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mkdir03.sh b/testcase/syscalls/ltp.syscalls.mkdir03.sh new file mode 100755 index 0000000..6dfae51 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mkdir03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-189567061 +# @用例名称: ltp.syscalls.mkdir03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mkdir03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mkdir03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mkdir04.sh b/testcase/syscalls/ltp.syscalls.mkdir04.sh new file mode 100755 index 0000000..ad77821 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mkdir04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-198161054 +# @用例名称: ltp.syscalls.mkdir04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mkdir04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mkdir04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mkdir05.sh b/testcase/syscalls/ltp.syscalls.mkdir05.sh new file mode 100755 index 0000000..35ec901 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mkdir05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-206712899 +# @用例名称: ltp.syscalls.mkdir05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mkdir05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mkdir05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mkdir09.sh b/testcase/syscalls/ltp.syscalls.mkdir09.sh new file mode 100755 index 0000000..54d810b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mkdir09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-223779149 +# @用例名称: ltp.syscalls.mkdir09 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mkdir09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mkdir09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mkdirat01.sh b/testcase/syscalls/ltp.syscalls.mkdirat01.sh new file mode 100755 index 0000000..0de568c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mkdirat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-235352769 +# @用例名称: ltp.syscalls.mkdirat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mkdirat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mkdirat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mkdirat02.sh b/testcase/syscalls/ltp.syscalls.mkdirat02.sh new file mode 100755 index 0000000..8aec2fe --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mkdirat02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-246826752 +# @用例名称: ltp.syscalls.mkdirat02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mkdirat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mkdirat02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mknod01.sh b/testcase/syscalls/ltp.syscalls.mknod01.sh new file mode 100755 index 0000000..4dec138 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mknod01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-257380123 +# @用例名称: ltp.syscalls.mknod01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mknod01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mknod01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mknod02.sh b/testcase/syscalls/ltp.syscalls.mknod02.sh new file mode 100755 index 0000000..1deb821 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mknod02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-266222071 +# @用例名称: ltp.syscalls.mknod02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mknod02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mknod02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mknod03.sh b/testcase/syscalls/ltp.syscalls.mknod03.sh new file mode 100755 index 0000000..6266bb3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mknod03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-274873932 +# @用例名称: ltp.syscalls.mknod03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mknod03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mknod03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mknod04.sh b/testcase/syscalls/ltp.syscalls.mknod04.sh new file mode 100755 index 0000000..10d1087 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mknod04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-283923018 +# @用例名称: ltp.syscalls.mknod04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mknod04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mknod04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mknod05.sh b/testcase/syscalls/ltp.syscalls.mknod05.sh new file mode 100755 index 0000000..afd5cc2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mknod05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-292482838 +# @用例名称: ltp.syscalls.mknod05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mknod05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mknod05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mknod06.sh b/testcase/syscalls/ltp.syscalls.mknod06.sh new file mode 100755 index 0000000..b806ee2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mknod06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-302178343 +# @用例名称: ltp.syscalls.mknod06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mknod06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mknod06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mknod07.sh b/testcase/syscalls/ltp.syscalls.mknod07.sh new file mode 100755 index 0000000..0996788 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mknod07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-310716873 +# @用例名称: ltp.syscalls.mknod07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mknod07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mknod07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mknod08.sh b/testcase/syscalls/ltp.syscalls.mknod08.sh new file mode 100755 index 0000000..06aa94c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mknod08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-319301810 +# @用例名称: ltp.syscalls.mknod08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mknod08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mknod08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mknod09.sh b/testcase/syscalls/ltp.syscalls.mknod09.sh new file mode 100755 index 0000000..9225fee --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mknod09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-327815524 +# @用例名称: ltp.syscalls.mknod09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mknod09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mknod09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mknodat01.sh b/testcase/syscalls/ltp.syscalls.mknodat01.sh new file mode 100755 index 0000000..02ec30f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mknodat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-342524742 +# @用例名称: ltp.syscalls.mknodat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mknodat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mknodat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mknodat02.sh b/testcase/syscalls/ltp.syscalls.mknodat02.sh new file mode 100755 index 0000000..820bc71 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mknodat02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-353922542 +# @用例名称: ltp.syscalls.mknodat02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mknodat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mknodat02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mlock01.sh b/testcase/syscalls/ltp.syscalls.mlock01.sh new file mode 100755 index 0000000..d77208b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mlock01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-364414379 +# @用例名称: ltp.syscalls.mlock01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mlock01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mlock01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mlock02.sh b/testcase/syscalls/ltp.syscalls.mlock02.sh new file mode 100755 index 0000000..b5709c8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mlock02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-376125526 +# @用例名称: ltp.syscalls.mlock02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mlock02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mlock02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mlock03.sh b/testcase/syscalls/ltp.syscalls.mlock03.sh new file mode 100755 index 0000000..41722c4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mlock03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-384599064 +# @用例名称: ltp.syscalls.mlock03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mlock03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mlock03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mlock04.sh b/testcase/syscalls/ltp.syscalls.mlock04.sh new file mode 100755 index 0000000..fdb56fa --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mlock04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-393075738 +# @用例名称: ltp.syscalls.mlock04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mlock04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mlock04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mlock05.sh b/testcase/syscalls/ltp.syscalls.mlock05.sh new file mode 100755 index 0000000..1a8b7a9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mlock05.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172839-389150903 +# @用例名称: ltp.syscalls.mlock05 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mlock05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mlock05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mlock201.sh b/testcase/syscalls/ltp.syscalls.mlock201.sh new file mode 100755 index 0000000..0810256 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mlock201.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-403567083 +# @用例名称: ltp.syscalls.mlock201 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mlock201 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mlock201 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mlock202.sh b/testcase/syscalls/ltp.syscalls.mlock202.sh new file mode 100755 index 0000000..0056499 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mlock202.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-412342315 +# @用例名称: ltp.syscalls.mlock202 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mlock202 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mlock202 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mlock203.sh b/testcase/syscalls/ltp.syscalls.mlock203.sh new file mode 100755 index 0000000..d30bebc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mlock203.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-421154698 +# @用例名称: ltp.syscalls.mlock203 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mlock203 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mlock203 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mlockall01.sh b/testcase/syscalls/ltp.syscalls.mlockall01.sh new file mode 100755 index 0000000..0655395 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mlockall01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-153249843 +# @用例名称: ltp.syscalls.mlockall01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mlockall01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mlockall01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mlockall02.sh b/testcase/syscalls/ltp.syscalls.mlockall02.sh new file mode 100755 index 0000000..7a8b3b0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mlockall02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-161866399 +# @用例名称: ltp.syscalls.mlockall02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mlockall02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mlockall02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mlockall03.sh b/testcase/syscalls/ltp.syscalls.mlockall03.sh new file mode 100755 index 0000000..a5348a3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mlockall03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-170402604 +# @用例名称: ltp.syscalls.mlockall03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mlockall03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mlockall03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap01.sh b/testcase/syscalls/ltp.syscalls.mmap01.sh new file mode 100755 index 0000000..981a247 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-440358369 +# @用例名称: ltp.syscalls.mmap01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap02.sh b/testcase/syscalls/ltp.syscalls.mmap02.sh new file mode 100755 index 0000000..1077160 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-448832338 +# @用例名称: ltp.syscalls.mmap02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap03.sh b/testcase/syscalls/ltp.syscalls.mmap03.sh new file mode 100755 index 0000000..8b7eb62 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-457802816 +# @用例名称: ltp.syscalls.mmap03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap04.sh b/testcase/syscalls/ltp.syscalls.mmap04.sh new file mode 100755 index 0000000..193f0f3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-466424982 +# @用例名称: ltp.syscalls.mmap04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap05.sh b/testcase/syscalls/ltp.syscalls.mmap05.sh new file mode 100755 index 0000000..a5e371f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-475063579 +# @用例名称: ltp.syscalls.mmap05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap06.sh b/testcase/syscalls/ltp.syscalls.mmap06.sh new file mode 100755 index 0000000..9b70291 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-483662091 +# @用例名称: ltp.syscalls.mmap06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap08.sh b/testcase/syscalls/ltp.syscalls.mmap08.sh new file mode 100755 index 0000000..fb96ee0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-500717480 +# @用例名称: ltp.syscalls.mmap08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap09.sh b/testcase/syscalls/ltp.syscalls.mmap09.sh new file mode 100755 index 0000000..d044e4f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-509259587 +# @用例名称: ltp.syscalls.mmap09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap12.sh b/testcase/syscalls/ltp.syscalls.mmap12.sh new file mode 100755 index 0000000..6f5d4c9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-517846548 +# @用例名称: ltp.syscalls.mmap12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap12 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap13.sh b/testcase/syscalls/ltp.syscalls.mmap13.sh new file mode 100755 index 0000000..048ecdf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-526378425 +# @用例名称: ltp.syscalls.mmap13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap13 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap14.sh b/testcase/syscalls/ltp.syscalls.mmap14.sh new file mode 100755 index 0000000..7ebb82b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-534916664 +# @用例名称: ltp.syscalls.mmap14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap14 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap15.sh b/testcase/syscalls/ltp.syscalls.mmap15.sh new file mode 100755 index 0000000..a13d792 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap15.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-545457021 +# @用例名称: ltp.syscalls.mmap15 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap15 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap16.sh b/testcase/syscalls/ltp.syscalls.mmap16.sh new file mode 100755 index 0000000..0e4aff5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-554009978 +# @用例名称: ltp.syscalls.mmap16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap17.sh b/testcase/syscalls/ltp.syscalls.mmap17.sh new file mode 100755 index 0000000..059e757 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap17.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-562739956 +# @用例名称: ltp.syscalls.mmap17 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap17 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap17 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap18.sh b/testcase/syscalls/ltp.syscalls.mmap18.sh new file mode 100755 index 0000000..dc93ed9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap18.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-571348577 +# @用例名称: ltp.syscalls.mmap18 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap18 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap18 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap19.sh b/testcase/syscalls/ltp.syscalls.mmap19.sh new file mode 100755 index 0000000..e91dbc4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap19.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-579946318 +# @用例名称: ltp.syscalls.mmap19 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap19 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap19 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap20.sh b/testcase/syscalls/ltp.syscalls.mmap20.sh new file mode 100755 index 0000000..e8e9b12 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap20.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141851-948546007 +# @用例名称: ltp.syscalls.mmap20 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap20 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap20 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.modify_ldt01.sh b/testcase/syscalls/ltp.syscalls.modify_ldt01.sh new file mode 100755 index 0000000..19dde8e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.modify_ldt01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-590364325 +# @用例名称: ltp.syscalls.modify_ldt01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.modify_ldt01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls modify_ldt01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.modify_ldt02.sh b/testcase/syscalls/ltp.syscalls.modify_ldt02.sh new file mode 100755 index 0000000..71464e6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.modify_ldt02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-598844125 +# @用例名称: ltp.syscalls.modify_ldt02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.modify_ldt02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls modify_ldt02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.modify_ldt03.sh b/testcase/syscalls/ltp.syscalls.modify_ldt03.sh new file mode 100755 index 0000000..5d044d1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.modify_ldt03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-607313085 +# @用例名称: ltp.syscalls.modify_ldt03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.modify_ldt03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls modify_ldt03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mount01.sh b/testcase/syscalls/ltp.syscalls.mount01.sh new file mode 100755 index 0000000..d92da72 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mount01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-617938431 +# @用例名称: ltp.syscalls.mount01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mount01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mount01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mount02.sh b/testcase/syscalls/ltp.syscalls.mount02.sh new file mode 100755 index 0000000..881d33b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mount02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-626500774 +# @用例名称: ltp.syscalls.mount02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mount02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mount02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mount03.sh b/testcase/syscalls/ltp.syscalls.mount03.sh new file mode 100755 index 0000000..1d5f74d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mount03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-634968032 +# @用例名称: ltp.syscalls.mount03 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mount03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mount03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mount04.sh b/testcase/syscalls/ltp.syscalls.mount04.sh new file mode 100755 index 0000000..37cd41c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mount04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-643479280 +# @用例名称: ltp.syscalls.mount04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mount04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mount04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mount05.sh b/testcase/syscalls/ltp.syscalls.mount05.sh new file mode 100755 index 0000000..23f2dbc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mount05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-652046303 +# @用例名称: ltp.syscalls.mount05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mount05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mount05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mount06.sh b/testcase/syscalls/ltp.syscalls.mount06.sh new file mode 100755 index 0000000..e48d465 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mount06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-660787843 +# @用例名称: ltp.syscalls.mount06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mount06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mount06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mount07.sh b/testcase/syscalls/ltp.syscalls.mount07.sh new file mode 100755 index 0000000..34dc236 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mount07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141852-016393079 +# @用例名称: ltp.syscalls.mount07 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mount07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mount07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mount_setattr01.sh b/testcase/syscalls/ltp.syscalls.mount_setattr01.sh new file mode 100755 index 0000000..68500f8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mount_setattr01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141852-082140522 +# @用例名称: ltp.syscalls.mount_setattr01 +# @用例级别: 3 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mount_setattr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mount_setattr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.move_mount01.sh b/testcase/syscalls/ltp.syscalls.move_mount01.sh new file mode 100755 index 0000000..df7db50 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.move_mount01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-671501074 +# @用例名称: ltp.syscalls.move_mount01 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.move_mount01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls move_mount01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.move_mount02.sh b/testcase/syscalls/ltp.syscalls.move_mount02.sh new file mode 100755 index 0000000..4cc1c27 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.move_mount02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-680210583 +# @用例名称: ltp.syscalls.move_mount02 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.move_mount02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls move_mount02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.move_pages01.sh b/testcase/syscalls/ltp.syscalls.move_pages01.sh new file mode 100755 index 0000000..15b8b83 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.move_pages01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-690671531 +# @用例名称: ltp.syscalls.move_pages01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.move_pages01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls move_pages01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.move_pages02.sh b/testcase/syscalls/ltp.syscalls.move_pages02.sh new file mode 100755 index 0000000..f6f19cc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.move_pages02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-699218477 +# @用例名称: ltp.syscalls.move_pages02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.move_pages02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls move_pages02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.move_pages03.sh b/testcase/syscalls/ltp.syscalls.move_pages03.sh new file mode 100755 index 0000000..fb1930f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.move_pages03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-707914952 +# @用例名称: ltp.syscalls.move_pages03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.move_pages03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls move_pages03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.move_pages04.sh b/testcase/syscalls/ltp.syscalls.move_pages04.sh new file mode 100755 index 0000000..4468167 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.move_pages04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-716907291 +# @用例名称: ltp.syscalls.move_pages04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.move_pages04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls move_pages04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.move_pages05.sh b/testcase/syscalls/ltp.syscalls.move_pages05.sh new file mode 100755 index 0000000..174b1cf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.move_pages05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-725515281 +# @用例名称: ltp.syscalls.move_pages05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.move_pages05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls move_pages05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.move_pages06.sh b/testcase/syscalls/ltp.syscalls.move_pages06.sh new file mode 100755 index 0000000..a320ecf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.move_pages06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-734109675 +# @用例名称: ltp.syscalls.move_pages06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.move_pages06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls move_pages06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.move_pages07.sh b/testcase/syscalls/ltp.syscalls.move_pages07.sh new file mode 100755 index 0000000..cec877a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.move_pages07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-742739587 +# @用例名称: ltp.syscalls.move_pages07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.move_pages07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls move_pages07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.move_pages09.sh b/testcase/syscalls/ltp.syscalls.move_pages09.sh new file mode 100755 index 0000000..1922fff --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.move_pages09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-751342216 +# @用例名称: ltp.syscalls.move_pages09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.move_pages09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls move_pages09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.move_pages10.sh b/testcase/syscalls/ltp.syscalls.move_pages10.sh new file mode 100755 index 0000000..619f8a0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.move_pages10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-760008145 +# @用例名称: ltp.syscalls.move_pages10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.move_pages10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls move_pages10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.move_pages11.sh b/testcase/syscalls/ltp.syscalls.move_pages11.sh new file mode 100755 index 0000000..643bad4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.move_pages11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-772145310 +# @用例名称: ltp.syscalls.move_pages11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.move_pages11 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls move_pages11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.move_pages12.sh b/testcase/syscalls/ltp.syscalls.move_pages12.sh new file mode 100755 index 0000000..e6f6b42 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.move_pages12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-780807581 +# @用例名称: ltp.syscalls.move_pages12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.move_pages12 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls move_pages12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mprotect01.sh b/testcase/syscalls/ltp.syscalls.mprotect01.sh new file mode 100755 index 0000000..0a4e00f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mprotect01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-791268609 +# @用例名称: ltp.syscalls.mprotect01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mprotect01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mprotect01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mprotect02.sh b/testcase/syscalls/ltp.syscalls.mprotect02.sh new file mode 100755 index 0000000..f9fb651 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mprotect02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-799858615 +# @用例名称: ltp.syscalls.mprotect02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mprotect02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mprotect02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mprotect03.sh b/testcase/syscalls/ltp.syscalls.mprotect03.sh new file mode 100755 index 0000000..e149662 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mprotect03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-808502332 +# @用例名称: ltp.syscalls.mprotect03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mprotect03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mprotect03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mprotect04.sh b/testcase/syscalls/ltp.syscalls.mprotect04.sh new file mode 100755 index 0000000..1fe26e7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mprotect04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-817196614 +# @用例名称: ltp.syscalls.mprotect04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mprotect04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mprotect04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mprotect05.sh b/testcase/syscalls/ltp.syscalls.mprotect05.sh new file mode 100755 index 0000000..44090a6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mprotect05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141852-147974810 +# @用例名称: ltp.syscalls.mprotect05 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mprotect05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mprotect05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mq_notify01.sh b/testcase/syscalls/ltp.syscalls.mq_notify01.sh new file mode 100755 index 0000000..796c06d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mq_notify01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-838412589 +# @用例名称: ltp.syscalls.mq_notify01 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mq_notify01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mq_notify01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mq_notify02.sh b/testcase/syscalls/ltp.syscalls.mq_notify02.sh new file mode 100755 index 0000000..d67c808 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mq_notify02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-851056873 +# @用例名称: ltp.syscalls.mq_notify02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mq_notify02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mq_notify02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mq_notify03.sh b/testcase/syscalls/ltp.syscalls.mq_notify03.sh new file mode 100755 index 0000000..8741dbb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mq_notify03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141852-213956615 +# @用例名称: ltp.syscalls.mq_notify03 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mq_notify03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mq_notify03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mq_open01.sh b/testcase/syscalls/ltp.syscalls.mq_open01.sh new file mode 100755 index 0000000..b40007e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mq_open01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-859781561 +# @用例名称: ltp.syscalls.mq_open01 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mq_open01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mq_open01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mq_timedreceive01.sh b/testcase/syscalls/ltp.syscalls.mq_timedreceive01.sh new file mode 100755 index 0000000..0b5b90c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mq_timedreceive01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-868495980 +# @用例名称: ltp.syscalls.mq_timedreceive01 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mq_timedreceive01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mq_timedreceive01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mq_timedsend01.sh b/testcase/syscalls/ltp.syscalls.mq_timedsend01.sh new file mode 100755 index 0000000..dc47ace --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mq_timedsend01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-877759898 +# @用例名称: ltp.syscalls.mq_timedsend01 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mq_timedsend01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mq_timedsend01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mq_unlink01.sh b/testcase/syscalls/ltp.syscalls.mq_unlink01.sh new file mode 100755 index 0000000..b156e66 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mq_unlink01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-886414766 +# @用例名称: ltp.syscalls.mq_unlink01 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mq_unlink01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mq_unlink01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mremap01.sh b/testcase/syscalls/ltp.syscalls.mremap01.sh new file mode 100755 index 0000000..c2ddafb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mremap01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-896844294 +# @用例名称: ltp.syscalls.mremap01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mremap01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mremap01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mremap02.sh b/testcase/syscalls/ltp.syscalls.mremap02.sh new file mode 100755 index 0000000..f3ef51b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mremap02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-905356255 +# @用例名称: ltp.syscalls.mremap02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mremap02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mremap02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mremap03.sh b/testcase/syscalls/ltp.syscalls.mremap03.sh new file mode 100755 index 0000000..520bdc6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mremap03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-914030799 +# @用例名称: ltp.syscalls.mremap03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mremap03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mremap03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mremap04.sh b/testcase/syscalls/ltp.syscalls.mremap04.sh new file mode 100755 index 0000000..e098993 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mremap04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-924181767 +# @用例名称: ltp.syscalls.mremap04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mremap04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mremap04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mremap05.sh b/testcase/syscalls/ltp.syscalls.mremap05.sh new file mode 100755 index 0000000..e7c1e18 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mremap05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-934833302 +# @用例名称: ltp.syscalls.mremap05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mremap05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mremap05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mremap06.sh b/testcase/syscalls/ltp.syscalls.mremap06.sh new file mode 100755 index 0000000..7132068 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mremap06.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172839-465407648 +# @用例名称: ltp.syscalls.mremap06 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mremap06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mremap06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgctl01.sh b/testcase/syscalls/ltp.syscalls.msgctl01.sh new file mode 100755 index 0000000..913c32e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgctl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-946049783 +# @用例名称: ltp.syscalls.msgctl01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgctl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgctl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgctl02.sh b/testcase/syscalls/ltp.syscalls.msgctl02.sh new file mode 100755 index 0000000..f5a9734 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgctl02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-954607138 +# @用例名称: ltp.syscalls.msgctl02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgctl02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgctl02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgctl03.sh b/testcase/syscalls/ltp.syscalls.msgctl03.sh new file mode 100755 index 0000000..61bc35e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgctl03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-963129448 +# @用例名称: ltp.syscalls.msgctl03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgctl03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgctl03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgctl04.sh b/testcase/syscalls/ltp.syscalls.msgctl04.sh new file mode 100755 index 0000000..3de3af6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgctl04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-971717640 +# @用例名称: ltp.syscalls.msgctl04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgctl04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgctl04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgctl05.sh b/testcase/syscalls/ltp.syscalls.msgctl05.sh new file mode 100755 index 0000000..7fb0785 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgctl05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-980363211 +# @用例名称: ltp.syscalls.msgctl05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgctl05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgctl05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgctl06.sh b/testcase/syscalls/ltp.syscalls.msgctl06.sh new file mode 100755 index 0000000..d8dfb4e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgctl06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-989074675 +# @用例名称: ltp.syscalls.msgctl06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgctl06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgctl06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgctl12.sh b/testcase/syscalls/ltp.syscalls.msgctl12.sh new file mode 100755 index 0000000..ed6aeaf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgctl12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-032843158 +# @用例名称: ltp.syscalls.msgctl12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgctl12 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgctl12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgget01.sh b/testcase/syscalls/ltp.syscalls.msgget01.sh new file mode 100755 index 0000000..6121c21 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgget01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-044731347 +# @用例名称: ltp.syscalls.msgget01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgget01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgget01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgget02.sh b/testcase/syscalls/ltp.syscalls.msgget02.sh new file mode 100755 index 0000000..f71d263 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgget02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-056439648 +# @用例名称: ltp.syscalls.msgget02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgget02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgget02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgget03.sh b/testcase/syscalls/ltp.syscalls.msgget03.sh new file mode 100755 index 0000000..e846991 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgget03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-065313907 +# @用例名称: ltp.syscalls.msgget03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgget03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgget03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgget04.sh b/testcase/syscalls/ltp.syscalls.msgget04.sh new file mode 100755 index 0000000..059f39e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgget04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-073917779 +# @用例名称: ltp.syscalls.msgget04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgget04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgget04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgget05.sh b/testcase/syscalls/ltp.syscalls.msgget05.sh new file mode 100755 index 0000000..84caeca --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgget05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-082557799 +# @用例名称: ltp.syscalls.msgget05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgget05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgget05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgrcv01.sh b/testcase/syscalls/ltp.syscalls.msgrcv01.sh new file mode 100755 index 0000000..852ff48 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgrcv01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-092969594 +# @用例名称: ltp.syscalls.msgrcv01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgrcv01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgrcv01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgrcv02.sh b/testcase/syscalls/ltp.syscalls.msgrcv02.sh new file mode 100755 index 0000000..ce2148d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgrcv02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-101484300 +# @用例名称: ltp.syscalls.msgrcv02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgrcv02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgrcv02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgrcv03.sh b/testcase/syscalls/ltp.syscalls.msgrcv03.sh new file mode 100755 index 0000000..2db90a3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgrcv03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-110160607 +# @用例名称: ltp.syscalls.msgrcv03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgrcv03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgrcv03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgrcv05.sh b/testcase/syscalls/ltp.syscalls.msgrcv05.sh new file mode 100755 index 0000000..59102e6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgrcv05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-118742188 +# @用例名称: ltp.syscalls.msgrcv05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgrcv05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgrcv05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgrcv06.sh b/testcase/syscalls/ltp.syscalls.msgrcv06.sh new file mode 100755 index 0000000..339bd3f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgrcv06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-127205277 +# @用例名称: ltp.syscalls.msgrcv06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgrcv06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgrcv06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgrcv07.sh b/testcase/syscalls/ltp.syscalls.msgrcv07.sh new file mode 100755 index 0000000..423f659 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgrcv07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-135731784 +# @用例名称: ltp.syscalls.msgrcv07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgrcv07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgrcv07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgrcv08.sh b/testcase/syscalls/ltp.syscalls.msgrcv08.sh new file mode 100755 index 0000000..aba4826 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgrcv08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-144291103 +# @用例名称: ltp.syscalls.msgrcv08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgrcv08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgrcv08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgsnd01.sh b/testcase/syscalls/ltp.syscalls.msgsnd01.sh new file mode 100755 index 0000000..0fbc64d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgsnd01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-154736030 +# @用例名称: ltp.syscalls.msgsnd01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgsnd01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgsnd01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgsnd02.sh b/testcase/syscalls/ltp.syscalls.msgsnd02.sh new file mode 100755 index 0000000..517608b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgsnd02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-164112649 +# @用例名称: ltp.syscalls.msgsnd02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgsnd02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgsnd02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgsnd05.sh b/testcase/syscalls/ltp.syscalls.msgsnd05.sh new file mode 100755 index 0000000..a2a36d6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgsnd05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-172614350 +# @用例名称: ltp.syscalls.msgsnd05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgsnd05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgsnd05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgsnd06.sh b/testcase/syscalls/ltp.syscalls.msgsnd06.sh new file mode 100755 index 0000000..839f9f3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgsnd06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-181297891 +# @用例名称: ltp.syscalls.msgsnd06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgsnd06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgsnd06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msgstress01.sh b/testcase/syscalls/ltp.syscalls.msgstress01.sh new file mode 100755 index 0000000..21cdcc1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msgstress01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-997596103 +# @用例名称: ltp.syscalls.msgstress01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msgstress01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msgstress01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msync01.sh b/testcase/syscalls/ltp.syscalls.msync01.sh new file mode 100755 index 0000000..8260d73 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msync01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-191831014 +# @用例名称: ltp.syscalls.msync01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msync01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msync01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msync02.sh b/testcase/syscalls/ltp.syscalls.msync02.sh new file mode 100755 index 0000000..2bcab29 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msync02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-200492484 +# @用例名称: ltp.syscalls.msync02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msync02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msync02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msync03.sh b/testcase/syscalls/ltp.syscalls.msync03.sh new file mode 100755 index 0000000..aab5ed6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msync03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-209267586 +# @用例名称: ltp.syscalls.msync03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msync03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msync03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.msync04.sh b/testcase/syscalls/ltp.syscalls.msync04.sh new file mode 100755 index 0000000..b7de5ea --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.msync04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-217886357 +# @用例名称: ltp.syscalls.msync04 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.msync04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls msync04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.munlock01.sh b/testcase/syscalls/ltp.syscalls.munlock01.sh new file mode 100755 index 0000000..c7967cc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.munlock01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-228506423 +# @用例名称: ltp.syscalls.munlock01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.munlock01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls munlock01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.munlock02.sh b/testcase/syscalls/ltp.syscalls.munlock02.sh new file mode 100755 index 0000000..1ddcea8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.munlock02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-237127447 +# @用例名称: ltp.syscalls.munlock02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.munlock02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls munlock02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.munlockall01.sh b/testcase/syscalls/ltp.syscalls.munlockall01.sh new file mode 100755 index 0000000..1c03c1f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.munlockall01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-247675968 +# @用例名称: ltp.syscalls.munlockall01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.munlockall01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls munlockall01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.munmap01.sh b/testcase/syscalls/ltp.syscalls.munmap01.sh new file mode 100755 index 0000000..cee3c98 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.munmap01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-258110697 +# @用例名称: ltp.syscalls.munmap01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.munmap01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls munmap01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.munmap02.sh b/testcase/syscalls/ltp.syscalls.munmap02.sh new file mode 100755 index 0000000..d528428 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.munmap02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-266818905 +# @用例名称: ltp.syscalls.munmap02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.munmap02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls munmap02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.munmap03.sh b/testcase/syscalls/ltp.syscalls.munmap03.sh new file mode 100755 index 0000000..4854bd6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.munmap03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-275450088 +# @用例名称: ltp.syscalls.munmap03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.munmap03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls munmap03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.name_to_handle_at01.sh b/testcase/syscalls/ltp.syscalls.name_to_handle_at01.sh new file mode 100755 index 0000000..ea94ce1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.name_to_handle_at01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-313150304 +# @用例名称: ltp.syscalls.name_to_handle_at01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.name_to_handle_at01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls name_to_handle_at01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.name_to_handle_at02.sh b/testcase/syscalls/ltp.syscalls.name_to_handle_at02.sh new file mode 100755 index 0000000..aadb03e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.name_to_handle_at02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-321900490 +# @用例名称: ltp.syscalls.name_to_handle_at02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.name_to_handle_at02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls name_to_handle_at02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.nanosleep01.sh b/testcase/syscalls/ltp.syscalls.nanosleep01.sh new file mode 100755 index 0000000..a1aba57 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.nanosleep01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-286003108 +# @用例名称: ltp.syscalls.nanosleep01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.nanosleep01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls nanosleep01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.nanosleep02.sh b/testcase/syscalls/ltp.syscalls.nanosleep02.sh new file mode 100755 index 0000000..edbfce8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.nanosleep02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-294440679 +# @用例名称: ltp.syscalls.nanosleep02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.nanosleep02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls nanosleep02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.nanosleep04.sh b/testcase/syscalls/ltp.syscalls.nanosleep04.sh new file mode 100755 index 0000000..b77e22c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.nanosleep04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-302863543 +# @用例名称: ltp.syscalls.nanosleep04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.nanosleep04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls nanosleep04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.newuname01.sh b/testcase/syscalls/ltp.syscalls.newuname01.sh new file mode 100755 index 0000000..b520012 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.newuname01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-726310386 +# @用例名称: ltp.syscalls.newuname01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.newuname01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls newuname01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.nftw01.sh b/testcase/syscalls/ltp.syscalls.nftw01.sh new file mode 100755 index 0000000..73f963f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.nftw01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-332312977 +# @用例名称: ltp.syscalls.nftw01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.nftw01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls nftw01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.nftw6401.sh b/testcase/syscalls/ltp.syscalls.nftw6401.sh new file mode 100755 index 0000000..10a8241 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.nftw6401.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-340884930 +# @用例名称: ltp.syscalls.nftw6401 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.nftw6401 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls nftw6401 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.nice01.sh b/testcase/syscalls/ltp.syscalls.nice01.sh new file mode 100755 index 0000000..1dd15fd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.nice01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-351412241 +# @用例名称: ltp.syscalls.nice01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.nice01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls nice01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.nice02.sh b/testcase/syscalls/ltp.syscalls.nice02.sh new file mode 100755 index 0000000..48ad463 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.nice02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-363931732 +# @用例名称: ltp.syscalls.nice02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.nice02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls nice02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.nice03.sh b/testcase/syscalls/ltp.syscalls.nice03.sh new file mode 100755 index 0000000..6885193 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.nice03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-372585888 +# @用例名称: ltp.syscalls.nice03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.nice03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls nice03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.nice04.sh b/testcase/syscalls/ltp.syscalls.nice04.sh new file mode 100755 index 0000000..669c36f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.nice04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-381114380 +# @用例名称: ltp.syscalls.nice04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.nice04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls nice04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.nice05.sh b/testcase/syscalls/ltp.syscalls.nice05.sh new file mode 100755 index 0000000..4e080d9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.nice05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141852-277709349 +# @用例名称: ltp.syscalls.nice05 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.nice05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls nice05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open01.sh b/testcase/syscalls/ltp.syscalls.open01.sh new file mode 100755 index 0000000..76ab876 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-391531926 +# @用例名称: ltp.syscalls.open01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open01A.sh b/testcase/syscalls/ltp.syscalls.open01A.sh new file mode 100755 index 0000000..a748a41 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open01A.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-400228392 +# @用例名称: ltp.syscalls.open01A +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open01A + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open01A + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open02.sh b/testcase/syscalls/ltp.syscalls.open02.sh new file mode 100755 index 0000000..f0a24a0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-408802838 +# @用例名称: ltp.syscalls.open02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open03.sh b/testcase/syscalls/ltp.syscalls.open03.sh new file mode 100755 index 0000000..dcac47c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-417367968 +# @用例名称: ltp.syscalls.open03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open04.sh b/testcase/syscalls/ltp.syscalls.open04.sh new file mode 100755 index 0000000..e5f0183 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-425961932 +# @用例名称: ltp.syscalls.open04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open06.sh b/testcase/syscalls/ltp.syscalls.open06.sh new file mode 100755 index 0000000..c144b5b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-443261578 +# @用例名称: ltp.syscalls.open06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open07.sh b/testcase/syscalls/ltp.syscalls.open07.sh new file mode 100755 index 0000000..5aefc3c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-451958856 +# @用例名称: ltp.syscalls.open07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open08.sh b/testcase/syscalls/ltp.syscalls.open08.sh new file mode 100755 index 0000000..449220c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-460966704 +# @用例名称: ltp.syscalls.open08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open09.sh b/testcase/syscalls/ltp.syscalls.open09.sh new file mode 100755 index 0000000..42a5608 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-469784095 +# @用例名称: ltp.syscalls.open09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open10.sh b/testcase/syscalls/ltp.syscalls.open10.sh new file mode 100755 index 0000000..be740c9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-478493414 +# @用例名称: ltp.syscalls.open10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open11.sh b/testcase/syscalls/ltp.syscalls.open11.sh new file mode 100755 index 0000000..7f23135 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-487348567 +# @用例名称: ltp.syscalls.open11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open11 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open12.sh b/testcase/syscalls/ltp.syscalls.open12.sh new file mode 100755 index 0000000..bf4a699 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-496062996 +# @用例名称: ltp.syscalls.open12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open12 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open13.sh b/testcase/syscalls/ltp.syscalls.open13.sh new file mode 100755 index 0000000..5a54f71 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-504602458 +# @用例名称: ltp.syscalls.open13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open13 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open14.sh b/testcase/syscalls/ltp.syscalls.open14.sh new file mode 100755 index 0000000..9136e6d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-513477017 +# @用例名称: ltp.syscalls.open14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open14 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open_by_handle_at01.sh b/testcase/syscalls/ltp.syscalls.open_by_handle_at01.sh new file mode 100755 index 0000000..1edceb0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open_by_handle_at01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-580674698 +# @用例名称: ltp.syscalls.open_by_handle_at01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open_by_handle_at01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open_by_handle_at01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open_by_handle_at02.sh b/testcase/syscalls/ltp.syscalls.open_by_handle_at02.sh new file mode 100755 index 0000000..7b56456 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open_by_handle_at02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-589334154 +# @用例名称: ltp.syscalls.open_by_handle_at02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open_by_handle_at02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open_by_handle_at02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open_tree01.sh b/testcase/syscalls/ltp.syscalls.open_tree01.sh new file mode 100755 index 0000000..94690ae --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open_tree01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-599754415 +# @用例名称: ltp.syscalls.open_tree01 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open_tree01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open_tree01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open_tree02.sh b/testcase/syscalls/ltp.syscalls.open_tree02.sh new file mode 100755 index 0000000..d262988 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open_tree02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-608262608 +# @用例名称: ltp.syscalls.open_tree02 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open_tree02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open_tree02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.openat01.sh b/testcase/syscalls/ltp.syscalls.openat01.sh new file mode 100755 index 0000000..f09c396 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.openat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-525066938 +# @用例名称: ltp.syscalls.openat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.openat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls openat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.openat02.sh b/testcase/syscalls/ltp.syscalls.openat02.sh new file mode 100755 index 0000000..b28bcb3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.openat02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-533777760 +# @用例名称: ltp.syscalls.openat02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.openat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls openat02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.openat03.sh b/testcase/syscalls/ltp.syscalls.openat03.sh new file mode 100755 index 0000000..b185aed --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.openat03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-542482751 +# @用例名称: ltp.syscalls.openat03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.openat03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls openat03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.openat04.sh b/testcase/syscalls/ltp.syscalls.openat04.sh new file mode 100755 index 0000000..541d191 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.openat04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141852-341933978 +# @用例名称: ltp.syscalls.openat04 +# @用例级别: 4 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.openat04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls openat04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.openat201.sh b/testcase/syscalls/ltp.syscalls.openat201.sh new file mode 100755 index 0000000..09f6388 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.openat201.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-553103999 +# @用例名称: ltp.syscalls.openat201 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.openat201 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls openat201 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.openat202.sh b/testcase/syscalls/ltp.syscalls.openat202.sh new file mode 100755 index 0000000..d2b6739 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.openat202.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-561703954 +# @用例名称: ltp.syscalls.openat202 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.openat202 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls openat202 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.openat203.sh b/testcase/syscalls/ltp.syscalls.openat203.sh new file mode 100755 index 0000000..d0dc3b0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.openat203.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-570225522 +# @用例名称: ltp.syscalls.openat203 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.openat203 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls openat203 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pathconf01.sh b/testcase/syscalls/ltp.syscalls.pathconf01.sh new file mode 100755 index 0000000..50e0897 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pathconf01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-736847667 +# @用例名称: ltp.syscalls.pathconf01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pathconf01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pathconf01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pathconf02.sh b/testcase/syscalls/ltp.syscalls.pathconf02.sh new file mode 100755 index 0000000..3c2b3c5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pathconf02.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172839-538403059 +# @用例名称: ltp.syscalls.pathconf02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pathconf02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pathconf02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pause01.sh b/testcase/syscalls/ltp.syscalls.pause01.sh new file mode 100755 index 0000000..c606f34 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pause01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-747303835 +# @用例名称: ltp.syscalls.pause01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pause01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pause01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pause02.sh b/testcase/syscalls/ltp.syscalls.pause02.sh new file mode 100755 index 0000000..ec2c1ca --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pause02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-755875477 +# @用例名称: ltp.syscalls.pause02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pause02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pause02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pause03.sh b/testcase/syscalls/ltp.syscalls.pause03.sh new file mode 100755 index 0000000..2c7971e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pause03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-764612368 +# @用例名称: ltp.syscalls.pause03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pause03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pause03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.perf_event_open01.sh b/testcase/syscalls/ltp.syscalls.perf_event_open01.sh new file mode 100755 index 0000000..e05ed7f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.perf_event_open01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-228470546 +# @用例名称: ltp.syscalls.perf_event_open01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.perf_event_open01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls perf_event_open01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.perf_event_open02.sh b/testcase/syscalls/ltp.syscalls.perf_event_open02.sh new file mode 100755 index 0000000..d948290 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.perf_event_open02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-236990251 +# @用例名称: ltp.syscalls.perf_event_open02 +# @用例级别: 1 +# @用例标签: TK5不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.perf_event_open02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls perf_event_open02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.perf_event_open03.sh b/testcase/syscalls/ltp.syscalls.perf_event_open03.sh new file mode 100755 index 0000000..1c91b97 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.perf_event_open03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-519767069 +# @用例名称: ltp.syscalls.perf_event_open03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.perf_event_open03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls perf_event_open03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.personality01.sh b/testcase/syscalls/ltp.syscalls.personality01.sh new file mode 100755 index 0000000..f0ac2ab --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.personality01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-775363188 +# @用例名称: ltp.syscalls.personality01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.personality01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls personality01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.personality02.sh b/testcase/syscalls/ltp.syscalls.personality02.sh new file mode 100755 index 0000000..3b6b640 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.personality02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-783915965 +# @用例名称: ltp.syscalls.personality02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.personality02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls personality02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pidfd_getfd01.sh b/testcase/syscalls/ltp.syscalls.pidfd_getfd01.sh new file mode 100755 index 0000000..36e2621 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pidfd_getfd01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141852-532864634 +# @用例名称: ltp.syscalls.pidfd_getfd01 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pidfd_getfd01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pidfd_getfd01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pidfd_getfd02.sh b/testcase/syscalls/ltp.syscalls.pidfd_getfd02.sh new file mode 100755 index 0000000..9873a89 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pidfd_getfd02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141852-596139875 +# @用例名称: ltp.syscalls.pidfd_getfd02 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pidfd_getfd02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pidfd_getfd02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pidfd_open01.sh b/testcase/syscalls/ltp.syscalls.pidfd_open01.sh new file mode 100755 index 0000000..1471828 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pidfd_open01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-794376041 +# @用例名称: ltp.syscalls.pidfd_open01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pidfd_open01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pidfd_open01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pidfd_open02.sh b/testcase/syscalls/ltp.syscalls.pidfd_open02.sh new file mode 100755 index 0000000..62484e6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pidfd_open02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-807344211 +# @用例名称: ltp.syscalls.pidfd_open02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pidfd_open02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pidfd_open02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pidfd_open03.sh b/testcase/syscalls/ltp.syscalls.pidfd_open03.sh new file mode 100755 index 0000000..5e0a538 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pidfd_open03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-816009087 +# @用例名称: ltp.syscalls.pidfd_open03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pidfd_open03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pidfd_open03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pidfd_open04.sh b/testcase/syscalls/ltp.syscalls.pidfd_open04.sh new file mode 100755 index 0000000..a36f6d2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pidfd_open04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141852-659431579 +# @用例名称: ltp.syscalls.pidfd_open04 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pidfd_open04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pidfd_open04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pidfd_send_signal01.sh b/testcase/syscalls/ltp.syscalls.pidfd_send_signal01.sh new file mode 100755 index 0000000..675fdd7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pidfd_send_signal01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-826381199 +# @用例名称: ltp.syscalls.pidfd_send_signal01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pidfd_send_signal01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pidfd_send_signal01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pidfd_send_signal02.sh b/testcase/syscalls/ltp.syscalls.pidfd_send_signal02.sh new file mode 100755 index 0000000..1bd1f59 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pidfd_send_signal02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-835035325 +# @用例名称: ltp.syscalls.pidfd_send_signal02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pidfd_send_signal02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pidfd_send_signal02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pidfd_send_signal03.sh b/testcase/syscalls/ltp.syscalls.pidfd_send_signal03.sh new file mode 100755 index 0000000..cde80ca --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pidfd_send_signal03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-843550401 +# @用例名称: ltp.syscalls.pidfd_send_signal03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pidfd_send_signal03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pidfd_send_signal03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe01.sh b/testcase/syscalls/ltp.syscalls.pipe01.sh new file mode 100755 index 0000000..c5db477 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-854106607 +# @用例名称: ltp.syscalls.pipe01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe02.sh b/testcase/syscalls/ltp.syscalls.pipe02.sh new file mode 100755 index 0000000..56ff7c8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-864819066 +# @用例名称: ltp.syscalls.pipe02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe03.sh b/testcase/syscalls/ltp.syscalls.pipe03.sh new file mode 100755 index 0000000..ab14656 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-873399384 +# @用例名称: ltp.syscalls.pipe03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe04.sh b/testcase/syscalls/ltp.syscalls.pipe04.sh new file mode 100755 index 0000000..d898ffe --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-881935479 +# @用例名称: ltp.syscalls.pipe04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe05.sh b/testcase/syscalls/ltp.syscalls.pipe05.sh new file mode 100755 index 0000000..cfd2494 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-892807386 +# @用例名称: ltp.syscalls.pipe05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe06.sh b/testcase/syscalls/ltp.syscalls.pipe06.sh new file mode 100755 index 0000000..2d8644e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-901348591 +# @用例名称: ltp.syscalls.pipe06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe07.sh b/testcase/syscalls/ltp.syscalls.pipe07.sh new file mode 100755 index 0000000..f77bbc8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-909814756 +# @用例名称: ltp.syscalls.pipe07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe08.sh b/testcase/syscalls/ltp.syscalls.pipe08.sh new file mode 100755 index 0000000..2728a58 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-918341113 +# @用例名称: ltp.syscalls.pipe08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe09.sh b/testcase/syscalls/ltp.syscalls.pipe09.sh new file mode 100755 index 0000000..d9d1e3a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-926926771 +# @用例名称: ltp.syscalls.pipe09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe10.sh b/testcase/syscalls/ltp.syscalls.pipe10.sh new file mode 100755 index 0000000..a8a77be --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-935462015 +# @用例名称: ltp.syscalls.pipe10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe11.sh b/testcase/syscalls/ltp.syscalls.pipe11.sh new file mode 100755 index 0000000..3d64b70 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-943991858 +# @用例名称: ltp.syscalls.pipe11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe11 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe12.sh b/testcase/syscalls/ltp.syscalls.pipe12.sh new file mode 100755 index 0000000..7730ece --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-952575393 +# @用例名称: ltp.syscalls.pipe12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe12 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe13.sh b/testcase/syscalls/ltp.syscalls.pipe13.sh new file mode 100755 index 0000000..51bd7db --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-961238736 +# @用例名称: ltp.syscalls.pipe13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe13 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe14.sh b/testcase/syscalls/ltp.syscalls.pipe14.sh new file mode 100755 index 0000000..0e0c121 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe14.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172839-611013439 +# @用例名称: ltp.syscalls.pipe14 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe14 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe15.sh b/testcase/syscalls/ltp.syscalls.pipe15.sh new file mode 100755 index 0000000..0637ef6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe15.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172839-684823299 +# @用例名称: ltp.syscalls.pipe15 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe15 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe15 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe2_01.sh b/testcase/syscalls/ltp.syscalls.pipe2_01.sh new file mode 100755 index 0000000..ba8ef87 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe2_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-971882867 +# @用例名称: ltp.syscalls.pipe2_01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe2_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe2_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe2_02.sh b/testcase/syscalls/ltp.syscalls.pipe2_02.sh new file mode 100755 index 0000000..74a805b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe2_02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-980535420 +# @用例名称: ltp.syscalls.pipe2_02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe2_02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe2_02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipe2_04.sh b/testcase/syscalls/ltp.syscalls.pipe2_04.sh new file mode 100755 index 0000000..6816c65 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipe2_04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-989019538 +# @用例名称: ltp.syscalls.pipe2_04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipe2_04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipe2_04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pivot_root01.sh b/testcase/syscalls/ltp.syscalls.pivot_root01.sh new file mode 100755 index 0000000..3e02e51 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pivot_root01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213018-999446002 +# @用例名称: ltp.syscalls.pivot_root01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pivot_root01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pivot_root01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pkey01.sh b/testcase/syscalls/ltp.syscalls.pkey01.sh new file mode 100755 index 0000000..96a5d64 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pkey01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-827890277 +# @用例名称: ltp.syscalls.pkey01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pkey01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pkey01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.poll01.sh b/testcase/syscalls/ltp.syscalls.poll01.sh new file mode 100755 index 0000000..013acc6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.poll01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-009907931 +# @用例名称: ltp.syscalls.poll01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.poll01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls poll01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.poll02.sh b/testcase/syscalls/ltp.syscalls.poll02.sh new file mode 100755 index 0000000..0c420bf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.poll02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-018453364 +# @用例名称: ltp.syscalls.poll02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.poll02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls poll02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.posix_fadvise01.sh b/testcase/syscalls/ltp.syscalls.posix_fadvise01.sh new file mode 100755 index 0000000..0653c60 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.posix_fadvise01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-364798280 +# @用例名称: ltp.syscalls.posix_fadvise01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.posix_fadvise01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls posix_fadvise01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.posix_fadvise01_64.sh b/testcase/syscalls/ltp.syscalls.posix_fadvise01_64.sh new file mode 100755 index 0000000..6123c39 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.posix_fadvise01_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-373538126 +# @用例名称: ltp.syscalls.posix_fadvise01_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.posix_fadvise01_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls posix_fadvise01_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.posix_fadvise02.sh b/testcase/syscalls/ltp.syscalls.posix_fadvise02.sh new file mode 100755 index 0000000..ab0ea25 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.posix_fadvise02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-382526328 +# @用例名称: ltp.syscalls.posix_fadvise02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.posix_fadvise02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls posix_fadvise02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.posix_fadvise02_64.sh b/testcase/syscalls/ltp.syscalls.posix_fadvise02_64.sh new file mode 100755 index 0000000..b190ecf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.posix_fadvise02_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-391002291 +# @用例名称: ltp.syscalls.posix_fadvise02_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.posix_fadvise02_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls posix_fadvise02_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.posix_fadvise03.sh b/testcase/syscalls/ltp.syscalls.posix_fadvise03.sh new file mode 100755 index 0000000..28e8523 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.posix_fadvise03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-399487020 +# @用例名称: ltp.syscalls.posix_fadvise03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.posix_fadvise03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls posix_fadvise03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.posix_fadvise03_64.sh b/testcase/syscalls/ltp.syscalls.posix_fadvise03_64.sh new file mode 100755 index 0000000..dd654e0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.posix_fadvise03_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-408208682 +# @用例名称: ltp.syscalls.posix_fadvise03_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.posix_fadvise03_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls posix_fadvise03_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.posix_fadvise04.sh b/testcase/syscalls/ltp.syscalls.posix_fadvise04.sh new file mode 100755 index 0000000..31c816b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.posix_fadvise04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-417000296 +# @用例名称: ltp.syscalls.posix_fadvise04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.posix_fadvise04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls posix_fadvise04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.posix_fadvise04_64.sh b/testcase/syscalls/ltp.syscalls.posix_fadvise04_64.sh new file mode 100755 index 0000000..1087f92 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.posix_fadvise04_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213013-425804634 +# @用例名称: ltp.syscalls.posix_fadvise04_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.posix_fadvise04_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls posix_fadvise04_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ppoll01.sh b/testcase/syscalls/ltp.syscalls.ppoll01.sh new file mode 100755 index 0000000..046087a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ppoll01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-029090741 +# @用例名称: ltp.syscalls.ppoll01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ppoll01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ppoll01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.prctl01.sh b/testcase/syscalls/ltp.syscalls.prctl01.sh new file mode 100755 index 0000000..a678871 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.prctl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-039442174 +# @用例名称: ltp.syscalls.prctl01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.prctl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls prctl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.prctl02.sh b/testcase/syscalls/ltp.syscalls.prctl02.sh new file mode 100755 index 0000000..9f0be0c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.prctl02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-048519563 +# @用例名称: ltp.syscalls.prctl02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.prctl02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls prctl02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.prctl03.sh b/testcase/syscalls/ltp.syscalls.prctl03.sh new file mode 100755 index 0000000..7a72a78 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.prctl03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-057165273 +# @用例名称: ltp.syscalls.prctl03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.prctl03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls prctl03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.prctl04.sh b/testcase/syscalls/ltp.syscalls.prctl04.sh new file mode 100755 index 0000000..6a67e85 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.prctl04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-065659730 +# @用例名称: ltp.syscalls.prctl04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.prctl04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls prctl04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.prctl05.sh b/testcase/syscalls/ltp.syscalls.prctl05.sh new file mode 100755 index 0000000..225e27d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.prctl05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-074532747 +# @用例名称: ltp.syscalls.prctl05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.prctl05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls prctl05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.prctl06.sh b/testcase/syscalls/ltp.syscalls.prctl06.sh new file mode 100755 index 0000000..f8550c6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.prctl06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-083105431 +# @用例名称: ltp.syscalls.prctl06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.prctl06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls prctl06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.prctl07.sh b/testcase/syscalls/ltp.syscalls.prctl07.sh new file mode 100755 index 0000000..58ec89d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.prctl07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-091617791 +# @用例名称: ltp.syscalls.prctl07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.prctl07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls prctl07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.prctl08.sh b/testcase/syscalls/ltp.syscalls.prctl08.sh new file mode 100755 index 0000000..51c6263 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.prctl08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-100237203 +# @用例名称: ltp.syscalls.prctl08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.prctl08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls prctl08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.prctl09.sh b/testcase/syscalls/ltp.syscalls.prctl09.sh new file mode 100755 index 0000000..6d46ac8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.prctl09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-108958334 +# @用例名称: ltp.syscalls.prctl09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.prctl09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls prctl09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.prctl10.sh b/testcase/syscalls/ltp.syscalls.prctl10.sh new file mode 100755 index 0000000..443480a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.prctl10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141852-724450153 +# @用例名称: ltp.syscalls.prctl10 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.prctl10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls prctl10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pread01.sh b/testcase/syscalls/ltp.syscalls.pread01.sh new file mode 100755 index 0000000..90095d5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pread01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-120438941 +# @用例名称: ltp.syscalls.pread01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pread01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pread01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pread01_64.sh b/testcase/syscalls/ltp.syscalls.pread01_64.sh new file mode 100755 index 0000000..319bf2c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pread01_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-129095000 +# @用例名称: ltp.syscalls.pread01_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pread01_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pread01_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pread02.sh b/testcase/syscalls/ltp.syscalls.pread02.sh new file mode 100755 index 0000000..ed78634 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pread02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-137460746 +# @用例名称: ltp.syscalls.pread02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pread02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pread02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pread02_64.sh b/testcase/syscalls/ltp.syscalls.pread02_64.sh new file mode 100755 index 0000000..98a60d3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pread02_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-146037478 +# @用例名称: ltp.syscalls.pread02_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pread02_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pread02_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.preadv01.sh b/testcase/syscalls/ltp.syscalls.preadv01.sh new file mode 100755 index 0000000..9aba36a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.preadv01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-156408588 +# @用例名称: ltp.syscalls.preadv01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.preadv01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls preadv01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.preadv01_64.sh b/testcase/syscalls/ltp.syscalls.preadv01_64.sh new file mode 100755 index 0000000..73106ac --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.preadv01_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-165500523 +# @用例名称: ltp.syscalls.preadv01_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.preadv01_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls preadv01_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.preadv02.sh b/testcase/syscalls/ltp.syscalls.preadv02.sh new file mode 100755 index 0000000..ec4bef7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.preadv02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-174079499 +# @用例名称: ltp.syscalls.preadv02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.preadv02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls preadv02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.preadv02_64.sh b/testcase/syscalls/ltp.syscalls.preadv02_64.sh new file mode 100755 index 0000000..d6e45a4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.preadv02_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-182712236 +# @用例名称: ltp.syscalls.preadv02_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.preadv02_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls preadv02_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.preadv03.sh b/testcase/syscalls/ltp.syscalls.preadv03.sh new file mode 100755 index 0000000..dc10612 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.preadv03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-191252297 +# @用例名称: ltp.syscalls.preadv03 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.preadv03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls preadv03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.preadv03_64.sh b/testcase/syscalls/ltp.syscalls.preadv03_64.sh new file mode 100755 index 0000000..6f3a34f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.preadv03_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-199844638 +# @用例名称: ltp.syscalls.preadv03_64 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.preadv03_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls preadv03_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.preadv201.sh b/testcase/syscalls/ltp.syscalls.preadv201.sh new file mode 100755 index 0000000..6e86c7a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.preadv201.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-210365659 +# @用例名称: ltp.syscalls.preadv201 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.preadv201 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls preadv201 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.preadv201_64.sh b/testcase/syscalls/ltp.syscalls.preadv201_64.sh new file mode 100755 index 0000000..b217bfe --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.preadv201_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-218933494 +# @用例名称: ltp.syscalls.preadv201_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.preadv201_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls preadv201_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.preadv202.sh b/testcase/syscalls/ltp.syscalls.preadv202.sh new file mode 100755 index 0000000..c2dbff3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.preadv202.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-227918589 +# @用例名称: ltp.syscalls.preadv202 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.preadv202 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls preadv202 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.preadv202_64.sh b/testcase/syscalls/ltp.syscalls.preadv202_64.sh new file mode 100755 index 0000000..65d75f4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.preadv202_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-236536929 +# @用例名称: ltp.syscalls.preadv202_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.preadv202_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls preadv202_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.preadv203.sh b/testcase/syscalls/ltp.syscalls.preadv203.sh new file mode 100755 index 0000000..b1dfc6e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.preadv203.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-245090586 +# @用例名称: ltp.syscalls.preadv203 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.preadv203 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls preadv203 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.preadv203_64.sh b/testcase/syscalls/ltp.syscalls.preadv203_64.sh new file mode 100755 index 0000000..9445437 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.preadv203_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-253795047 +# @用例名称: ltp.syscalls.preadv203_64 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.preadv203_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls preadv203_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.process_madvise01.sh b/testcase/syscalls/ltp.syscalls.process_madvise01.sh new file mode 100755 index 0000000..3f9d8d0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.process_madvise01.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172839-761439631 +# @用例名称: ltp.syscalls.process_madvise01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.process_madvise01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls process_madvise01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.process_vm_readv01.sh b/testcase/syscalls/ltp.syscalls.process_vm_readv01.sh new file mode 100755 index 0000000..ba2e747 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.process_vm_readv01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-274842187 +# @用例名称: ltp.syscalls.process_vm_readv01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.process_vm_readv01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls process_vm_readv01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.process_vm_readv02.sh b/testcase/syscalls/ltp.syscalls.process_vm_readv02.sh new file mode 100755 index 0000000..b9b1d86 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.process_vm_readv02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-283450066 +# @用例名称: ltp.syscalls.process_vm_readv02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.process_vm_readv02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls process_vm_readv02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.process_vm_readv03.sh b/testcase/syscalls/ltp.syscalls.process_vm_readv03.sh new file mode 100755 index 0000000..92ff360 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.process_vm_readv03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-291905871 +# @用例名称: ltp.syscalls.process_vm_readv03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.process_vm_readv03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls process_vm_readv03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.process_vm_writev01.sh b/testcase/syscalls/ltp.syscalls.process_vm_writev01.sh new file mode 100755 index 0000000..302e770 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.process_vm_writev01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-300418793 +# @用例名称: ltp.syscalls.process_vm_writev01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.process_vm_writev01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls process_vm_writev01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.process_vm_writev02.sh b/testcase/syscalls/ltp.syscalls.process_vm_writev02.sh new file mode 100755 index 0000000..022b6b7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.process_vm_writev02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-309118676 +# @用例名称: ltp.syscalls.process_vm_writev02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.process_vm_writev02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls process_vm_writev02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.profil01.sh b/testcase/syscalls/ltp.syscalls.profil01.sh new file mode 100755 index 0000000..e19888d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.profil01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-264384395 +# @用例名称: ltp.syscalls.profil01 +# @用例级别: 1 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.profil01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls profil01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.prot_hsymlinks.sh b/testcase/syscalls/ltp.syscalls.prot_hsymlinks.sh new file mode 100755 index 0000000..91b3cf3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.prot_hsymlinks.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-319614118 +# @用例名称: ltp.syscalls.prot_hsymlinks +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.prot_hsymlinks + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls prot_hsymlinks + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pselect01.sh b/testcase/syscalls/ltp.syscalls.pselect01.sh new file mode 100755 index 0000000..2aa1e30 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pselect01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-338934737 +# @用例名称: ltp.syscalls.pselect01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pselect01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pselect01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pselect01_64.sh b/testcase/syscalls/ltp.syscalls.pselect01_64.sh new file mode 100755 index 0000000..a67cd31 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pselect01_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-347540582 +# @用例名称: ltp.syscalls.pselect01_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pselect01_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pselect01_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pselect02.sh b/testcase/syscalls/ltp.syscalls.pselect02.sh new file mode 100755 index 0000000..644abdf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pselect02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-356131310 +# @用例名称: ltp.syscalls.pselect02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pselect02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pselect02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pselect02_64.sh b/testcase/syscalls/ltp.syscalls.pselect02_64.sh new file mode 100755 index 0000000..0650561 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pselect02_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-364786799 +# @用例名称: ltp.syscalls.pselect02_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pselect02_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pselect02_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pselect03.sh b/testcase/syscalls/ltp.syscalls.pselect03.sh new file mode 100755 index 0000000..fbca50e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pselect03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-373420257 +# @用例名称: ltp.syscalls.pselect03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pselect03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pselect03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pselect03_64.sh b/testcase/syscalls/ltp.syscalls.pselect03_64.sh new file mode 100755 index 0000000..704b96e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pselect03_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-382062911 +# @用例名称: ltp.syscalls.pselect03_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pselect03_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pselect03_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ptrace01.sh b/testcase/syscalls/ltp.syscalls.ptrace01.sh new file mode 100755 index 0000000..f2af31e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ptrace01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-392595222 +# @用例名称: ltp.syscalls.ptrace01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ptrace01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ptrace01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ptrace02.sh b/testcase/syscalls/ltp.syscalls.ptrace02.sh new file mode 100755 index 0000000..37bd490 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ptrace02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-402117754 +# @用例名称: ltp.syscalls.ptrace02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ptrace02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ptrace02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ptrace03.sh b/testcase/syscalls/ltp.syscalls.ptrace03.sh new file mode 100755 index 0000000..e570a93 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ptrace03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-410828816 +# @用例名称: ltp.syscalls.ptrace03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ptrace03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ptrace03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ptrace04.sh b/testcase/syscalls/ltp.syscalls.ptrace04.sh new file mode 100755 index 0000000..7e71cb9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ptrace04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-419587238 +# @用例名称: ltp.syscalls.ptrace04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ptrace04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ptrace04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ptrace05.sh b/testcase/syscalls/ltp.syscalls.ptrace05.sh new file mode 100755 index 0000000..f0d6c2e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ptrace05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-428152839 +# @用例名称: ltp.syscalls.ptrace05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ptrace05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ptrace05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ptrace06.sh b/testcase/syscalls/ltp.syscalls.ptrace06.sh new file mode 100755 index 0000000..8b568b9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ptrace06.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172839-833921597 +# @用例名称: ltp.syscalls.ptrace06 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ptrace06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ptrace06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ptrace07.sh b/testcase/syscalls/ltp.syscalls.ptrace07.sh new file mode 100755 index 0000000..4360694 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ptrace07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-438797551 +# @用例名称: ltp.syscalls.ptrace07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ptrace07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ptrace07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ptrace08.sh b/testcase/syscalls/ltp.syscalls.ptrace08.sh new file mode 100755 index 0000000..60bb0b1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ptrace08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-447385923 +# @用例名称: ltp.syscalls.ptrace08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ptrace08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ptrace08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ptrace09.sh b/testcase/syscalls/ltp.syscalls.ptrace09.sh new file mode 100755 index 0000000..f687b67 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ptrace09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-455969007 +# @用例名称: ltp.syscalls.ptrace09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ptrace09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ptrace09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ptrace10.sh b/testcase/syscalls/ltp.syscalls.ptrace10.sh new file mode 100755 index 0000000..99849ad --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ptrace10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-464917264 +# @用例名称: ltp.syscalls.ptrace10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ptrace10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ptrace10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ptrace11.sh b/testcase/syscalls/ltp.syscalls.ptrace11.sh new file mode 100755 index 0000000..995d8aa --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ptrace11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-473575538 +# @用例名称: ltp.syscalls.ptrace11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ptrace11 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ptrace11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwrite01.sh b/testcase/syscalls/ltp.syscalls.pwrite01.sh new file mode 100755 index 0000000..7d730b6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwrite01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-484116976 +# @用例名称: ltp.syscalls.pwrite01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwrite01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwrite01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwrite01_64.sh b/testcase/syscalls/ltp.syscalls.pwrite01_64.sh new file mode 100755 index 0000000..d549f56 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwrite01_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-520413385 +# @用例名称: ltp.syscalls.pwrite01_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwrite01_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwrite01_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwrite02.sh b/testcase/syscalls/ltp.syscalls.pwrite02.sh new file mode 100755 index 0000000..aacb8fe --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwrite02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-492762446 +# @用例名称: ltp.syscalls.pwrite02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwrite02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwrite02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwrite02_64.sh b/testcase/syscalls/ltp.syscalls.pwrite02_64.sh new file mode 100755 index 0000000..79910e7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwrite02_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-529062522 +# @用例名称: ltp.syscalls.pwrite02_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwrite02_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwrite02_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwrite03.sh b/testcase/syscalls/ltp.syscalls.pwrite03.sh new file mode 100755 index 0000000..79e65fc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwrite03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-501312999 +# @用例名称: ltp.syscalls.pwrite03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwrite03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwrite03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwrite03_64.sh b/testcase/syscalls/ltp.syscalls.pwrite03_64.sh new file mode 100755 index 0000000..76e78b0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwrite03_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-537674800 +# @用例名称: ltp.syscalls.pwrite03_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwrite03_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwrite03_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwrite04.sh b/testcase/syscalls/ltp.syscalls.pwrite04.sh new file mode 100755 index 0000000..aad4a00 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwrite04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-509879111 +# @用例名称: ltp.syscalls.pwrite04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwrite04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwrite04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwrite04_64.sh b/testcase/syscalls/ltp.syscalls.pwrite04_64.sh new file mode 100755 index 0000000..9168708 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwrite04_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-546238076 +# @用例名称: ltp.syscalls.pwrite04_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwrite04_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwrite04_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwritev01.sh b/testcase/syscalls/ltp.syscalls.pwritev01.sh new file mode 100755 index 0000000..2ebed88 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwritev01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-556947980 +# @用例名称: ltp.syscalls.pwritev01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwritev01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwritev01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwritev01_64.sh b/testcase/syscalls/ltp.syscalls.pwritev01_64.sh new file mode 100755 index 0000000..6ab0307 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwritev01_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-565478686 +# @用例名称: ltp.syscalls.pwritev01_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwritev01_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwritev01_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwritev02.sh b/testcase/syscalls/ltp.syscalls.pwritev02.sh new file mode 100755 index 0000000..caf512f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwritev02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-574394702 +# @用例名称: ltp.syscalls.pwritev02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwritev02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwritev02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwritev02_64.sh b/testcase/syscalls/ltp.syscalls.pwritev02_64.sh new file mode 100755 index 0000000..26994f4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwritev02_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-583073985 +# @用例名称: ltp.syscalls.pwritev02_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwritev02_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwritev02_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwritev03.sh b/testcase/syscalls/ltp.syscalls.pwritev03.sh new file mode 100755 index 0000000..23cb3d7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwritev03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-591645757 +# @用例名称: ltp.syscalls.pwritev03 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwritev03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwritev03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwritev03_64.sh b/testcase/syscalls/ltp.syscalls.pwritev03_64.sh new file mode 100755 index 0000000..8197981 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwritev03_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-600222268 +# @用例名称: ltp.syscalls.pwritev03_64 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwritev03_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwritev03_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwritev201.sh b/testcase/syscalls/ltp.syscalls.pwritev201.sh new file mode 100755 index 0000000..1f60549 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwritev201.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-610854175 +# @用例名称: ltp.syscalls.pwritev201 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwritev201 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwritev201 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwritev201_64.sh b/testcase/syscalls/ltp.syscalls.pwritev201_64.sh new file mode 100755 index 0000000..48612e1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwritev201_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-619504505 +# @用例名称: ltp.syscalls.pwritev201_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwritev201_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwritev201_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwritev202.sh b/testcase/syscalls/ltp.syscalls.pwritev202.sh new file mode 100755 index 0000000..11d3d38 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwritev202.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-628035401 +# @用例名称: ltp.syscalls.pwritev202 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwritev202 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwritev202 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pwritev202_64.sh b/testcase/syscalls/ltp.syscalls.pwritev202_64.sh new file mode 100755 index 0000000..1ec633d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pwritev202_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-636887066 +# @用例名称: ltp.syscalls.pwritev202_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pwritev202_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pwritev202_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.qmm01.sh b/testcase/syscalls/ltp.syscalls.qmm01.sh new file mode 100755 index 0000000..94f900b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.qmm01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213017-431728637 +# @用例名称: ltp.syscalls.qmm01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.qmm01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls qmm01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.quotactl01.sh b/testcase/syscalls/ltp.syscalls.quotactl01.sh new file mode 100755 index 0000000..9537524 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.quotactl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-655383613 +# @用例名称: ltp.syscalls.quotactl01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.quotactl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls quotactl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.quotactl02.sh b/testcase/syscalls/ltp.syscalls.quotactl02.sh new file mode 100755 index 0000000..708937b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.quotactl02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-664013193 +# @用例名称: ltp.syscalls.quotactl02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.quotactl02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls quotactl02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.quotactl03.sh b/testcase/syscalls/ltp.syscalls.quotactl03.sh new file mode 100755 index 0000000..0ff48cc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.quotactl03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-673629430 +# @用例名称: ltp.syscalls.quotactl03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.quotactl03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls quotactl03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.quotactl04.sh b/testcase/syscalls/ltp.syscalls.quotactl04.sh new file mode 100755 index 0000000..d88f498 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.quotactl04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-682137042 +# @用例名称: ltp.syscalls.quotactl04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.quotactl04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls quotactl04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.quotactl05.sh b/testcase/syscalls/ltp.syscalls.quotactl05.sh new file mode 100755 index 0000000..1c0a359 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.quotactl05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-690724654 +# @用例名称: ltp.syscalls.quotactl05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.quotactl05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls quotactl05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.quotactl06.sh b/testcase/syscalls/ltp.syscalls.quotactl06.sh new file mode 100755 index 0000000..c0ce78d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.quotactl06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-699366226 +# @用例名称: ltp.syscalls.quotactl06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.quotactl06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls quotactl06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.quotactl07.sh b/testcase/syscalls/ltp.syscalls.quotactl07.sh new file mode 100755 index 0000000..f63fa47 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.quotactl07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-708022196 +# @用例名称: ltp.syscalls.quotactl07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.quotactl07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls quotactl07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.quotactl08.sh b/testcase/syscalls/ltp.syscalls.quotactl08.sh new file mode 100755 index 0000000..89163be --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.quotactl08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-716638071 +# @用例名称: ltp.syscalls.quotactl08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.quotactl08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls quotactl08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.quotactl09.sh b/testcase/syscalls/ltp.syscalls.quotactl09.sh new file mode 100755 index 0000000..3c32bfa --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.quotactl09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-725170249 +# @用例名称: ltp.syscalls.quotactl09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.quotactl09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls quotactl09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.read01.sh b/testcase/syscalls/ltp.syscalls.read01.sh new file mode 100755 index 0000000..9a029fd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.read01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-735768434 +# @用例名称: ltp.syscalls.read01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.read01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls read01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.read02.sh b/testcase/syscalls/ltp.syscalls.read02.sh new file mode 100755 index 0000000..5830b3f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.read02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-744266668 +# @用例名称: ltp.syscalls.read02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.read02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls read02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.read03.sh b/testcase/syscalls/ltp.syscalls.read03.sh new file mode 100755 index 0000000..a8dcc4b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.read03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-752853649 +# @用例名称: ltp.syscalls.read03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.read03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls read03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.read04.sh b/testcase/syscalls/ltp.syscalls.read04.sh new file mode 100755 index 0000000..dc6f4ef --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.read04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-761617471 +# @用例名称: ltp.syscalls.read04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.read04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls read04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.readahead01.sh b/testcase/syscalls/ltp.syscalls.readahead01.sh new file mode 100755 index 0000000..d91b456 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.readahead01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-772977149 +# @用例名称: ltp.syscalls.readahead01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.readahead01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls readahead01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.readahead02.sh b/testcase/syscalls/ltp.syscalls.readahead02.sh new file mode 100755 index 0000000..9a51c46 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.readahead02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-782294116 +# @用例名称: ltp.syscalls.readahead02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.readahead02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls readahead02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.readdir01.sh b/testcase/syscalls/ltp.syscalls.readdir01.sh new file mode 100755 index 0000000..2be415a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.readdir01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-793974096 +# @用例名称: ltp.syscalls.readdir01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.readdir01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls readdir01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.readdir21.sh b/testcase/syscalls/ltp.syscalls.readdir21.sh new file mode 100755 index 0000000..3a42680 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.readdir21.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-803548445 +# @用例名称: ltp.syscalls.readdir21 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.readdir21 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls readdir21 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.readlink01.sh b/testcase/syscalls/ltp.syscalls.readlink01.sh new file mode 100755 index 0000000..864d689 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.readlink01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-824646149 +# @用例名称: ltp.syscalls.readlink01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.readlink01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls readlink01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.readlink01A.sh b/testcase/syscalls/ltp.syscalls.readlink01A.sh new file mode 100755 index 0000000..b2d7d8d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.readlink01A.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-814798639 +# @用例名称: ltp.syscalls.readlink01A +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.readlink01A + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls readlink01A + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.readlink03.sh b/testcase/syscalls/ltp.syscalls.readlink03.sh new file mode 100755 index 0000000..3bfdbde --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.readlink03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-834205981 +# @用例名称: ltp.syscalls.readlink03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.readlink03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls readlink03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.readlinkat01.sh b/testcase/syscalls/ltp.syscalls.readlinkat01.sh new file mode 100755 index 0000000..64b8fc2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.readlinkat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-847731603 +# @用例名称: ltp.syscalls.readlinkat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.readlinkat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls readlinkat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.readlinkat02.sh b/testcase/syscalls/ltp.syscalls.readlinkat02.sh new file mode 100755 index 0000000..08202cb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.readlinkat02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-856484344 +# @用例名称: ltp.syscalls.readlinkat02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.readlinkat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls readlinkat02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.readv01.sh b/testcase/syscalls/ltp.syscalls.readv01.sh new file mode 100755 index 0000000..01ecbcf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.readv01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-867203946 +# @用例名称: ltp.syscalls.readv01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.readv01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls readv01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.readv02.sh b/testcase/syscalls/ltp.syscalls.readv02.sh new file mode 100755 index 0000000..2eafef4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.readv02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-877144961 +# @用例名称: ltp.syscalls.readv02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.readv02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls readv02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.realpath01.sh b/testcase/syscalls/ltp.syscalls.realpath01.sh new file mode 100755 index 0000000..62ff878 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.realpath01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-888039970 +# @用例名称: ltp.syscalls.realpath01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.realpath01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls realpath01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.reboot01.sh b/testcase/syscalls/ltp.syscalls.reboot01.sh new file mode 100755 index 0000000..45569b5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.reboot01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-898788507 +# @用例名称: ltp.syscalls.reboot01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.reboot01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls reboot01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.reboot02.sh b/testcase/syscalls/ltp.syscalls.reboot02.sh new file mode 100755 index 0000000..cbfe4eb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.reboot02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-907400394 +# @用例名称: ltp.syscalls.reboot02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.reboot02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls reboot02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.recv01.sh b/testcase/syscalls/ltp.syscalls.recv01.sh new file mode 100755 index 0000000..fe6dcf8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.recv01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-918651060 +# @用例名称: ltp.syscalls.recv01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.recv01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls recv01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.recvfrom01.sh b/testcase/syscalls/ltp.syscalls.recvfrom01.sh new file mode 100755 index 0000000..ff8330b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.recvfrom01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-929402371 +# @用例名称: ltp.syscalls.recvfrom01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.recvfrom01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls recvfrom01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.recvmmsg01.sh b/testcase/syscalls/ltp.syscalls.recvmmsg01.sh new file mode 100755 index 0000000..4593db3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.recvmmsg01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-967808408 +# @用例名称: ltp.syscalls.recvmmsg01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.recvmmsg01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls recvmmsg01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.recvmsg01.sh b/testcase/syscalls/ltp.syscalls.recvmsg01.sh new file mode 100755 index 0000000..4850d0d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.recvmsg01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-939931697 +# @用例名称: ltp.syscalls.recvmsg01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.recvmsg01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls recvmsg01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.recvmsg02.sh b/testcase/syscalls/ltp.syscalls.recvmsg02.sh new file mode 100755 index 0000000..b688a63 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.recvmsg02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-948467431 +# @用例名称: ltp.syscalls.recvmsg02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.recvmsg02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls recvmsg02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.recvmsg03.sh b/testcase/syscalls/ltp.syscalls.recvmsg03.sh new file mode 100755 index 0000000..63a7f14 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.recvmsg03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-957220363 +# @用例名称: ltp.syscalls.recvmsg03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.recvmsg03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls recvmsg03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.remap_file_pages01.sh b/testcase/syscalls/ltp.syscalls.remap_file_pages01.sh new file mode 100755 index 0000000..2cd0090 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.remap_file_pages01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-978431679 +# @用例名称: ltp.syscalls.remap_file_pages01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.remap_file_pages01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls remap_file_pages01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.remap_file_pages02.sh b/testcase/syscalls/ltp.syscalls.remap_file_pages02.sh new file mode 100755 index 0000000..ebffd02 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.remap_file_pages02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-986933871 +# @用例名称: ltp.syscalls.remap_file_pages02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.remap_file_pages02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls remap_file_pages02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.removexattr01.sh b/testcase/syscalls/ltp.syscalls.removexattr01.sh new file mode 100755 index 0000000..6751f58 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.removexattr01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213019-997474418 +# @用例名称: ltp.syscalls.removexattr01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.removexattr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls removexattr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.removexattr02.sh b/testcase/syscalls/ltp.syscalls.removexattr02.sh new file mode 100755 index 0000000..f2eab54 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.removexattr02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-006002899 +# @用例名称: ltp.syscalls.removexattr02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.removexattr02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls removexattr02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rename01.sh b/testcase/syscalls/ltp.syscalls.rename01.sh new file mode 100755 index 0000000..198903b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rename01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-016571278 +# @用例名称: ltp.syscalls.rename01 +# @用例级别: 0 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rename01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rename01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rename01A.sh b/testcase/syscalls/ltp.syscalls.rename01A.sh new file mode 100755 index 0000000..eddfaeb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rename01A.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-025887834 +# @用例名称: ltp.syscalls.rename01A +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rename01A + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rename01A + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rename03.sh b/testcase/syscalls/ltp.syscalls.rename03.sh new file mode 100755 index 0000000..21fc5b4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rename03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-045199636 +# @用例名称: ltp.syscalls.rename03 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rename03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rename03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rename04.sh b/testcase/syscalls/ltp.syscalls.rename04.sh new file mode 100755 index 0000000..e621506 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rename04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-053785265 +# @用例名称: ltp.syscalls.rename04 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rename04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rename04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rename05.sh b/testcase/syscalls/ltp.syscalls.rename05.sh new file mode 100755 index 0000000..d678638 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rename05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-062491248 +# @用例名称: ltp.syscalls.rename05 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rename05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rename05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rename06.sh b/testcase/syscalls/ltp.syscalls.rename06.sh new file mode 100755 index 0000000..0e3e603 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rename06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-072799840 +# @用例名称: ltp.syscalls.rename06 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rename06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rename06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rename07.sh b/testcase/syscalls/ltp.syscalls.rename07.sh new file mode 100755 index 0000000..c58a3fc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rename07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-082167111 +# @用例名称: ltp.syscalls.rename07 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rename07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rename07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rename08.sh b/testcase/syscalls/ltp.syscalls.rename08.sh new file mode 100755 index 0000000..892944b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rename08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-091149020 +# @用例名称: ltp.syscalls.rename08 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rename08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rename08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rename09.sh b/testcase/syscalls/ltp.syscalls.rename09.sh new file mode 100755 index 0000000..d86a9bd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rename09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-099644660 +# @用例名称: ltp.syscalls.rename09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rename09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rename09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rename10.sh b/testcase/syscalls/ltp.syscalls.rename10.sh new file mode 100755 index 0000000..d2cda81 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rename10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-108272157 +# @用例名称: ltp.syscalls.rename10 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rename10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rename10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rename11.sh b/testcase/syscalls/ltp.syscalls.rename11.sh new file mode 100755 index 0000000..517cdeb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rename11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-116853337 +# @用例名称: ltp.syscalls.rename11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rename11 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rename11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rename12.sh b/testcase/syscalls/ltp.syscalls.rename12.sh new file mode 100755 index 0000000..61a5b35 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rename12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-125385164 +# @用例名称: ltp.syscalls.rename12 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rename12 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rename12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rename13.sh b/testcase/syscalls/ltp.syscalls.rename13.sh new file mode 100755 index 0000000..3cecb24 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rename13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-133845979 +# @用例名称: ltp.syscalls.rename13 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rename13 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rename13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rename14.sh b/testcase/syscalls/ltp.syscalls.rename14.sh new file mode 100755 index 0000000..b406f07 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rename14.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-142587779 +# @用例名称: ltp.syscalls.rename14 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rename14 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rename14 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.renameat01.sh b/testcase/syscalls/ltp.syscalls.renameat01.sh new file mode 100755 index 0000000..6d897db --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.renameat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-154100776 +# @用例名称: ltp.syscalls.renameat01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.renameat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls renameat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.renameat201.sh b/testcase/syscalls/ltp.syscalls.renameat201.sh new file mode 100755 index 0000000..474d757 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.renameat201.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-164829564 +# @用例名称: ltp.syscalls.renameat201 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.renameat201 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls renameat201 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.renameat202.sh b/testcase/syscalls/ltp.syscalls.renameat202.sh new file mode 100755 index 0000000..fdbc7b2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.renameat202.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-173582055 +# @用例名称: ltp.syscalls.renameat202 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.renameat202 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls renameat202 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.request_key01.sh b/testcase/syscalls/ltp.syscalls.request_key01.sh new file mode 100755 index 0000000..3c7c69e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.request_key01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-184231505 +# @用例名称: ltp.syscalls.request_key01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.request_key01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls request_key01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.request_key02.sh b/testcase/syscalls/ltp.syscalls.request_key02.sh new file mode 100755 index 0000000..c81a19f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.request_key02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-192791154 +# @用例名称: ltp.syscalls.request_key02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.request_key02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls request_key02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.request_key03.sh b/testcase/syscalls/ltp.syscalls.request_key03.sh new file mode 100755 index 0000000..8710fce --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.request_key03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-201485757 +# @用例名称: ltp.syscalls.request_key03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.request_key03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls request_key03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.request_key04.sh b/testcase/syscalls/ltp.syscalls.request_key04.sh new file mode 100755 index 0000000..190cdb1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.request_key04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-210182072 +# @用例名称: ltp.syscalls.request_key04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.request_key04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls request_key04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.request_key05.sh b/testcase/syscalls/ltp.syscalls.request_key05.sh new file mode 100755 index 0000000..ab47769 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.request_key05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-218868549 +# @用例名称: ltp.syscalls.request_key05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.request_key05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls request_key05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rmdir01.sh b/testcase/syscalls/ltp.syscalls.rmdir01.sh new file mode 100755 index 0000000..9452b4c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rmdir01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-229469218 +# @用例名称: ltp.syscalls.rmdir01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rmdir01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rmdir01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rmdir02.sh b/testcase/syscalls/ltp.syscalls.rmdir02.sh new file mode 100755 index 0000000..0861453 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rmdir02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-237981759 +# @用例名称: ltp.syscalls.rmdir02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rmdir02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rmdir02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rmdir03.sh b/testcase/syscalls/ltp.syscalls.rmdir03.sh new file mode 100755 index 0000000..54fcc2b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rmdir03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-246556207 +# @用例名称: ltp.syscalls.rmdir03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rmdir03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rmdir03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rmdir03A.sh b/testcase/syscalls/ltp.syscalls.rmdir03A.sh new file mode 100755 index 0000000..c12fdab --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rmdir03A.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-255117969 +# @用例名称: ltp.syscalls.rmdir03A +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rmdir03A + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rmdir03A + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rt_sigaction01.sh b/testcase/syscalls/ltp.syscalls.rt_sigaction01.sh new file mode 100755 index 0000000..5ed1beb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rt_sigaction01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-265722085 +# @用例名称: ltp.syscalls.rt_sigaction01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rt_sigaction01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rt_sigaction01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rt_sigaction02.sh b/testcase/syscalls/ltp.syscalls.rt_sigaction02.sh new file mode 100755 index 0000000..8cdfcbf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rt_sigaction02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-274264663 +# @用例名称: ltp.syscalls.rt_sigaction02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rt_sigaction02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rt_sigaction02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rt_sigaction03.sh b/testcase/syscalls/ltp.syscalls.rt_sigaction03.sh new file mode 100755 index 0000000..6149a4e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rt_sigaction03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-282796531 +# @用例名称: ltp.syscalls.rt_sigaction03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rt_sigaction03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rt_sigaction03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rt_sigprocmask01.sh b/testcase/syscalls/ltp.syscalls.rt_sigprocmask01.sh new file mode 100755 index 0000000..fc942b6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rt_sigprocmask01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-291407015 +# @用例名称: ltp.syscalls.rt_sigprocmask01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rt_sigprocmask01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rt_sigprocmask01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rt_sigprocmask02.sh b/testcase/syscalls/ltp.syscalls.rt_sigprocmask02.sh new file mode 100755 index 0000000..08c3e61 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rt_sigprocmask02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-299843414 +# @用例名称: ltp.syscalls.rt_sigprocmask02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rt_sigprocmask02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rt_sigprocmask02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rt_sigqueueinfo01.sh b/testcase/syscalls/ltp.syscalls.rt_sigqueueinfo01.sh new file mode 100755 index 0000000..63a6c20 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rt_sigqueueinfo01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-308320158 +# @用例名称: ltp.syscalls.rt_sigqueueinfo01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rt_sigqueueinfo01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rt_sigqueueinfo01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rt_sigsuspend01.sh b/testcase/syscalls/ltp.syscalls.rt_sigsuspend01.sh new file mode 100755 index 0000000..dbbcd69 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rt_sigsuspend01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-316835415 +# @用例名称: ltp.syscalls.rt_sigsuspend01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rt_sigsuspend01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rt_sigsuspend01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rt_sigtimedwait01.sh b/testcase/syscalls/ltp.syscalls.rt_sigtimedwait01.sh new file mode 100755 index 0000000..18454b7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rt_sigtimedwait01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-325224925 +# @用例名称: ltp.syscalls.rt_sigtimedwait01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rt_sigtimedwait01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rt_sigtimedwait01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rt_tgsigqueueinfo01.sh b/testcase/syscalls/ltp.syscalls.rt_tgsigqueueinfo01.sh new file mode 100755 index 0000000..dad48a9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rt_tgsigqueueinfo01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-333778454 +# @用例名称: ltp.syscalls.rt_tgsigqueueinfo01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rt_tgsigqueueinfo01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rt_tgsigqueueinfo01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sbrk01.sh b/testcase/syscalls/ltp.syscalls.sbrk01.sh new file mode 100755 index 0000000..71e8da6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sbrk01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-344763001 +# @用例名称: ltp.syscalls.sbrk01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sbrk01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sbrk01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sbrk02.sh b/testcase/syscalls/ltp.syscalls.sbrk02.sh new file mode 100755 index 0000000..c9de127 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sbrk02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-353388153 +# @用例名称: ltp.syscalls.sbrk02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sbrk02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sbrk02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sbrk03.sh b/testcase/syscalls/ltp.syscalls.sbrk03.sh new file mode 100755 index 0000000..95ac780 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sbrk03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-362386494 +# @用例名称: ltp.syscalls.sbrk03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sbrk03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sbrk03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_get_priority_max01.sh b/testcase/syscalls/ltp.syscalls.sched_get_priority_max01.sh new file mode 100755 index 0000000..1494059 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_get_priority_max01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-373298716 +# @用例名称: ltp.syscalls.sched_get_priority_max01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_get_priority_max01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_get_priority_max01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_get_priority_max02.sh b/testcase/syscalls/ltp.syscalls.sched_get_priority_max02.sh new file mode 100755 index 0000000..d4b54a4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_get_priority_max02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-382029104 +# @用例名称: ltp.syscalls.sched_get_priority_max02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_get_priority_max02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_get_priority_max02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_get_priority_min01.sh b/testcase/syscalls/ltp.syscalls.sched_get_priority_min01.sh new file mode 100755 index 0000000..89847d4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_get_priority_min01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-392643920 +# @用例名称: ltp.syscalls.sched_get_priority_min01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_get_priority_min01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_get_priority_min01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_get_priority_min02.sh b/testcase/syscalls/ltp.syscalls.sched_get_priority_min02.sh new file mode 100755 index 0000000..de14ec5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_get_priority_min02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-401201566 +# @用例名称: ltp.syscalls.sched_get_priority_min02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_get_priority_min02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_get_priority_min02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_getaffinity01.sh b/testcase/syscalls/ltp.syscalls.sched_getaffinity01.sh new file mode 100755 index 0000000..d9b3fee --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_getaffinity01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-572154165 +# @用例名称: ltp.syscalls.sched_getaffinity01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_getaffinity01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_getaffinity01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_getattr01.sh b/testcase/syscalls/ltp.syscalls.sched_getattr01.sh new file mode 100755 index 0000000..b328e03 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_getattr01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-591572727 +# @用例名称: ltp.syscalls.sched_getattr01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_getattr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_getattr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_getattr02.sh b/testcase/syscalls/ltp.syscalls.sched_getattr02.sh new file mode 100755 index 0000000..638b1d7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_getattr02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-600218268 +# @用例名称: ltp.syscalls.sched_getattr02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_getattr02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_getattr02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_getparam01.sh b/testcase/syscalls/ltp.syscalls.sched_getparam01.sh new file mode 100755 index 0000000..1dfb7a6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_getparam01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-411835729 +# @用例名称: ltp.syscalls.sched_getparam01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_getparam01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_getparam01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_getparam03.sh b/testcase/syscalls/ltp.syscalls.sched_getparam03.sh new file mode 100755 index 0000000..f46f754 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_getparam03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-420534839 +# @用例名称: ltp.syscalls.sched_getparam03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_getparam03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_getparam03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_getscheduler01.sh b/testcase/syscalls/ltp.syscalls.sched_getscheduler01.sh new file mode 100755 index 0000000..f365db2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_getscheduler01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-505602142 +# @用例名称: ltp.syscalls.sched_getscheduler01 +# @用例级别: 1 +# @用例标签: TK5不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_getscheduler01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_getscheduler01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_getscheduler02.sh b/testcase/syscalls/ltp.syscalls.sched_getscheduler02.sh new file mode 100755 index 0000000..bbeaa7f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_getscheduler02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-514516807 +# @用例名称: ltp.syscalls.sched_getscheduler02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_getscheduler02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_getscheduler02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_rr_get_interval01.sh b/testcase/syscalls/ltp.syscalls.sched_rr_get_interval01.sh new file mode 100755 index 0000000..3839c47 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_rr_get_interval01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-431154554 +# @用例名称: ltp.syscalls.sched_rr_get_interval01 +# @用例级别: 1 +# @用例标签: TK5不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_rr_get_interval01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_rr_get_interval01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_rr_get_interval02.sh b/testcase/syscalls/ltp.syscalls.sched_rr_get_interval02.sh new file mode 100755 index 0000000..a8c9847 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_rr_get_interval02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-439744329 +# @用例名称: ltp.syscalls.sched_rr_get_interval02 +# @用例级别: 1 +# @用例标签: TK5不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_rr_get_interval02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_rr_get_interval02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_rr_get_interval03.sh b/testcase/syscalls/ltp.syscalls.sched_rr_get_interval03.sh new file mode 100755 index 0000000..27fdab0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_rr_get_interval03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-448295593 +# @用例名称: ltp.syscalls.sched_rr_get_interval03 +# @用例级别: 1 +# @用例标签: TK5不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_rr_get_interval03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_rr_get_interval03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_setaffinity01.sh b/testcase/syscalls/ltp.syscalls.sched_setaffinity01.sh new file mode 100755 index 0000000..0c1f859 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_setaffinity01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-563375155 +# @用例名称: ltp.syscalls.sched_setaffinity01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_setaffinity01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_setaffinity01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_setattr01.sh b/testcase/syscalls/ltp.syscalls.sched_setattr01.sh new file mode 100755 index 0000000..564bb98 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_setattr01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-582961201 +# @用例名称: ltp.syscalls.sched_setattr01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_setattr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_setattr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_setparam01.sh b/testcase/syscalls/ltp.syscalls.sched_setparam01.sh new file mode 100755 index 0000000..f9b50b0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_setparam01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-459367134 +# @用例名称: ltp.syscalls.sched_setparam01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_setparam01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_setparam01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_setparam02.sh b/testcase/syscalls/ltp.syscalls.sched_setparam02.sh new file mode 100755 index 0000000..1f14a99 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_setparam02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-467948364 +# @用例名称: ltp.syscalls.sched_setparam02 +# @用例级别: 1 +# @用例标签: TK5不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_setparam02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_setparam02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_setparam03.sh b/testcase/syscalls/ltp.syscalls.sched_setparam03.sh new file mode 100755 index 0000000..d429066 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_setparam03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-477934763 +# @用例名称: ltp.syscalls.sched_setparam03 +# @用例级别: 1 +# @用例标签: TK5不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_setparam03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_setparam03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_setparam04.sh b/testcase/syscalls/ltp.syscalls.sched_setparam04.sh new file mode 100755 index 0000000..4570546 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_setparam04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-486528015 +# @用例名称: ltp.syscalls.sched_setparam04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_setparam04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_setparam04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_setparam05.sh b/testcase/syscalls/ltp.syscalls.sched_setparam05.sh new file mode 100755 index 0000000..dce63ee --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_setparam05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-495162906 +# @用例名称: ltp.syscalls.sched_setparam05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_setparam05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_setparam05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_setscheduler01.sh b/testcase/syscalls/ltp.syscalls.sched_setscheduler01.sh new file mode 100755 index 0000000..7eaf472 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_setscheduler01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-525007570 +# @用例名称: ltp.syscalls.sched_setscheduler01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_setscheduler01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_setscheduler01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_setscheduler02.sh b/testcase/syscalls/ltp.syscalls.sched_setscheduler02.sh new file mode 100755 index 0000000..eea7266 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_setscheduler02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-533684529 +# @用例名称: ltp.syscalls.sched_setscheduler02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_setscheduler02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_setscheduler02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_setscheduler03.sh b/testcase/syscalls/ltp.syscalls.sched_setscheduler03.sh new file mode 100755 index 0000000..b1f5a8b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_setscheduler03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-542212699 +# @用例名称: ltp.syscalls.sched_setscheduler03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_setscheduler03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_setscheduler03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_setscheduler04.sh b/testcase/syscalls/ltp.syscalls.sched_setscheduler04.sh new file mode 100755 index 0000000..57c3a8c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_setscheduler04.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172839-906510502 +# @用例名称: ltp.syscalls.sched_setscheduler04 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_setscheduler04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_setscheduler04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sched_yield01.sh b/testcase/syscalls/ltp.syscalls.sched_yield01.sh new file mode 100755 index 0000000..a02f9f2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sched_yield01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-552797038 +# @用例名称: ltp.syscalls.sched_yield01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sched_yield01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sched_yield01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.select01.sh b/testcase/syscalls/ltp.syscalls.select01.sh new file mode 100755 index 0000000..d254965 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.select01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-611010886 +# @用例名称: ltp.syscalls.select01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.select01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls select01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.select02.sh b/testcase/syscalls/ltp.syscalls.select02.sh new file mode 100755 index 0000000..136ff97 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.select02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-619607684 +# @用例名称: ltp.syscalls.select02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.select02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls select02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.select03.sh b/testcase/syscalls/ltp.syscalls.select03.sh new file mode 100755 index 0000000..6d1ea9c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.select03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-628129914 +# @用例名称: ltp.syscalls.select03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.select03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls select03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.select04.sh b/testcase/syscalls/ltp.syscalls.select04.sh new file mode 100755 index 0000000..aaab1ab --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.select04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-636696887 +# @用例名称: ltp.syscalls.select04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.select04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls select04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semctl01.sh b/testcase/syscalls/ltp.syscalls.semctl01.sh new file mode 100755 index 0000000..a210bef --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semctl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-647143428 +# @用例名称: ltp.syscalls.semctl01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semctl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semctl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semctl02.sh b/testcase/syscalls/ltp.syscalls.semctl02.sh new file mode 100755 index 0000000..483fa31 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semctl02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-655672570 +# @用例名称: ltp.syscalls.semctl02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semctl02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semctl02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semctl03.sh b/testcase/syscalls/ltp.syscalls.semctl03.sh new file mode 100755 index 0000000..dad3d4b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semctl03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-664488710 +# @用例名称: ltp.syscalls.semctl03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semctl03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semctl03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semctl04.sh b/testcase/syscalls/ltp.syscalls.semctl04.sh new file mode 100755 index 0000000..d7dc126 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semctl04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-673051736 +# @用例名称: ltp.syscalls.semctl04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semctl04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semctl04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semctl05.sh b/testcase/syscalls/ltp.syscalls.semctl05.sh new file mode 100755 index 0000000..9de5f6d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semctl05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-681574657 +# @用例名称: ltp.syscalls.semctl05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semctl05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semctl05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semctl06.sh b/testcase/syscalls/ltp.syscalls.semctl06.sh new file mode 100755 index 0000000..486a06a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semctl06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-690124968 +# @用例名称: ltp.syscalls.semctl06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semctl06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semctl06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semctl07.sh b/testcase/syscalls/ltp.syscalls.semctl07.sh new file mode 100755 index 0000000..ca0da3b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semctl07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-698607383 +# @用例名称: ltp.syscalls.semctl07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semctl07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semctl07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semctl08.sh b/testcase/syscalls/ltp.syscalls.semctl08.sh new file mode 100755 index 0000000..4d1324c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semctl08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-707135463 +# @用例名称: ltp.syscalls.semctl08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semctl08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semctl08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semctl09.sh b/testcase/syscalls/ltp.syscalls.semctl09.sh new file mode 100755 index 0000000..2c36aa7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semctl09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-715637575 +# @用例名称: ltp.syscalls.semctl09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semctl09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semctl09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semget01.sh b/testcase/syscalls/ltp.syscalls.semget01.sh new file mode 100755 index 0000000..b6e2534 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semget01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-726117790 +# @用例名称: ltp.syscalls.semget01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semget01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semget01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semget02.sh b/testcase/syscalls/ltp.syscalls.semget02.sh new file mode 100755 index 0000000..20527af --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semget02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-735337194 +# @用例名称: ltp.syscalls.semget02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semget02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semget02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semget05.sh b/testcase/syscalls/ltp.syscalls.semget05.sh new file mode 100755 index 0000000..0d7ecb2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semget05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-752587518 +# @用例名称: ltp.syscalls.semget05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semget05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semget05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semop01.sh b/testcase/syscalls/ltp.syscalls.semop01.sh new file mode 100755 index 0000000..1950cd3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semop01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-771881777 +# @用例名称: ltp.syscalls.semop01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semop01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semop01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semop02.sh b/testcase/syscalls/ltp.syscalls.semop02.sh new file mode 100755 index 0000000..6d5a7ac --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semop02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-780642383 +# @用例名称: ltp.syscalls.semop02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semop02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semop02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semop03.sh b/testcase/syscalls/ltp.syscalls.semop03.sh new file mode 100755 index 0000000..57d4649 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semop03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-789256634 +# @用例名称: ltp.syscalls.semop03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semop03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semop03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semop04.sh b/testcase/syscalls/ltp.syscalls.semop04.sh new file mode 100755 index 0000000..49ead9a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semop04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141852-917521475 +# @用例名称: ltp.syscalls.semop04 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semop04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semop04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.semop05.sh b/testcase/syscalls/ltp.syscalls.semop05.sh new file mode 100755 index 0000000..a622a5c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.semop05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141852-980941192 +# @用例名称: ltp.syscalls.semop05 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.semop05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls semop05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.send01.sh b/testcase/syscalls/ltp.syscalls.send01.sh new file mode 100755 index 0000000..f3f9f2e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.send01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-799660565 +# @用例名称: ltp.syscalls.send01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.send01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls send01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.send02.sh b/testcase/syscalls/ltp.syscalls.send02.sh new file mode 100755 index 0000000..053863d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.send02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-808197923 +# @用例名称: ltp.syscalls.send02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.send02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls send02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendfile02.sh b/testcase/syscalls/ltp.syscalls.sendfile02.sh new file mode 100755 index 0000000..de41001 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendfile02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-818686803 +# @用例名称: ltp.syscalls.sendfile02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendfile02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendfile02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendfile02_64.sh b/testcase/syscalls/ltp.syscalls.sendfile02_64.sh new file mode 100755 index 0000000..4c40528 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendfile02_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-827346529 +# @用例名称: ltp.syscalls.sendfile02_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendfile02_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendfile02_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendfile03.sh b/testcase/syscalls/ltp.syscalls.sendfile03.sh new file mode 100755 index 0000000..143ee4c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendfile03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-835990116 +# @用例名称: ltp.syscalls.sendfile03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendfile03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendfile03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendfile03_64.sh b/testcase/syscalls/ltp.syscalls.sendfile03_64.sh new file mode 100755 index 0000000..bcb40a6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendfile03_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-844624926 +# @用例名称: ltp.syscalls.sendfile03_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendfile03_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendfile03_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendfile04.sh b/testcase/syscalls/ltp.syscalls.sendfile04.sh new file mode 100755 index 0000000..4aa754d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendfile04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-853184676 +# @用例名称: ltp.syscalls.sendfile04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendfile04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendfile04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendfile04_64.sh b/testcase/syscalls/ltp.syscalls.sendfile04_64.sh new file mode 100755 index 0000000..c0aadf3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendfile04_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-861680065 +# @用例名称: ltp.syscalls.sendfile04_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendfile04_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendfile04_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendfile05.sh b/testcase/syscalls/ltp.syscalls.sendfile05.sh new file mode 100755 index 0000000..4354c29 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendfile05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-870315265 +# @用例名称: ltp.syscalls.sendfile05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendfile05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendfile05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendfile05_64.sh b/testcase/syscalls/ltp.syscalls.sendfile05_64.sh new file mode 100755 index 0000000..cc11ca1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendfile05_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-878839529 +# @用例名称: ltp.syscalls.sendfile05_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendfile05_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendfile05_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendfile06.sh b/testcase/syscalls/ltp.syscalls.sendfile06.sh new file mode 100755 index 0000000..45b1e70 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendfile06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-887355496 +# @用例名称: ltp.syscalls.sendfile06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendfile06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendfile06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendfile06_64.sh b/testcase/syscalls/ltp.syscalls.sendfile06_64.sh new file mode 100755 index 0000000..af70f8a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendfile06_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-895920035 +# @用例名称: ltp.syscalls.sendfile06_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendfile06_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendfile06_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendfile07.sh b/testcase/syscalls/ltp.syscalls.sendfile07.sh new file mode 100755 index 0000000..b83b9f4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendfile07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-904518306 +# @用例名称: ltp.syscalls.sendfile07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendfile07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendfile07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendfile07_64.sh b/testcase/syscalls/ltp.syscalls.sendfile07_64.sh new file mode 100755 index 0000000..f38765a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendfile07_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-917534497 +# @用例名称: ltp.syscalls.sendfile07_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendfile07_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendfile07_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendfile08.sh b/testcase/syscalls/ltp.syscalls.sendfile08.sh new file mode 100755 index 0000000..ed4183e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendfile08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-927135445 +# @用例名称: ltp.syscalls.sendfile08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendfile08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendfile08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendfile08_64.sh b/testcase/syscalls/ltp.syscalls.sendfile08_64.sh new file mode 100755 index 0000000..2a80327 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendfile08_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-935661873 +# @用例名称: ltp.syscalls.sendfile08_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendfile08_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendfile08_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendfile09.sh b/testcase/syscalls/ltp.syscalls.sendfile09.sh new file mode 100755 index 0000000..0a7ce66 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendfile09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-944265784 +# @用例名称: ltp.syscalls.sendfile09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendfile09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendfile09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendfile09_64.sh b/testcase/syscalls/ltp.syscalls.sendfile09_64.sh new file mode 100755 index 0000000..5523b4a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendfile09_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-952823070 +# @用例名称: ltp.syscalls.sendfile09_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendfile09_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendfile09_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendmmsg01.sh b/testcase/syscalls/ltp.syscalls.sendmmsg01.sh new file mode 100755 index 0000000..c5e54e1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendmmsg01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-994866744 +# @用例名称: ltp.syscalls.sendmmsg01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendmmsg01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendmmsg01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendmmsg02.sh b/testcase/syscalls/ltp.syscalls.sendmmsg02.sh new file mode 100755 index 0000000..2c8da13 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendmmsg02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-003410554 +# @用例名称: ltp.syscalls.sendmmsg02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendmmsg02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendmmsg02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendmsg01.sh b/testcase/syscalls/ltp.syscalls.sendmsg01.sh new file mode 100755 index 0000000..a88b02d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendmsg01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-965460701 +# @用例名称: ltp.syscalls.sendmsg01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendmsg01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendmsg01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendmsg02.sh b/testcase/syscalls/ltp.syscalls.sendmsg02.sh new file mode 100755 index 0000000..9f4f369 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendmsg02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-974137299 +# @用例名称: ltp.syscalls.sendmsg02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendmsg02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendmsg02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendmsg03.sh b/testcase/syscalls/ltp.syscalls.sendmsg03.sh new file mode 100755 index 0000000..998db21 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendmsg03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213020-984198128 +# @用例名称: ltp.syscalls.sendmsg03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendmsg03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendmsg03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendto01.sh b/testcase/syscalls/ltp.syscalls.sendto01.sh new file mode 100755 index 0000000..15ae103 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendto01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-013822941 +# @用例名称: ltp.syscalls.sendto01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendto01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendto01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendto02.sh b/testcase/syscalls/ltp.syscalls.sendto02.sh new file mode 100755 index 0000000..cb62922 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendto02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-022441430 +# @用例名称: ltp.syscalls.sendto02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendto02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendto02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sendto03.sh b/testcase/syscalls/ltp.syscalls.sendto03.sh new file mode 100755 index 0000000..474301d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sendto03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-030910330 +# @用例名称: ltp.syscalls.sendto03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sendto03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sendto03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.set_mempolicy01.sh b/testcase/syscalls/ltp.syscalls.set_mempolicy01.sh new file mode 100755 index 0000000..a11549b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.set_mempolicy01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-041450145 +# @用例名称: ltp.syscalls.set_mempolicy01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.set_mempolicy01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls set_mempolicy01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.set_mempolicy02.sh b/testcase/syscalls/ltp.syscalls.set_mempolicy02.sh new file mode 100755 index 0000000..1de02f4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.set_mempolicy02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-050000487 +# @用例名称: ltp.syscalls.set_mempolicy02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.set_mempolicy02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls set_mempolicy02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.set_mempolicy03.sh b/testcase/syscalls/ltp.syscalls.set_mempolicy03.sh new file mode 100755 index 0000000..0debfab --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.set_mempolicy03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-058755112 +# @用例名称: ltp.syscalls.set_mempolicy03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.set_mempolicy03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls set_mempolicy03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.set_mempolicy04.sh b/testcase/syscalls/ltp.syscalls.set_mempolicy04.sh new file mode 100755 index 0000000..f69a5cc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.set_mempolicy04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-067423776 +# @用例名称: ltp.syscalls.set_mempolicy04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.set_mempolicy04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls set_mempolicy04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.set_robust_list01.sh b/testcase/syscalls/ltp.syscalls.set_robust_list01.sh new file mode 100755 index 0000000..897b66a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.set_robust_list01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-078712182 +# @用例名称: ltp.syscalls.set_robust_list01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.set_robust_list01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls set_robust_list01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.set_thread_area01.sh b/testcase/syscalls/ltp.syscalls.set_thread_area01.sh new file mode 100755 index 0000000..2b403a2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.set_thread_area01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-087303811 +# @用例名称: ltp.syscalls.set_thread_area01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.set_thread_area01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls set_thread_area01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.set_tid_address01.sh b/testcase/syscalls/ltp.syscalls.set_tid_address01.sh new file mode 100755 index 0000000..8583223 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.set_tid_address01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-095861837 +# @用例名称: ltp.syscalls.set_tid_address01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.set_tid_address01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls set_tid_address01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setdomainname01.sh b/testcase/syscalls/ltp.syscalls.setdomainname01.sh new file mode 100755 index 0000000..d61c0b8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setdomainname01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-106505047 +# @用例名称: ltp.syscalls.setdomainname01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setdomainname01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setdomainname01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setdomainname02.sh b/testcase/syscalls/ltp.syscalls.setdomainname02.sh new file mode 100755 index 0000000..3fec3de --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setdomainname02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-115185762 +# @用例名称: ltp.syscalls.setdomainname02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setdomainname02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setdomainname02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setdomainname03.sh b/testcase/syscalls/ltp.syscalls.setdomainname03.sh new file mode 100755 index 0000000..a8777a8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setdomainname03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-123763977 +# @用例名称: ltp.syscalls.setdomainname03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setdomainname03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setdomainname03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setegid01.sh b/testcase/syscalls/ltp.syscalls.setegid01.sh new file mode 100755 index 0000000..d45c72a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setegid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-316850840 +# @用例名称: ltp.syscalls.setegid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setegid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setegid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setegid02.sh b/testcase/syscalls/ltp.syscalls.setegid02.sh new file mode 100755 index 0000000..575867c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setegid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-325415799 +# @用例名称: ltp.syscalls.setegid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setegid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setegid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setfsgid01.sh b/testcase/syscalls/ltp.syscalls.setfsgid01.sh new file mode 100755 index 0000000..f5973b5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setfsgid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-134175331 +# @用例名称: ltp.syscalls.setfsgid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setfsgid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setfsgid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setfsgid01_16.sh b/testcase/syscalls/ltp.syscalls.setfsgid01_16.sh new file mode 100755 index 0000000..1e27f29 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setfsgid01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-142773193 +# @用例名称: ltp.syscalls.setfsgid01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setfsgid01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setfsgid01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setfsgid02.sh b/testcase/syscalls/ltp.syscalls.setfsgid02.sh new file mode 100755 index 0000000..1b3a879 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setfsgid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-151311943 +# @用例名称: ltp.syscalls.setfsgid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setfsgid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setfsgid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setfsgid02_16.sh b/testcase/syscalls/ltp.syscalls.setfsgid02_16.sh new file mode 100755 index 0000000..0586599 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setfsgid02_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-159766015 +# @用例名称: ltp.syscalls.setfsgid02_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setfsgid02_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setfsgid02_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setfsgid03.sh b/testcase/syscalls/ltp.syscalls.setfsgid03.sh new file mode 100755 index 0000000..e5338f4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setfsgid03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-168408629 +# @用例名称: ltp.syscalls.setfsgid03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setfsgid03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setfsgid03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setfsgid03_16.sh b/testcase/syscalls/ltp.syscalls.setfsgid03_16.sh new file mode 100755 index 0000000..84e242b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setfsgid03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-177066102 +# @用例名称: ltp.syscalls.setfsgid03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setfsgid03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setfsgid03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setfsuid01.sh b/testcase/syscalls/ltp.syscalls.setfsuid01.sh new file mode 100755 index 0000000..fa6d2f6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setfsuid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-187728266 +# @用例名称: ltp.syscalls.setfsuid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setfsuid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setfsuid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setfsuid01_16.sh b/testcase/syscalls/ltp.syscalls.setfsuid01_16.sh new file mode 100755 index 0000000..72bd430 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setfsuid01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-196421906 +# @用例名称: ltp.syscalls.setfsuid01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setfsuid01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setfsuid01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setfsuid02.sh b/testcase/syscalls/ltp.syscalls.setfsuid02.sh new file mode 100755 index 0000000..040eeaa --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setfsuid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-204982638 +# @用例名称: ltp.syscalls.setfsuid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setfsuid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setfsuid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setfsuid02_16.sh b/testcase/syscalls/ltp.syscalls.setfsuid02_16.sh new file mode 100755 index 0000000..4b68e03 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setfsuid02_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-213524013 +# @用例名称: ltp.syscalls.setfsuid02_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setfsuid02_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setfsuid02_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setfsuid03.sh b/testcase/syscalls/ltp.syscalls.setfsuid03.sh new file mode 100755 index 0000000..7e1cfe8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setfsuid03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-222064387 +# @用例名称: ltp.syscalls.setfsuid03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setfsuid03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setfsuid03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setfsuid03_16.sh b/testcase/syscalls/ltp.syscalls.setfsuid03_16.sh new file mode 100755 index 0000000..e3c6ca0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setfsuid03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-231843518 +# @用例名称: ltp.syscalls.setfsuid03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setfsuid03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setfsuid03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setfsuid04.sh b/testcase/syscalls/ltp.syscalls.setfsuid04.sh new file mode 100755 index 0000000..f082461 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setfsuid04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-240418457 +# @用例名称: ltp.syscalls.setfsuid04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setfsuid04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setfsuid04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setfsuid04_16.sh b/testcase/syscalls/ltp.syscalls.setfsuid04_16.sh new file mode 100755 index 0000000..2fe455f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setfsuid04_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-248963388 +# @用例名称: ltp.syscalls.setfsuid04_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setfsuid04_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setfsuid04_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setgid01.sh b/testcase/syscalls/ltp.syscalls.setgid01.sh new file mode 100755 index 0000000..97a3917 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setgid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-259647814 +# @用例名称: ltp.syscalls.setgid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setgid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setgid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setgid01_16.sh b/testcase/syscalls/ltp.syscalls.setgid01_16.sh new file mode 100755 index 0000000..59768fb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setgid01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-268200421 +# @用例名称: ltp.syscalls.setgid01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setgid01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setgid01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setgid02.sh b/testcase/syscalls/ltp.syscalls.setgid02.sh new file mode 100755 index 0000000..29826b9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setgid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-276775518 +# @用例名称: ltp.syscalls.setgid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setgid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setgid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setgid02_16.sh b/testcase/syscalls/ltp.syscalls.setgid02_16.sh new file mode 100755 index 0000000..dff8a8b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setgid02_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-285302948 +# @用例名称: ltp.syscalls.setgid02_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setgid02_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setgid02_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setgid03.sh b/testcase/syscalls/ltp.syscalls.setgid03.sh new file mode 100755 index 0000000..9d30d78 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setgid03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-293729358 +# @用例名称: ltp.syscalls.setgid03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setgid03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setgid03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setgid03_16.sh b/testcase/syscalls/ltp.syscalls.setgid03_16.sh new file mode 100755 index 0000000..c6f5d79 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setgid03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-302179513 +# @用例名称: ltp.syscalls.setgid03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setgid03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setgid03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setgroups01.sh b/testcase/syscalls/ltp.syscalls.setgroups01.sh new file mode 100755 index 0000000..d0dee03 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setgroups01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-353439726 +# @用例名称: ltp.syscalls.setgroups01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setgroups01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setgroups01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setgroups01_16.sh b/testcase/syscalls/ltp.syscalls.setgroups01_16.sh new file mode 100755 index 0000000..316e5c1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setgroups01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-364115496 +# @用例名称: ltp.syscalls.setgroups01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setgroups01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setgroups01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setgroups02.sh b/testcase/syscalls/ltp.syscalls.setgroups02.sh new file mode 100755 index 0000000..ff9504a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setgroups02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-376253523 +# @用例名称: ltp.syscalls.setgroups02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setgroups02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setgroups02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setgroups02_16.sh b/testcase/syscalls/ltp.syscalls.setgroups02_16.sh new file mode 100755 index 0000000..2b255e4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setgroups02_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-384864397 +# @用例名称: ltp.syscalls.setgroups02_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setgroups02_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setgroups02_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setgroups03.sh b/testcase/syscalls/ltp.syscalls.setgroups03.sh new file mode 100755 index 0000000..dbab403 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setgroups03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-393380165 +# @用例名称: ltp.syscalls.setgroups03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setgroups03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setgroups03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setgroups03_16.sh b/testcase/syscalls/ltp.syscalls.setgroups03_16.sh new file mode 100755 index 0000000..fac7834 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setgroups03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-401968458 +# @用例名称: ltp.syscalls.setgroups03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setgroups03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setgroups03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sethostname01.sh b/testcase/syscalls/ltp.syscalls.sethostname01.sh new file mode 100755 index 0000000..a5c907b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sethostname01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-429809593 +# @用例名称: ltp.syscalls.sethostname01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sethostname01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sethostname01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sethostname02.sh b/testcase/syscalls/ltp.syscalls.sethostname02.sh new file mode 100755 index 0000000..4bf137e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sethostname02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-438882944 +# @用例名称: ltp.syscalls.sethostname02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sethostname02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sethostname02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sethostname03.sh b/testcase/syscalls/ltp.syscalls.sethostname03.sh new file mode 100755 index 0000000..006f338 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sethostname03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-447528003 +# @用例名称: ltp.syscalls.sethostname03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sethostname03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sethostname03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setitimer01.sh b/testcase/syscalls/ltp.syscalls.setitimer01.sh new file mode 100755 index 0000000..d52697e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setitimer01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-458003007 +# @用例名称: ltp.syscalls.setitimer01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setitimer01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setitimer01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setitimer02.sh b/testcase/syscalls/ltp.syscalls.setitimer02.sh new file mode 100755 index 0000000..138278f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setitimer02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-466568037 +# @用例名称: ltp.syscalls.setitimer02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setitimer02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setitimer02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setns01.sh b/testcase/syscalls/ltp.syscalls.setns01.sh new file mode 100755 index 0000000..9e4ce3c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setns01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-485616606 +# @用例名称: ltp.syscalls.setns01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setns01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setns01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setns02.sh b/testcase/syscalls/ltp.syscalls.setns02.sh new file mode 100755 index 0000000..5dd1fcf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setns02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-494233773 +# @用例名称: ltp.syscalls.setns02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setns02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setns02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setpgid01.sh b/testcase/syscalls/ltp.syscalls.setpgid01.sh new file mode 100755 index 0000000..73b504f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setpgid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-504716993 +# @用例名称: ltp.syscalls.setpgid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setpgid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setpgid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setpgid02.sh b/testcase/syscalls/ltp.syscalls.setpgid02.sh new file mode 100755 index 0000000..7c7bcef --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setpgid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-513197464 +# @用例名称: ltp.syscalls.setpgid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setpgid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setpgid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setpgid03.sh b/testcase/syscalls/ltp.syscalls.setpgid03.sh new file mode 100755 index 0000000..d8bbc83 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setpgid03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-521777461 +# @用例名称: ltp.syscalls.setpgid03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setpgid03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setpgid03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setpgrp01.sh b/testcase/syscalls/ltp.syscalls.setpgrp01.sh new file mode 100755 index 0000000..88ba2f2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setpgrp01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-532262244 +# @用例名称: ltp.syscalls.setpgrp01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setpgrp01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setpgrp01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setpgrp02.sh b/testcase/syscalls/ltp.syscalls.setpgrp02.sh new file mode 100755 index 0000000..42c7c5b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setpgrp02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-540812466 +# @用例名称: ltp.syscalls.setpgrp02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setpgrp02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setpgrp02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setpriority01.sh b/testcase/syscalls/ltp.syscalls.setpriority01.sh new file mode 100755 index 0000000..6bf1231 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setpriority01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-551395361 +# @用例名称: ltp.syscalls.setpriority01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setpriority01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setpriority01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setpriority02.sh b/testcase/syscalls/ltp.syscalls.setpriority02.sh new file mode 100755 index 0000000..e08d35f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setpriority02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-560133715 +# @用例名称: ltp.syscalls.setpriority02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setpriority02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setpriority02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setregid01.sh b/testcase/syscalls/ltp.syscalls.setregid01.sh new file mode 100755 index 0000000..a351fc8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setregid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-570878645 +# @用例名称: ltp.syscalls.setregid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setregid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setregid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setregid01_16.sh b/testcase/syscalls/ltp.syscalls.setregid01_16.sh new file mode 100755 index 0000000..445061f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setregid01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-579762160 +# @用例名称: ltp.syscalls.setregid01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setregid01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setregid01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setregid02.sh b/testcase/syscalls/ltp.syscalls.setregid02.sh new file mode 100755 index 0000000..a5342b3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setregid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-588339964 +# @用例名称: ltp.syscalls.setregid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setregid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setregid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setregid02_16.sh b/testcase/syscalls/ltp.syscalls.setregid02_16.sh new file mode 100755 index 0000000..7fb5411 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setregid02_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-597136737 +# @用例名称: ltp.syscalls.setregid02_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setregid02_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setregid02_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setregid03.sh b/testcase/syscalls/ltp.syscalls.setregid03.sh new file mode 100755 index 0000000..254dcf9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setregid03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-605733736 +# @用例名称: ltp.syscalls.setregid03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setregid03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setregid03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setregid03_16.sh b/testcase/syscalls/ltp.syscalls.setregid03_16.sh new file mode 100755 index 0000000..fd23605 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setregid03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-614315928 +# @用例名称: ltp.syscalls.setregid03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setregid03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setregid03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setregid04.sh b/testcase/syscalls/ltp.syscalls.setregid04.sh new file mode 100755 index 0000000..986c60d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setregid04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-622820925 +# @用例名称: ltp.syscalls.setregid04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setregid04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setregid04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setregid04_16.sh b/testcase/syscalls/ltp.syscalls.setregid04_16.sh new file mode 100755 index 0000000..90d51a3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setregid04_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-631497503 +# @用例名称: ltp.syscalls.setregid04_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setregid04_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setregid04_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresgid01.sh b/testcase/syscalls/ltp.syscalls.setresgid01.sh new file mode 100755 index 0000000..ca91a1c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresgid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-642153226 +# @用例名称: ltp.syscalls.setresgid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresgid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresgid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresgid01_16.sh b/testcase/syscalls/ltp.syscalls.setresgid01_16.sh new file mode 100755 index 0000000..3636003 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresgid01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-650840574 +# @用例名称: ltp.syscalls.setresgid01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresgid01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresgid01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresgid02.sh b/testcase/syscalls/ltp.syscalls.setresgid02.sh new file mode 100755 index 0000000..bd2649c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresgid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-659375507 +# @用例名称: ltp.syscalls.setresgid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresgid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresgid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresgid02_16.sh b/testcase/syscalls/ltp.syscalls.setresgid02_16.sh new file mode 100755 index 0000000..8b34e4f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresgid02_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-668015146 +# @用例名称: ltp.syscalls.setresgid02_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresgid02_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresgid02_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresgid03.sh b/testcase/syscalls/ltp.syscalls.setresgid03.sh new file mode 100755 index 0000000..9039476 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresgid03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-676847717 +# @用例名称: ltp.syscalls.setresgid03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresgid03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresgid03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresgid03_16.sh b/testcase/syscalls/ltp.syscalls.setresgid03_16.sh new file mode 100755 index 0000000..5fbb50d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresgid03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-685496382 +# @用例名称: ltp.syscalls.setresgid03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresgid03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresgid03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresgid04.sh b/testcase/syscalls/ltp.syscalls.setresgid04.sh new file mode 100755 index 0000000..bfd4872 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresgid04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-694108671 +# @用例名称: ltp.syscalls.setresgid04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresgid04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresgid04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresgid04_16.sh b/testcase/syscalls/ltp.syscalls.setresgid04_16.sh new file mode 100755 index 0000000..fccfa9f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresgid04_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-702621292 +# @用例名称: ltp.syscalls.setresgid04_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresgid04_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresgid04_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresuid01.sh b/testcase/syscalls/ltp.syscalls.setresuid01.sh new file mode 100755 index 0000000..29408ba --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresuid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-713208326 +# @用例名称: ltp.syscalls.setresuid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresuid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresuid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresuid01_16.sh b/testcase/syscalls/ltp.syscalls.setresuid01_16.sh new file mode 100755 index 0000000..25fb3de --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresuid01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-721882359 +# @用例名称: ltp.syscalls.setresuid01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresuid01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresuid01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresuid02.sh b/testcase/syscalls/ltp.syscalls.setresuid02.sh new file mode 100755 index 0000000..584db18 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresuid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-731845375 +# @用例名称: ltp.syscalls.setresuid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresuid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresuid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresuid02_16.sh b/testcase/syscalls/ltp.syscalls.setresuid02_16.sh new file mode 100755 index 0000000..0cf40f4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresuid02_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-740467962 +# @用例名称: ltp.syscalls.setresuid02_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresuid02_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresuid02_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresuid03.sh b/testcase/syscalls/ltp.syscalls.setresuid03.sh new file mode 100755 index 0000000..723a3d9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresuid03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-749027131 +# @用例名称: ltp.syscalls.setresuid03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresuid03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresuid03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresuid03_16.sh b/testcase/syscalls/ltp.syscalls.setresuid03_16.sh new file mode 100755 index 0000000..2af3458 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresuid03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-757517521 +# @用例名称: ltp.syscalls.setresuid03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresuid03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresuid03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresuid04.sh b/testcase/syscalls/ltp.syscalls.setresuid04.sh new file mode 100755 index 0000000..0ebb31d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresuid04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-765977774 +# @用例名称: ltp.syscalls.setresuid04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresuid04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresuid04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresuid04_16.sh b/testcase/syscalls/ltp.syscalls.setresuid04_16.sh new file mode 100755 index 0000000..63c012a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresuid04_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-774852052 +# @用例名称: ltp.syscalls.setresuid04_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresuid04_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresuid04_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresuid05.sh b/testcase/syscalls/ltp.syscalls.setresuid05.sh new file mode 100755 index 0000000..6eaef9d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresuid05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-783640039 +# @用例名称: ltp.syscalls.setresuid05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresuid05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresuid05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setresuid05_16.sh b/testcase/syscalls/ltp.syscalls.setresuid05_16.sh new file mode 100755 index 0000000..45cec87 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setresuid05_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-792268898 +# @用例名称: ltp.syscalls.setresuid05_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setresuid05_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setresuid05_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setreuid01.sh b/testcase/syscalls/ltp.syscalls.setreuid01.sh new file mode 100755 index 0000000..521a853 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setreuid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-802875809 +# @用例名称: ltp.syscalls.setreuid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setreuid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setreuid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setreuid01_16.sh b/testcase/syscalls/ltp.syscalls.setreuid01_16.sh new file mode 100755 index 0000000..3cc6a8b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setreuid01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-811515168 +# @用例名称: ltp.syscalls.setreuid01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setreuid01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setreuid01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setreuid02.sh b/testcase/syscalls/ltp.syscalls.setreuid02.sh new file mode 100755 index 0000000..05d27aa --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setreuid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-820336267 +# @用例名称: ltp.syscalls.setreuid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setreuid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setreuid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setreuid02_16.sh b/testcase/syscalls/ltp.syscalls.setreuid02_16.sh new file mode 100755 index 0000000..1d3b802 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setreuid02_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-828777094 +# @用例名称: ltp.syscalls.setreuid02_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setreuid02_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setreuid02_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setreuid03.sh b/testcase/syscalls/ltp.syscalls.setreuid03.sh new file mode 100755 index 0000000..69f7f98 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setreuid03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-837425308 +# @用例名称: ltp.syscalls.setreuid03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setreuid03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setreuid03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setreuid03_16.sh b/testcase/syscalls/ltp.syscalls.setreuid03_16.sh new file mode 100755 index 0000000..6842a5e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setreuid03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-847848346 +# @用例名称: ltp.syscalls.setreuid03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setreuid03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setreuid03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setreuid04.sh b/testcase/syscalls/ltp.syscalls.setreuid04.sh new file mode 100755 index 0000000..1e3acff --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setreuid04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-859431564 +# @用例名称: ltp.syscalls.setreuid04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setreuid04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setreuid04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setreuid04_16.sh b/testcase/syscalls/ltp.syscalls.setreuid04_16.sh new file mode 100755 index 0000000..5a16aed --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setreuid04_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-868315600 +# @用例名称: ltp.syscalls.setreuid04_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setreuid04_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setreuid04_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setreuid05.sh b/testcase/syscalls/ltp.syscalls.setreuid05.sh new file mode 100755 index 0000000..7318fb1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setreuid05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-876944219 +# @用例名称: ltp.syscalls.setreuid05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setreuid05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setreuid05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setreuid05_16.sh b/testcase/syscalls/ltp.syscalls.setreuid05_16.sh new file mode 100755 index 0000000..3ce90e7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setreuid05_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-885579339 +# @用例名称: ltp.syscalls.setreuid05_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setreuid05_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setreuid05_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setreuid06.sh b/testcase/syscalls/ltp.syscalls.setreuid06.sh new file mode 100755 index 0000000..8dcfdd3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setreuid06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-894116306 +# @用例名称: ltp.syscalls.setreuid06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setreuid06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setreuid06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setreuid06_16.sh b/testcase/syscalls/ltp.syscalls.setreuid06_16.sh new file mode 100755 index 0000000..d0e81b5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setreuid06_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-902723905 +# @用例名称: ltp.syscalls.setreuid06_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setreuid06_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setreuid06_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setreuid07.sh b/testcase/syscalls/ltp.syscalls.setreuid07.sh new file mode 100755 index 0000000..cdcbc98 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setreuid07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-911388531 +# @用例名称: ltp.syscalls.setreuid07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setreuid07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setreuid07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setreuid07_16.sh b/testcase/syscalls/ltp.syscalls.setreuid07_16.sh new file mode 100755 index 0000000..5a94dbb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setreuid07_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-920026657 +# @用例名称: ltp.syscalls.setreuid07_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setreuid07_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setreuid07_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setrlimit01.sh b/testcase/syscalls/ltp.syscalls.setrlimit01.sh new file mode 100755 index 0000000..5480dd9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setrlimit01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-930590087 +# @用例名称: ltp.syscalls.setrlimit01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setrlimit01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setrlimit01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setrlimit02.sh b/testcase/syscalls/ltp.syscalls.setrlimit02.sh new file mode 100755 index 0000000..3ed245e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setrlimit02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-939141541 +# @用例名称: ltp.syscalls.setrlimit02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setrlimit02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setrlimit02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setrlimit03.sh b/testcase/syscalls/ltp.syscalls.setrlimit03.sh new file mode 100755 index 0000000..e96a0a5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setrlimit03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-947737108 +# @用例名称: ltp.syscalls.setrlimit03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setrlimit03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setrlimit03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setrlimit04.sh b/testcase/syscalls/ltp.syscalls.setrlimit04.sh new file mode 100755 index 0000000..8e7ca7e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setrlimit04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-956270858 +# @用例名称: ltp.syscalls.setrlimit04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setrlimit04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setrlimit04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setrlimit05.sh b/testcase/syscalls/ltp.syscalls.setrlimit05.sh new file mode 100755 index 0000000..c5cdcc9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setrlimit05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-965108288 +# @用例名称: ltp.syscalls.setrlimit05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setrlimit05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setrlimit05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setrlimit06.sh b/testcase/syscalls/ltp.syscalls.setrlimit06.sh new file mode 100755 index 0000000..abd6157 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setrlimit06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-974448368 +# @用例名称: ltp.syscalls.setrlimit06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setrlimit06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setrlimit06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setsid01.sh b/testcase/syscalls/ltp.syscalls.setsid01.sh new file mode 100755 index 0000000..2060c97 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setsid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-984962005 +# @用例名称: ltp.syscalls.setsid01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setsid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setsid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setsockopt01.sh b/testcase/syscalls/ltp.syscalls.setsockopt01.sh new file mode 100755 index 0000000..b50c508 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setsockopt01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-995607007 +# @用例名称: ltp.syscalls.setsockopt01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setsockopt01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setsockopt01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setsockopt02.sh b/testcase/syscalls/ltp.syscalls.setsockopt02.sh new file mode 100755 index 0000000..c41781d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setsockopt02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-004171886 +# @用例名称: ltp.syscalls.setsockopt02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setsockopt02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setsockopt02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setsockopt03.sh b/testcase/syscalls/ltp.syscalls.setsockopt03.sh new file mode 100755 index 0000000..2026d1f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setsockopt03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-013030194 +# @用例名称: ltp.syscalls.setsockopt03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setsockopt03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setsockopt03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setsockopt04.sh b/testcase/syscalls/ltp.syscalls.setsockopt04.sh new file mode 100755 index 0000000..73032aa --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setsockopt04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-022024638 +# @用例名称: ltp.syscalls.setsockopt04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setsockopt04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setsockopt04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setsockopt05.sh b/testcase/syscalls/ltp.syscalls.setsockopt05.sh new file mode 100755 index 0000000..68ca7dc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setsockopt05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-030622058 +# @用例名称: ltp.syscalls.setsockopt05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setsockopt05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setsockopt05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setsockopt06.sh b/testcase/syscalls/ltp.syscalls.setsockopt06.sh new file mode 100755 index 0000000..3478539 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setsockopt06.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-039202285 +# @用例名称: ltp.syscalls.setsockopt06 +# @用例级别: 3 +# @用例标签: +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setsockopt06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setsockopt06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setsockopt07.sh b/testcase/syscalls/ltp.syscalls.setsockopt07.sh new file mode 100755 index 0000000..c23fa78 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setsockopt07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-047847125 +# @用例名称: ltp.syscalls.setsockopt07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setsockopt07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setsockopt07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setsockopt08.sh b/testcase/syscalls/ltp.syscalls.setsockopt08.sh new file mode 100755 index 0000000..ddbca89 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setsockopt08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-056349888 +# @用例名称: ltp.syscalls.setsockopt08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setsockopt08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setsockopt08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setsockopt09.sh b/testcase/syscalls/ltp.syscalls.setsockopt09.sh new file mode 100755 index 0000000..4ccbcb2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setsockopt09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141853-044661755 +# @用例名称: ltp.syscalls.setsockopt09 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setsockopt09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setsockopt09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setsockopt10.sh b/testcase/syscalls/ltp.syscalls.setsockopt10.sh new file mode 100755 index 0000000..ced77d8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setsockopt10.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172839-979415234 +# @用例名称: ltp.syscalls.setsockopt10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setsockopt10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setsockopt10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.settimeofday01.sh b/testcase/syscalls/ltp.syscalls.settimeofday01.sh new file mode 100755 index 0000000..55496ee --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.settimeofday01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-067216955 +# @用例名称: ltp.syscalls.settimeofday01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.settimeofday01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls settimeofday01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.settimeofday02.sh b/testcase/syscalls/ltp.syscalls.settimeofday02.sh new file mode 100755 index 0000000..1d97f2c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.settimeofday02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-076002026 +# @用例名称: ltp.syscalls.settimeofday02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.settimeofday02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls settimeofday02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setuid01.sh b/testcase/syscalls/ltp.syscalls.setuid01.sh new file mode 100755 index 0000000..57ad178 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setuid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-086530681 +# @用例名称: ltp.syscalls.setuid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setuid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setuid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setuid01_16.sh b/testcase/syscalls/ltp.syscalls.setuid01_16.sh new file mode 100755 index 0000000..5949519 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setuid01_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-095107703 +# @用例名称: ltp.syscalls.setuid01_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setuid01_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setuid01_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setuid03.sh b/testcase/syscalls/ltp.syscalls.setuid03.sh new file mode 100755 index 0000000..8c44cd0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setuid03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-103653056 +# @用例名称: ltp.syscalls.setuid03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setuid03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setuid03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setuid03_16.sh b/testcase/syscalls/ltp.syscalls.setuid03_16.sh new file mode 100755 index 0000000..89779d6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setuid03_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-112263039 +# @用例名称: ltp.syscalls.setuid03_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setuid03_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setuid03_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setuid04.sh b/testcase/syscalls/ltp.syscalls.setuid04.sh new file mode 100755 index 0000000..910fa69 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setuid04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-120946120 +# @用例名称: ltp.syscalls.setuid04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setuid04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setuid04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setuid04_16.sh b/testcase/syscalls/ltp.syscalls.setuid04_16.sh new file mode 100755 index 0000000..727e8f5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setuid04_16.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-129453261 +# @用例名称: ltp.syscalls.setuid04_16 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setuid04_16 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setuid04_16 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setxattr01.sh b/testcase/syscalls/ltp.syscalls.setxattr01.sh new file mode 100755 index 0000000..8dabd6d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setxattr01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-140006572 +# @用例名称: ltp.syscalls.setxattr01 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setxattr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setxattr01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setxattr02.sh b/testcase/syscalls/ltp.syscalls.setxattr02.sh new file mode 100755 index 0000000..8907787 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setxattr02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-148662601 +# @用例名称: ltp.syscalls.setxattr02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setxattr02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setxattr02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.setxattr03.sh b/testcase/syscalls/ltp.syscalls.setxattr03.sh new file mode 100755 index 0000000..6444b7e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.setxattr03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-157200390 +# @用例名称: ltp.syscalls.setxattr03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.setxattr03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls setxattr03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sgetmask01.sh b/testcase/syscalls/ltp.syscalls.sgetmask01.sh new file mode 100755 index 0000000..91d676f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sgetmask01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213021-340098879 +# @用例名称: ltp.syscalls.sgetmask01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sgetmask01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sgetmask01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmat01.sh b/testcase/syscalls/ltp.syscalls.shmat01.sh new file mode 100755 index 0000000..5bd3d02 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-167804566 +# @用例名称: ltp.syscalls.shmat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmat02.sh b/testcase/syscalls/ltp.syscalls.shmat02.sh new file mode 100755 index 0000000..26fe638 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmat02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-176700524 +# @用例名称: ltp.syscalls.shmat02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmat02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmat03.sh b/testcase/syscalls/ltp.syscalls.shmat03.sh new file mode 100755 index 0000000..9ff9cbc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmat03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-185291573 +# @用例名称: ltp.syscalls.shmat03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmat03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmat03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmat04.sh b/testcase/syscalls/ltp.syscalls.shmat04.sh new file mode 100755 index 0000000..4373820 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmat04.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172840-053152448 +# @用例名称: ltp.syscalls.shmat04 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmat04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmat04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmctl01.sh b/testcase/syscalls/ltp.syscalls.shmctl01.sh new file mode 100755 index 0000000..c5ea41f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmctl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-195940111 +# @用例名称: ltp.syscalls.shmctl01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmctl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmctl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmctl02.sh b/testcase/syscalls/ltp.syscalls.shmctl02.sh new file mode 100755 index 0000000..80bd346 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmctl02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-204900762 +# @用例名称: ltp.syscalls.shmctl02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmctl02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmctl02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmctl03.sh b/testcase/syscalls/ltp.syscalls.shmctl03.sh new file mode 100755 index 0000000..961c593 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmctl03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-214014808 +# @用例名称: ltp.syscalls.shmctl03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmctl03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmctl03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmctl04.sh b/testcase/syscalls/ltp.syscalls.shmctl04.sh new file mode 100755 index 0000000..563956d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmctl04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-222908403 +# @用例名称: ltp.syscalls.shmctl04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmctl04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmctl04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmctl05.sh b/testcase/syscalls/ltp.syscalls.shmctl05.sh new file mode 100755 index 0000000..9ff811a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmctl05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-231664440 +# @用例名称: ltp.syscalls.shmctl05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmctl05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmctl05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmctl06.sh b/testcase/syscalls/ltp.syscalls.shmctl06.sh new file mode 100755 index 0000000..82d26dc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmctl06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-240601426 +# @用例名称: ltp.syscalls.shmctl06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmctl06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmctl06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmctl07.sh b/testcase/syscalls/ltp.syscalls.shmctl07.sh new file mode 100755 index 0000000..ca20831 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmctl07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-249428115 +# @用例名称: ltp.syscalls.shmctl07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmctl07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmctl07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmctl08.sh b/testcase/syscalls/ltp.syscalls.shmctl08.sh new file mode 100755 index 0000000..61c46fb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmctl08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-258050582 +# @用例名称: ltp.syscalls.shmctl08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmctl08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmctl08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmdt01.sh b/testcase/syscalls/ltp.syscalls.shmdt01.sh new file mode 100755 index 0000000..3f1a473 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmdt01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-268962634 +# @用例名称: ltp.syscalls.shmdt01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmdt01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmdt01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmdt02.sh b/testcase/syscalls/ltp.syscalls.shmdt02.sh new file mode 100755 index 0000000..87555ef --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmdt02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-277915820 +# @用例名称: ltp.syscalls.shmdt02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmdt02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmdt02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmget02.sh b/testcase/syscalls/ltp.syscalls.shmget02.sh new file mode 100755 index 0000000..a880e22 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmget02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-288596799 +# @用例名称: ltp.syscalls.shmget02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmget02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmget02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmget03.sh b/testcase/syscalls/ltp.syscalls.shmget03.sh new file mode 100755 index 0000000..1f845b1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmget03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-297101676 +# @用例名称: ltp.syscalls.shmget03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmget03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmget03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmget04.sh b/testcase/syscalls/ltp.syscalls.shmget04.sh new file mode 100755 index 0000000..d75c3fb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmget04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-305661045 +# @用例名称: ltp.syscalls.shmget04 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmget04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmget04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmget05.sh b/testcase/syscalls/ltp.syscalls.shmget05.sh new file mode 100755 index 0000000..53f55ef --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmget05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-314371026 +# @用例名称: ltp.syscalls.shmget05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmget05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmget05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shmget06.sh b/testcase/syscalls/ltp.syscalls.shmget06.sh new file mode 100755 index 0000000..5769a9e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shmget06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-322924634 +# @用例名称: ltp.syscalls.shmget06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shmget06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shmget06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sigaction01.sh b/testcase/syscalls/ltp.syscalls.sigaction01.sh new file mode 100755 index 0000000..5c25d16 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sigaction01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-333463568 +# @用例名称: ltp.syscalls.sigaction01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sigaction01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sigaction01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sigaction02.sh b/testcase/syscalls/ltp.syscalls.sigaction02.sh new file mode 100755 index 0000000..524552a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sigaction02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-342170603 +# @用例名称: ltp.syscalls.sigaction02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sigaction02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sigaction02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sigaltstack01.sh b/testcase/syscalls/ltp.syscalls.sigaltstack01.sh new file mode 100755 index 0000000..4fd265d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sigaltstack01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-356945725 +# @用例名称: ltp.syscalls.sigaltstack01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sigaltstack01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sigaltstack01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sigaltstack02.sh b/testcase/syscalls/ltp.syscalls.sigaltstack02.sh new file mode 100755 index 0000000..6ce7ae7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sigaltstack02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-365792892 +# @用例名称: ltp.syscalls.sigaltstack02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sigaltstack02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sigaltstack02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sighold02.sh b/testcase/syscalls/ltp.syscalls.sighold02.sh new file mode 100755 index 0000000..7a3bdf1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sighold02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-379131376 +# @用例名称: ltp.syscalls.sighold02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sighold02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sighold02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.signal01.sh b/testcase/syscalls/ltp.syscalls.signal01.sh new file mode 100755 index 0000000..d62e7db --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.signal01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-390187868 +# @用例名称: ltp.syscalls.signal01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.signal01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls signal01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.signal02.sh b/testcase/syscalls/ltp.syscalls.signal02.sh new file mode 100755 index 0000000..c34bbb5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.signal02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-401685395 +# @用例名称: ltp.syscalls.signal02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.signal02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls signal02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.signal03.sh b/testcase/syscalls/ltp.syscalls.signal03.sh new file mode 100755 index 0000000..11ae4d6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.signal03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-410250605 +# @用例名称: ltp.syscalls.signal03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.signal03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls signal03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.signal04.sh b/testcase/syscalls/ltp.syscalls.signal04.sh new file mode 100755 index 0000000..6f1604e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.signal04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-418898289 +# @用例名称: ltp.syscalls.signal04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.signal04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls signal04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.signal05.sh b/testcase/syscalls/ltp.syscalls.signal05.sh new file mode 100755 index 0000000..7853042 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.signal05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-429938861 +# @用例名称: ltp.syscalls.signal05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.signal05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls signal05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.signal06.sh b/testcase/syscalls/ltp.syscalls.signal06.sh new file mode 100755 index 0000000..4faa3f1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.signal06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-438452254 +# @用例名称: ltp.syscalls.signal06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.signal06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls signal06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.signalfd01.sh b/testcase/syscalls/ltp.syscalls.signalfd01.sh new file mode 100755 index 0000000..7a537ec --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.signalfd01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-448913734 +# @用例名称: ltp.syscalls.signalfd01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.signalfd01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls signalfd01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.signalfd4_01.sh b/testcase/syscalls/ltp.syscalls.signalfd4_01.sh new file mode 100755 index 0000000..cab2973 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.signalfd4_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-459470912 +# @用例名称: ltp.syscalls.signalfd4_01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.signalfd4_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls signalfd4_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.signalfd4_02.sh b/testcase/syscalls/ltp.syscalls.signalfd4_02.sh new file mode 100755 index 0000000..4424432 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.signalfd4_02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-468203555 +# @用例名称: ltp.syscalls.signalfd4_02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.signalfd4_02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls signalfd4_02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sigpending02.sh b/testcase/syscalls/ltp.syscalls.sigpending02.sh new file mode 100755 index 0000000..32980a0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sigpending02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-478771292 +# @用例名称: ltp.syscalls.sigpending02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sigpending02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sigpending02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sigprocmask01.sh b/testcase/syscalls/ltp.syscalls.sigprocmask01.sh new file mode 100755 index 0000000..cf370e7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sigprocmask01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-489467680 +# @用例名称: ltp.syscalls.sigprocmask01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sigprocmask01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sigprocmask01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sigrelse01.sh b/testcase/syscalls/ltp.syscalls.sigrelse01.sh new file mode 100755 index 0000000..c548ce8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sigrelse01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-500137890 +# @用例名称: ltp.syscalls.sigrelse01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sigrelse01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sigrelse01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sigsuspend01.sh b/testcase/syscalls/ltp.syscalls.sigsuspend01.sh new file mode 100755 index 0000000..4cbcc99 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sigsuspend01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-510898779 +# @用例名称: ltp.syscalls.sigsuspend01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sigsuspend01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sigsuspend01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sigtimedwait01.sh b/testcase/syscalls/ltp.syscalls.sigtimedwait01.sh new file mode 100755 index 0000000..9ead0d4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sigtimedwait01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-521448132 +# @用例名称: ltp.syscalls.sigtimedwait01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sigtimedwait01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sigtimedwait01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sigwait01.sh b/testcase/syscalls/ltp.syscalls.sigwait01.sh new file mode 100755 index 0000000..f90d2b3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sigwait01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-532059231 +# @用例名称: ltp.syscalls.sigwait01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sigwait01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sigwait01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sigwaitinfo01.sh b/testcase/syscalls/ltp.syscalls.sigwaitinfo01.sh new file mode 100755 index 0000000..16d04fc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sigwaitinfo01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-540612989 +# @用例名称: ltp.syscalls.sigwaitinfo01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sigwaitinfo01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sigwaitinfo01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.socket01.sh b/testcase/syscalls/ltp.syscalls.socket01.sh new file mode 100755 index 0000000..7b79c28 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.socket01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-551117017 +# @用例名称: ltp.syscalls.socket01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.socket01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls socket01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.socket02.sh b/testcase/syscalls/ltp.syscalls.socket02.sh new file mode 100755 index 0000000..ee95ad3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.socket02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-559677208 +# @用例名称: ltp.syscalls.socket02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.socket02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls socket02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.socketcall01.sh b/testcase/syscalls/ltp.syscalls.socketcall01.sh new file mode 100755 index 0000000..72bafc3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.socketcall01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-570068335 +# @用例名称: ltp.syscalls.socketcall01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.socketcall01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls socketcall01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.socketcall02.sh b/testcase/syscalls/ltp.syscalls.socketcall02.sh new file mode 100755 index 0000000..3007710 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.socketcall02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-578801389 +# @用例名称: ltp.syscalls.socketcall02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.socketcall02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls socketcall02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.socketcall03.sh b/testcase/syscalls/ltp.syscalls.socketcall03.sh new file mode 100755 index 0000000..4e15d9f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.socketcall03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-587340370 +# @用例名称: ltp.syscalls.socketcall03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.socketcall03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls socketcall03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.socketpair01.sh b/testcase/syscalls/ltp.syscalls.socketpair01.sh new file mode 100755 index 0000000..0bd7ac3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.socketpair01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-597816376 +# @用例名称: ltp.syscalls.socketpair01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.socketpair01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls socketpair01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.socketpair02.sh b/testcase/syscalls/ltp.syscalls.socketpair02.sh new file mode 100755 index 0000000..1c38869 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.socketpair02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-608306518 +# @用例名称: ltp.syscalls.socketpair02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.socketpair02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls socketpair02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sockioctl01.sh b/testcase/syscalls/ltp.syscalls.sockioctl01.sh new file mode 100755 index 0000000..60a0130 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sockioctl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-618738512 +# @用例名称: ltp.syscalls.sockioctl01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sockioctl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sockioctl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.splice01.sh b/testcase/syscalls/ltp.syscalls.splice01.sh new file mode 100755 index 0000000..9edf17c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.splice01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-629142572 +# @用例名称: ltp.syscalls.splice01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.splice01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls splice01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.splice02.sh b/testcase/syscalls/ltp.syscalls.splice02.sh new file mode 100755 index 0000000..4016a5b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.splice02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-637715367 +# @用例名称: ltp.syscalls.splice02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.splice02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls splice02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.splice03.sh b/testcase/syscalls/ltp.syscalls.splice03.sh new file mode 100755 index 0000000..77aca1a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.splice03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-646250981 +# @用例名称: ltp.syscalls.splice03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.splice03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls splice03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.splice04.sh b/testcase/syscalls/ltp.syscalls.splice04.sh new file mode 100755 index 0000000..eededb8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.splice04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-654795853 +# @用例名称: ltp.syscalls.splice04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.splice04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls splice04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.splice05.sh b/testcase/syscalls/ltp.syscalls.splice05.sh new file mode 100755 index 0000000..77da9dd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.splice05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-663523207 +# @用例名称: ltp.syscalls.splice05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.splice05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls splice05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.splice06.sh b/testcase/syscalls/ltp.syscalls.splice06.sh new file mode 100755 index 0000000..2a71c58 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.splice06.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172840-131030167 +# @用例名称: ltp.syscalls.splice06 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.splice06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls splice06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.splice07.sh b/testcase/syscalls/ltp.syscalls.splice07.sh new file mode 100755 index 0000000..a8d4eec --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.splice07.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172840-208100205 +# @用例名称: ltp.syscalls.splice07 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.splice07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls splice07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.splice08.sh b/testcase/syscalls/ltp.syscalls.splice08.sh new file mode 100755 index 0000000..1c8c14d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.splice08.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172840-285980029 +# @用例名称: ltp.syscalls.splice08 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.splice08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls splice08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.splice09.sh b/testcase/syscalls/ltp.syscalls.splice09.sh new file mode 100755 index 0000000..e4147bf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.splice09.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172840-358528143 +# @用例名称: ltp.syscalls.splice09 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.splice09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls splice09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ssetmask01.sh b/testcase/syscalls/ltp.syscalls.ssetmask01.sh new file mode 100755 index 0000000..2061aa6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ssetmask01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-693632737 +# @用例名称: ltp.syscalls.ssetmask01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ssetmask01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ssetmask01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.stat01.sh b/testcase/syscalls/ltp.syscalls.stat01.sh new file mode 100755 index 0000000..f288b29 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.stat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-704188572 +# @用例名称: ltp.syscalls.stat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.stat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls stat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.stat01_64.sh b/testcase/syscalls/ltp.syscalls.stat01_64.sh new file mode 100755 index 0000000..5fb46be --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.stat01_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-712815367 +# @用例名称: ltp.syscalls.stat01_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.stat01_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls stat01_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.stat02.sh b/testcase/syscalls/ltp.syscalls.stat02.sh new file mode 100755 index 0000000..e2cefb9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.stat02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-721336735 +# @用例名称: ltp.syscalls.stat02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.stat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls stat02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.stat02_64.sh b/testcase/syscalls/ltp.syscalls.stat02_64.sh new file mode 100755 index 0000000..f9df9b3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.stat02_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-729856550 +# @用例名称: ltp.syscalls.stat02_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.stat02_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls stat02_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.stat03.sh b/testcase/syscalls/ltp.syscalls.stat03.sh new file mode 100755 index 0000000..d9889cb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.stat03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-738361897 +# @用例名称: ltp.syscalls.stat03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.stat03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls stat03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.stat03_64.sh b/testcase/syscalls/ltp.syscalls.stat03_64.sh new file mode 100755 index 0000000..65f99d7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.stat03_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-746937116 +# @用例名称: ltp.syscalls.stat03_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.stat03_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls stat03_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.stat04.sh b/testcase/syscalls/ltp.syscalls.stat04.sh new file mode 100755 index 0000000..6fea3b3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.stat04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-755569231 +# @用例名称: ltp.syscalls.stat04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.stat04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls stat04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.stat04_64.sh b/testcase/syscalls/ltp.syscalls.stat04_64.sh new file mode 100755 index 0000000..02e21ab --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.stat04_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-764099095 +# @用例名称: ltp.syscalls.stat04_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.stat04_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls stat04_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statfs01.sh b/testcase/syscalls/ltp.syscalls.statfs01.sh new file mode 100755 index 0000000..365be12 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statfs01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-774715654 +# @用例名称: ltp.syscalls.statfs01 +# @用例级别: 0 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statfs01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statfs01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statfs01_64.sh b/testcase/syscalls/ltp.syscalls.statfs01_64.sh new file mode 100755 index 0000000..752425e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statfs01_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-783333532 +# @用例名称: ltp.syscalls.statfs01_64 +# @用例级别: 0 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statfs01_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statfs01_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statfs02.sh b/testcase/syscalls/ltp.syscalls.statfs02.sh new file mode 100755 index 0000000..587fd4c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statfs02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-791908350 +# @用例名称: ltp.syscalls.statfs02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statfs02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statfs02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statfs02_64.sh b/testcase/syscalls/ltp.syscalls.statfs02_64.sh new file mode 100755 index 0000000..ef686f1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statfs02_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-800546938 +# @用例名称: ltp.syscalls.statfs02_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statfs02_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statfs02_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statfs03.sh b/testcase/syscalls/ltp.syscalls.statfs03.sh new file mode 100755 index 0000000..5f27b56 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statfs03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-809156610 +# @用例名称: ltp.syscalls.statfs03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statfs03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statfs03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statfs03_64.sh b/testcase/syscalls/ltp.syscalls.statfs03_64.sh new file mode 100755 index 0000000..50687f2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statfs03_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-817812459 +# @用例名称: ltp.syscalls.statfs03_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statfs03_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statfs03_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statvfs01.sh b/testcase/syscalls/ltp.syscalls.statvfs01.sh new file mode 100755 index 0000000..926c6b7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statvfs01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-828463283 +# @用例名称: ltp.syscalls.statvfs01 +# @用例级别: 0 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statvfs01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statvfs01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statvfs02.sh b/testcase/syscalls/ltp.syscalls.statvfs02.sh new file mode 100755 index 0000000..a09ba49 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statvfs02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-837036728 +# @用例名称: ltp.syscalls.statvfs02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statvfs02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statvfs02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statx01.sh b/testcase/syscalls/ltp.syscalls.statx01.sh new file mode 100755 index 0000000..bb231c1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statx01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-416910092 +# @用例名称: ltp.syscalls.statx01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statx01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statx01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statx02.sh b/testcase/syscalls/ltp.syscalls.statx02.sh new file mode 100755 index 0000000..42afd70 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statx02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-425594064 +# @用例名称: ltp.syscalls.statx02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statx02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statx02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statx03.sh b/testcase/syscalls/ltp.syscalls.statx03.sh new file mode 100755 index 0000000..39196f4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statx03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-434423729 +# @用例名称: ltp.syscalls.statx03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statx03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statx03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statx04.sh b/testcase/syscalls/ltp.syscalls.statx04.sh new file mode 100755 index 0000000..1b2062f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statx04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-442975113 +# @用例名称: ltp.syscalls.statx04 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statx04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statx04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statx05.sh b/testcase/syscalls/ltp.syscalls.statx05.sh new file mode 100755 index 0000000..3ab594d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statx05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-451418505 +# @用例名称: ltp.syscalls.statx05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statx05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statx05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statx06.sh b/testcase/syscalls/ltp.syscalls.statx06.sh new file mode 100755 index 0000000..53c0e29 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statx06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-460984838 +# @用例名称: ltp.syscalls.statx06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statx06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statx06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statx07.sh b/testcase/syscalls/ltp.syscalls.statx07.sh new file mode 100755 index 0000000..c16a624 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statx07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-469924980 +# @用例名称: ltp.syscalls.statx07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statx07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statx07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statx08.sh b/testcase/syscalls/ltp.syscalls.statx08.sh new file mode 100755 index 0000000..11caf84 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statx08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-478549381 +# @用例名称: ltp.syscalls.statx08 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statx08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statx08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statx09.sh b/testcase/syscalls/ltp.syscalls.statx09.sh new file mode 100755 index 0000000..f3c4926 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statx09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141853-875641651 +# @用例名称: ltp.syscalls.statx09 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statx09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statx09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statx10.sh b/testcase/syscalls/ltp.syscalls.statx10.sh new file mode 100755 index 0000000..891a71e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statx10.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172840-584054722 +# @用例名称: ltp.syscalls.statx10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statx10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statx10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statx11.sh b/testcase/syscalls/ltp.syscalls.statx11.sh new file mode 100755 index 0000000..70fb42f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statx11.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172840-657891603 +# @用例名称: ltp.syscalls.statx11 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statx11 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statx11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statx12.sh b/testcase/syscalls/ltp.syscalls.statx12.sh new file mode 100755 index 0000000..e587b41 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statx12.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172840-729975190 +# @用例名称: ltp.syscalls.statx12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statx12 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statx12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.stime01.sh b/testcase/syscalls/ltp.syscalls.stime01.sh new file mode 100755 index 0000000..13d014c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.stime01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-847601491 +# @用例名称: ltp.syscalls.stime01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.stime01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls stime01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.stime02.sh b/testcase/syscalls/ltp.syscalls.stime02.sh new file mode 100755 index 0000000..06243ae --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.stime02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-856123610 +# @用例名称: ltp.syscalls.stime02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.stime02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls stime02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.string01.sh b/testcase/syscalls/ltp.syscalls.string01.sh new file mode 100755 index 0000000..c4c3123 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.string01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-867058614 +# @用例名称: ltp.syscalls.string01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.string01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls string01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.swapoff01.sh b/testcase/syscalls/ltp.syscalls.swapoff01.sh new file mode 100755 index 0000000..6ead8f8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.swapoff01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-877620491 +# @用例名称: ltp.syscalls.swapoff01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.swapoff01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls swapoff01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.swapoff02.sh b/testcase/syscalls/ltp.syscalls.swapoff02.sh new file mode 100755 index 0000000..4c233fd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.swapoff02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-886235775 +# @用例名称: ltp.syscalls.swapoff02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.swapoff02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls swapoff02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.swapon01.sh b/testcase/syscalls/ltp.syscalls.swapon01.sh new file mode 100755 index 0000000..63860e0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.swapon01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-896813762 +# @用例名称: ltp.syscalls.swapon01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.swapon01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls swapon01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.swapon02.sh b/testcase/syscalls/ltp.syscalls.swapon02.sh new file mode 100755 index 0000000..5fad75d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.swapon02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-905340258 +# @用例名称: ltp.syscalls.swapon02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.swapon02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls swapon02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.swapon03.sh b/testcase/syscalls/ltp.syscalls.swapon03.sh new file mode 100755 index 0000000..b3b87d2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.swapon03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-913910768 +# @用例名称: ltp.syscalls.swapon03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.swapon03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls swapon03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.switch01.sh b/testcase/syscalls/ltp.syscalls.switch01.sh new file mode 100755 index 0000000..09663fd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.switch01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-925410039 +# @用例名称: ltp.syscalls.switch01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.switch01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls switch01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.symlink01.sh b/testcase/syscalls/ltp.syscalls.symlink01.sh new file mode 100755 index 0000000..b32bbcf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.symlink01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-936001692 +# @用例名称: ltp.syscalls.symlink01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.symlink01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls symlink01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.symlink02.sh b/testcase/syscalls/ltp.syscalls.symlink02.sh new file mode 100755 index 0000000..744fbed --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.symlink02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-944612537 +# @用例名称: ltp.syscalls.symlink02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.symlink02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls symlink02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.symlink03.sh b/testcase/syscalls/ltp.syscalls.symlink03.sh new file mode 100755 index 0000000..21be82e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.symlink03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-953160204 +# @用例名称: ltp.syscalls.symlink03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.symlink03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls symlink03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.symlink04.sh b/testcase/syscalls/ltp.syscalls.symlink04.sh new file mode 100755 index 0000000..2628e2a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.symlink04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-962110625 +# @用例名称: ltp.syscalls.symlink04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.symlink04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls symlink04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.symlinkat01.sh b/testcase/syscalls/ltp.syscalls.symlinkat01.sh new file mode 100755 index 0000000..28f0527 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.symlinkat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-990738663 +# @用例名称: ltp.syscalls.symlinkat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.symlinkat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls symlinkat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sync01.sh b/testcase/syscalls/ltp.syscalls.sync01.sh new file mode 100755 index 0000000..2b0b22a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sync01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-001260023 +# @用例名称: ltp.syscalls.sync01 +# @用例级别: 2 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sync01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sync01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sync_file_range01.sh b/testcase/syscalls/ltp.syscalls.sync_file_range01.sh new file mode 100755 index 0000000..24edd8b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sync_file_range01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-023361346 +# @用例名称: ltp.syscalls.sync_file_range01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sync_file_range01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sync_file_range01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sync_file_range02.sh b/testcase/syscalls/ltp.syscalls.sync_file_range02.sh new file mode 100755 index 0000000..b507901 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sync_file_range02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-032003039 +# @用例名称: ltp.syscalls.sync_file_range02 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sync_file_range02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sync_file_range02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.syncfs01.sh b/testcase/syscalls/ltp.syscalls.syncfs01.sh new file mode 100755 index 0000000..6eaab4a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.syncfs01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-011889496 +# @用例名称: ltp.syscalls.syncfs01 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.syncfs01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls syncfs01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.syscall01.sh b/testcase/syscalls/ltp.syscalls.syscall01.sh new file mode 100755 index 0000000..e65acca --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.syscall01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-042867652 +# @用例名称: ltp.syscalls.syscall01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.syscall01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls syscall01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sysconf01.sh b/testcase/syscalls/ltp.syscalls.sysconf01.sh new file mode 100755 index 0000000..4edca48 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sysconf01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-054105403 +# @用例名称: ltp.syscalls.sysconf01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sysconf01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sysconf01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sysctl01.sh b/testcase/syscalls/ltp.syscalls.sysctl01.sh new file mode 100755 index 0000000..e4b6a4e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sysctl01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-065478238 +# @用例名称: ltp.syscalls.sysctl01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sysctl01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sysctl01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sysctl03.sh b/testcase/syscalls/ltp.syscalls.sysctl03.sh new file mode 100755 index 0000000..486c79d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sysctl03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-074330375 +# @用例名称: ltp.syscalls.sysctl03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sysctl03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sysctl03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sysctl04.sh b/testcase/syscalls/ltp.syscalls.sysctl04.sh new file mode 100755 index 0000000..a302f88 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sysctl04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-082977257 +# @用例名称: ltp.syscalls.sysctl04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sysctl04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sysctl04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sysfs01.sh b/testcase/syscalls/ltp.syscalls.sysfs01.sh new file mode 100755 index 0000000..8b08beb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sysfs01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-093441181 +# @用例名称: ltp.syscalls.sysfs01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sysfs01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sysfs01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sysfs02.sh b/testcase/syscalls/ltp.syscalls.sysfs02.sh new file mode 100755 index 0000000..11df793 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sysfs02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-105855744 +# @用例名称: ltp.syscalls.sysfs02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sysfs02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sysfs02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sysfs03.sh b/testcase/syscalls/ltp.syscalls.sysfs03.sh new file mode 100755 index 0000000..f282bac --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sysfs03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-114663999 +# @用例名称: ltp.syscalls.sysfs03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sysfs03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sysfs03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sysfs04.sh b/testcase/syscalls/ltp.syscalls.sysfs04.sh new file mode 100755 index 0000000..c708996 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sysfs04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-123176290 +# @用例名称: ltp.syscalls.sysfs04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sysfs04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sysfs04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sysfs05.sh b/testcase/syscalls/ltp.syscalls.sysfs05.sh new file mode 100755 index 0000000..d814139 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sysfs05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-132017347 +# @用例名称: ltp.syscalls.sysfs05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sysfs05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sysfs05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sysinfo01.sh b/testcase/syscalls/ltp.syscalls.sysinfo01.sh new file mode 100755 index 0000000..e4c2881 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sysinfo01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-142420536 +# @用例名称: ltp.syscalls.sysinfo01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sysinfo01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sysinfo01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sysinfo02.sh b/testcase/syscalls/ltp.syscalls.sysinfo02.sh new file mode 100755 index 0000000..9f2327b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sysinfo02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-150988060 +# @用例名称: ltp.syscalls.sysinfo02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sysinfo02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sysinfo02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sysinfo03.sh b/testcase/syscalls/ltp.syscalls.sysinfo03.sh new file mode 100755 index 0000000..3479a49 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sysinfo03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-160120322 +# @用例名称: ltp.syscalls.sysinfo03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sysinfo03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sysinfo03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.syslog11.sh b/testcase/syscalls/ltp.syscalls.syslog11.sh new file mode 100755 index 0000000..a9b97ef --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.syslog11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-257497864 +# @用例名称: ltp.syscalls.syslog11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.syslog11 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls syslog11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.syslog12.sh b/testcase/syscalls/ltp.syscalls.syslog12.sh new file mode 100755 index 0000000..56d4735 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.syslog12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-266486827 +# @用例名称: ltp.syscalls.syslog12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.syslog12 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls syslog12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.tee01.sh b/testcase/syscalls/ltp.syscalls.tee01.sh new file mode 100755 index 0000000..71cffe2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.tee01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-674192784 +# @用例名称: ltp.syscalls.tee01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.tee01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls tee01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.tee02.sh b/testcase/syscalls/ltp.syscalls.tee02.sh new file mode 100755 index 0000000..5e803cd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.tee02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213022-682887167 +# @用例名称: ltp.syscalls.tee02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.tee02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls tee02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.tgkill01.sh b/testcase/syscalls/ltp.syscalls.tgkill01.sh new file mode 100755 index 0000000..25b7d1b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.tgkill01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-277195869 +# @用例名称: ltp.syscalls.tgkill01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.tgkill01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls tgkill01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.tgkill02.sh b/testcase/syscalls/ltp.syscalls.tgkill02.sh new file mode 100755 index 0000000..d2a4c15 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.tgkill02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-285851999 +# @用例名称: ltp.syscalls.tgkill02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.tgkill02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls tgkill02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.tgkill03.sh b/testcase/syscalls/ltp.syscalls.tgkill03.sh new file mode 100755 index 0000000..8993b3d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.tgkill03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-294312513 +# @用例名称: ltp.syscalls.tgkill03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.tgkill03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls tgkill03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.time01.sh b/testcase/syscalls/ltp.syscalls.time01.sh new file mode 100755 index 0000000..7efea9e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.time01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-304668063 +# @用例名称: ltp.syscalls.time01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.time01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls time01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timer_create01.sh b/testcase/syscalls/ltp.syscalls.timer_create01.sh new file mode 100755 index 0000000..9c87d12 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timer_create01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-415650598 +# @用例名称: ltp.syscalls.timer_create01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timer_create01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timer_create01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timer_create02.sh b/testcase/syscalls/ltp.syscalls.timer_create02.sh new file mode 100755 index 0000000..ba7db67 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timer_create02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-424215137 +# @用例名称: ltp.syscalls.timer_create02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timer_create02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timer_create02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timer_create03.sh b/testcase/syscalls/ltp.syscalls.timer_create03.sh new file mode 100755 index 0000000..daaca69 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timer_create03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-432870565 +# @用例名称: ltp.syscalls.timer_create03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timer_create03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timer_create03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timer_delete01.sh b/testcase/syscalls/ltp.syscalls.timer_delete01.sh new file mode 100755 index 0000000..dbeafbf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timer_delete01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-443304011 +# @用例名称: ltp.syscalls.timer_delete01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timer_delete01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timer_delete01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timer_delete02.sh b/testcase/syscalls/ltp.syscalls.timer_delete02.sh new file mode 100755 index 0000000..2fc9002 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timer_delete02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-451840537 +# @用例名称: ltp.syscalls.timer_delete02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timer_delete02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timer_delete02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timer_getoverrun01.sh b/testcase/syscalls/ltp.syscalls.timer_getoverrun01.sh new file mode 100755 index 0000000..419f6f1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timer_getoverrun01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-462343433 +# @用例名称: ltp.syscalls.timer_getoverrun01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timer_getoverrun01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timer_getoverrun01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timer_gettime01.sh b/testcase/syscalls/ltp.syscalls.timer_gettime01.sh new file mode 100755 index 0000000..06613d7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timer_gettime01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-471428857 +# @用例名称: ltp.syscalls.timer_gettime01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timer_gettime01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timer_gettime01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timer_settime01.sh b/testcase/syscalls/ltp.syscalls.timer_settime01.sh new file mode 100755 index 0000000..e44b3d3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timer_settime01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-482016983 +# @用例名称: ltp.syscalls.timer_settime01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timer_settime01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timer_settime01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timer_settime02.sh b/testcase/syscalls/ltp.syscalls.timer_settime02.sh new file mode 100755 index 0000000..fb81149 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timer_settime02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-490610556 +# @用例名称: ltp.syscalls.timer_settime02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timer_settime02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timer_settime02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timer_settime03.sh b/testcase/syscalls/ltp.syscalls.timer_settime03.sh new file mode 100755 index 0000000..15bb974 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timer_settime03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-499161679 +# @用例名称: ltp.syscalls.timer_settime03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timer_settime03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timer_settime03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timerfd01.sh b/testcase/syscalls/ltp.syscalls.timerfd01.sh new file mode 100755 index 0000000..718dcbb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timerfd01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-336927337 +# @用例名称: ltp.syscalls.timerfd01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timerfd01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timerfd01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timerfd02.sh b/testcase/syscalls/ltp.syscalls.timerfd02.sh new file mode 100755 index 0000000..576d893 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timerfd02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-349463929 +# @用例名称: ltp.syscalls.timerfd02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timerfd02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timerfd02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timerfd04.sh b/testcase/syscalls/ltp.syscalls.timerfd04.sh new file mode 100755 index 0000000..c8a0466 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timerfd04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-368226103 +# @用例名称: ltp.syscalls.timerfd04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timerfd04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timerfd04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timerfd_create01.sh b/testcase/syscalls/ltp.syscalls.timerfd_create01.sh new file mode 100755 index 0000000..0f6815f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timerfd_create01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-378229604 +# @用例名称: ltp.syscalls.timerfd_create01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timerfd_create01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timerfd_create01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timerfd_gettime01.sh b/testcase/syscalls/ltp.syscalls.timerfd_gettime01.sh new file mode 100755 index 0000000..e3da05b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timerfd_gettime01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-387801979 +# @用例名称: ltp.syscalls.timerfd_gettime01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timerfd_gettime01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timerfd_gettime01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timerfd_settime01.sh b/testcase/syscalls/ltp.syscalls.timerfd_settime01.sh new file mode 100755 index 0000000..9c910eb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timerfd_settime01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-396357251 +# @用例名称: ltp.syscalls.timerfd_settime01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timerfd_settime01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timerfd_settime01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.timerfd_settime02.sh b/testcase/syscalls/ltp.syscalls.timerfd_settime02.sh new file mode 100755 index 0000000..245627a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.timerfd_settime02.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-405007068 +# @用例名称: ltp.syscalls.timerfd_settime02 +# @用例级别: 1 +# @用例标签: +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.timerfd_settime02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls timerfd_settime02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.times01.sh b/testcase/syscalls/ltp.syscalls.times01.sh new file mode 100755 index 0000000..46b5206 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.times01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-315166461 +# @用例名称: ltp.syscalls.times01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.times01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls times01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.times03.sh b/testcase/syscalls/ltp.syscalls.times03.sh new file mode 100755 index 0000000..8603107 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.times03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-323602960 +# @用例名称: ltp.syscalls.times03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.times03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls times03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.tkill01.sh b/testcase/syscalls/ltp.syscalls.tkill01.sh new file mode 100755 index 0000000..64626c9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.tkill01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-509760756 +# @用例名称: ltp.syscalls.tkill01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.tkill01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls tkill01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.tkill02.sh b/testcase/syscalls/ltp.syscalls.tkill02.sh new file mode 100755 index 0000000..2218aa4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.tkill02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-518381099 +# @用例名称: ltp.syscalls.tkill02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.tkill02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls tkill02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.truncate02.sh b/testcase/syscalls/ltp.syscalls.truncate02.sh new file mode 100755 index 0000000..a5ef9fa --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.truncate02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-528982069 +# @用例名称: ltp.syscalls.truncate02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.truncate02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls truncate02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.truncate02_64.sh b/testcase/syscalls/ltp.syscalls.truncate02_64.sh new file mode 100755 index 0000000..fcbb92c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.truncate02_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-538170866 +# @用例名称: ltp.syscalls.truncate02_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.truncate02_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls truncate02_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.truncate03.sh b/testcase/syscalls/ltp.syscalls.truncate03.sh new file mode 100755 index 0000000..38c08dc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.truncate03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-546777442 +# @用例名称: ltp.syscalls.truncate03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.truncate03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls truncate03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.truncate03_64.sh b/testcase/syscalls/ltp.syscalls.truncate03_64.sh new file mode 100755 index 0000000..9d2e0b9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.truncate03_64.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-555233819 +# @用例名称: ltp.syscalls.truncate03_64 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.truncate03_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls truncate03_64 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ulimit01.sh b/testcase/syscalls/ltp.syscalls.ulimit01.sh new file mode 100755 index 0000000..6e5e9f5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ulimit01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-570145557 +# @用例名称: ltp.syscalls.ulimit01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ulimit01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ulimit01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.umask01.sh b/testcase/syscalls/ltp.syscalls.umask01.sh new file mode 100755 index 0000000..8cfd923 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.umask01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-580542995 +# @用例名称: ltp.syscalls.umask01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.umask01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls umask01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.umount01.sh b/testcase/syscalls/ltp.syscalls.umount01.sh new file mode 100755 index 0000000..dec08cb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.umount01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-690745981 +# @用例名称: ltp.syscalls.umount01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.umount01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls umount01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.umount02.sh b/testcase/syscalls/ltp.syscalls.umount02.sh new file mode 100755 index 0000000..1be9766 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.umount02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-699445041 +# @用例名称: ltp.syscalls.umount02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.umount02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls umount02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.umount03.sh b/testcase/syscalls/ltp.syscalls.umount03.sh new file mode 100755 index 0000000..5e8086b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.umount03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-708174177 +# @用例名称: ltp.syscalls.umount03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.umount03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls umount03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.umount2_01.sh b/testcase/syscalls/ltp.syscalls.umount2_01.sh new file mode 100755 index 0000000..2bbf7a2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.umount2_01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-718802479 +# @用例名称: ltp.syscalls.umount2_01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.umount2_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls umount2_01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.umount2_02.sh b/testcase/syscalls/ltp.syscalls.umount2_02.sh new file mode 100755 index 0000000..640e8be --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.umount2_02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-727532316 +# @用例名称: ltp.syscalls.umount2_02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.umount2_02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls umount2_02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.uname01.sh b/testcase/syscalls/ltp.syscalls.uname01.sh new file mode 100755 index 0000000..6bcbe41 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.uname01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-591016797 +# @用例名称: ltp.syscalls.uname01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.uname01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls uname01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.uname02.sh b/testcase/syscalls/ltp.syscalls.uname02.sh new file mode 100755 index 0000000..9a1e6c4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.uname02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-599411347 +# @用例名称: ltp.syscalls.uname02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.uname02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls uname02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.uname04.sh b/testcase/syscalls/ltp.syscalls.uname04.sh new file mode 100755 index 0000000..462cdfd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.uname04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-607952362 +# @用例名称: ltp.syscalls.uname04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.uname04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls uname04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.unlink01.sh b/testcase/syscalls/ltp.syscalls.unlink01.sh new file mode 100755 index 0000000..6eab546 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.unlink01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-618357024 +# @用例名称: ltp.syscalls.unlink01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.unlink01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls unlink01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.unlink05.sh b/testcase/syscalls/ltp.syscalls.unlink05.sh new file mode 100755 index 0000000..0407d1b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.unlink05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-627024566 +# @用例名称: ltp.syscalls.unlink05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.unlink05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls unlink05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.unlink07.sh b/testcase/syscalls/ltp.syscalls.unlink07.sh new file mode 100755 index 0000000..b780f3f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.unlink07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-635750427 +# @用例名称: ltp.syscalls.unlink07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.unlink07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls unlink07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.unlink08.sh b/testcase/syscalls/ltp.syscalls.unlink08.sh new file mode 100755 index 0000000..7432b8b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.unlink08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-644342967 +# @用例名称: ltp.syscalls.unlink08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.unlink08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls unlink08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.unlink09.sh b/testcase/syscalls/ltp.syscalls.unlink09.sh new file mode 100755 index 0000000..1b4426f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.unlink09.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172840-432737184 +# @用例名称: ltp.syscalls.unlink09 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.unlink09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls unlink09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.unlinkat01.sh b/testcase/syscalls/ltp.syscalls.unlinkat01.sh new file mode 100755 index 0000000..f3f9dc1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.unlinkat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-655677369 +# @用例名称: ltp.syscalls.unlinkat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.unlinkat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls unlinkat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.unshare01.sh b/testcase/syscalls/ltp.syscalls.unshare01.sh new file mode 100755 index 0000000..7f17876 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.unshare01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-666313666 +# @用例名称: ltp.syscalls.unshare01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.unshare01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls unshare01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.unshare02.sh b/testcase/syscalls/ltp.syscalls.unshare02.sh new file mode 100755 index 0000000..091358a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.unshare02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-675022023 +# @用例名称: ltp.syscalls.unshare02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.unshare02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls unshare02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.userfaultfd01.sh b/testcase/syscalls/ltp.syscalls.userfaultfd01.sh new file mode 100755 index 0000000..fbbcb09 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.userfaultfd01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-746725637 +# @用例名称: ltp.syscalls.userfaultfd01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.userfaultfd01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls userfaultfd01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ustat01.sh b/testcase/syscalls/ltp.syscalls.ustat01.sh new file mode 100755 index 0000000..4ddb8db --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ustat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-757227652 +# @用例名称: ltp.syscalls.ustat01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ustat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ustat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ustat02.sh b/testcase/syscalls/ltp.syscalls.ustat02.sh new file mode 100755 index 0000000..de16960 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ustat02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-765794585 +# @用例名称: ltp.syscalls.ustat02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ustat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ustat02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.utime01.sh b/testcase/syscalls/ltp.syscalls.utime01.sh new file mode 100755 index 0000000..14f3462 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.utime01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-776174420 +# @用例名称: ltp.syscalls.utime01 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.utime01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls utime01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.utime02.sh b/testcase/syscalls/ltp.syscalls.utime02.sh new file mode 100755 index 0000000..1f41baa --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.utime02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-793409135 +# @用例名称: ltp.syscalls.utime02 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.utime02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls utime02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.utime03.sh b/testcase/syscalls/ltp.syscalls.utime03.sh new file mode 100755 index 0000000..f1bab78 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.utime03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-802189849 +# @用例名称: ltp.syscalls.utime03 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.utime03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls utime03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.utime04.sh b/testcase/syscalls/ltp.syscalls.utime04.sh new file mode 100755 index 0000000..d13579c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.utime04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-810653629 +# @用例名称: ltp.syscalls.utime04 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.utime04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls utime04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.utime05.sh b/testcase/syscalls/ltp.syscalls.utime05.sh new file mode 100755 index 0000000..df1f6ab --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.utime05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-819197739 +# @用例名称: ltp.syscalls.utime05 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.utime05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls utime05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.utime06.sh b/testcase/syscalls/ltp.syscalls.utime06.sh new file mode 100755 index 0000000..73ecfad --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.utime06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-827876110 +# @用例名称: ltp.syscalls.utime06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.utime06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls utime06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.utime07.sh b/testcase/syscalls/ltp.syscalls.utime07.sh new file mode 100755 index 0000000..c99fae8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.utime07.sh @@ -0,0 +1,52 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20240719-172840-509447802 +# @用例名称: ltp.syscalls.utime07 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.utime07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls utime07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.utimensat01.sh b/testcase/syscalls/ltp.syscalls.utimensat01.sh new file mode 100755 index 0000000..0a12c1c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.utimensat01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-850057363 +# @用例名称: ltp.syscalls.utimensat01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.utimensat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls utimensat01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.utimes01.sh b/testcase/syscalls/ltp.syscalls.utimes01.sh new file mode 100755 index 0000000..67b52df --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.utimes01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-838395398 +# @用例名称: ltp.syscalls.utimes01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.utimes01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls utimes01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.vfork01.sh b/testcase/syscalls/ltp.syscalls.vfork01.sh new file mode 100755 index 0000000..a3b7ea2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.vfork01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-860647322 +# @用例名称: ltp.syscalls.vfork01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.vfork01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls vfork01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.vfork02.sh b/testcase/syscalls/ltp.syscalls.vfork02.sh new file mode 100755 index 0000000..a1476dd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.vfork02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-869367853 +# @用例名称: ltp.syscalls.vfork02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.vfork02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls vfork02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.vhangup01.sh b/testcase/syscalls/ltp.syscalls.vhangup01.sh new file mode 100755 index 0000000..d027d30 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.vhangup01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-879984732 +# @用例名称: ltp.syscalls.vhangup01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.vhangup01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls vhangup01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.vhangup02.sh b/testcase/syscalls/ltp.syscalls.vhangup02.sh new file mode 100755 index 0000000..2574842 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.vhangup02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-888562186 +# @用例名称: ltp.syscalls.vhangup02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.vhangup02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls vhangup02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.vmsplice01.sh b/testcase/syscalls/ltp.syscalls.vmsplice01.sh new file mode 100755 index 0000000..1b8bbfb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.vmsplice01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-900493635 +# @用例名称: ltp.syscalls.vmsplice01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.vmsplice01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls vmsplice01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.vmsplice02.sh b/testcase/syscalls/ltp.syscalls.vmsplice02.sh new file mode 100755 index 0000000..fd11297 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.vmsplice02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-909152861 +# @用例名称: ltp.syscalls.vmsplice02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.vmsplice02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls vmsplice02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.vmsplice03.sh b/testcase/syscalls/ltp.syscalls.vmsplice03.sh new file mode 100755 index 0000000..6a2628b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.vmsplice03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-917879774 +# @用例名称: ltp.syscalls.vmsplice03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.vmsplice03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls vmsplice03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.vmsplice04.sh b/testcase/syscalls/ltp.syscalls.vmsplice04.sh new file mode 100755 index 0000000..1105df4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.vmsplice04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-926521807 +# @用例名称: ltp.syscalls.vmsplice04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.vmsplice04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls vmsplice04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.wait01.sh b/testcase/syscalls/ltp.syscalls.wait01.sh new file mode 100755 index 0000000..3c1f639 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.wait01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-937056943 +# @用例名称: ltp.syscalls.wait01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.wait01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls wait01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.wait02.sh b/testcase/syscalls/ltp.syscalls.wait02.sh new file mode 100755 index 0000000..724aaaa --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.wait02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-945613708 +# @用例名称: ltp.syscalls.wait02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.wait02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls wait02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.wait401.sh b/testcase/syscalls/ltp.syscalls.wait401.sh new file mode 100755 index 0000000..6acd962 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.wait401.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-956113337 +# @用例名称: ltp.syscalls.wait401 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.wait401 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls wait401 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.wait402.sh b/testcase/syscalls/ltp.syscalls.wait402.sh new file mode 100755 index 0000000..b856c5e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.wait402.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-964638042 +# @用例名称: ltp.syscalls.wait402 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.wait402 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls wait402 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.wait403.sh b/testcase/syscalls/ltp.syscalls.wait403.sh new file mode 100755 index 0000000..bf08906 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.wait403.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-973675896 +# @用例名称: ltp.syscalls.wait403 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.wait403 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls wait403 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitid01.sh b/testcase/syscalls/ltp.syscalls.waitid01.sh new file mode 100755 index 0000000..9fdd03d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-100245492 +# @用例名称: ltp.syscalls.waitid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitid02.sh b/testcase/syscalls/ltp.syscalls.waitid02.sh new file mode 100755 index 0000000..8bbe833 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitid02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-108863030 +# @用例名称: ltp.syscalls.waitid02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitid02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitid02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitid03.sh b/testcase/syscalls/ltp.syscalls.waitid03.sh new file mode 100755 index 0000000..83b2e6f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitid03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141853-108459551 +# @用例名称: ltp.syscalls.waitid03 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitid03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitid03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitid04.sh b/testcase/syscalls/ltp.syscalls.waitid04.sh new file mode 100755 index 0000000..5927c90 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitid04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141853-176266985 +# @用例名称: ltp.syscalls.waitid04 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitid04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitid04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitid05.sh b/testcase/syscalls/ltp.syscalls.waitid05.sh new file mode 100755 index 0000000..fe8c408 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitid05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141853-238933603 +# @用例名称: ltp.syscalls.waitid05 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitid05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitid05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitid06.sh b/testcase/syscalls/ltp.syscalls.waitid06.sh new file mode 100755 index 0000000..8d66271 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitid06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141853-302027674 +# @用例名称: ltp.syscalls.waitid06 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitid06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitid06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitid07.sh b/testcase/syscalls/ltp.syscalls.waitid07.sh new file mode 100755 index 0000000..6864a35 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitid07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141853-365725266 +# @用例名称: ltp.syscalls.waitid07 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitid07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitid07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitid08.sh b/testcase/syscalls/ltp.syscalls.waitid08.sh new file mode 100755 index 0000000..4aa423a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitid08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141853-429602576 +# @用例名称: ltp.syscalls.waitid08 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitid08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitid08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitid09.sh b/testcase/syscalls/ltp.syscalls.waitid09.sh new file mode 100755 index 0000000..0b1c116 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitid09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141853-493117231 +# @用例名称: ltp.syscalls.waitid09 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitid09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitid09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitid10.sh b/testcase/syscalls/ltp.syscalls.waitid10.sh new file mode 100755 index 0000000..b47329d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitid10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141853-556772939 +# @用例名称: ltp.syscalls.waitid10 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitid10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitid10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitid11.sh b/testcase/syscalls/ltp.syscalls.waitid11.sh new file mode 100755 index 0000000..1fb4278 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitid11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141853-621285660 +# @用例名称: ltp.syscalls.waitid11 +# @用例级别: 3 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitid11 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitid11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitpid01.sh b/testcase/syscalls/ltp.syscalls.waitpid01.sh new file mode 100755 index 0000000..61c2aba --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitpid01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213023-984306412 +# @用例名称: ltp.syscalls.waitpid01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitpid01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitpid01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitpid03.sh b/testcase/syscalls/ltp.syscalls.waitpid03.sh new file mode 100755 index 0000000..f365576 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitpid03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-001398489 +# @用例名称: ltp.syscalls.waitpid03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitpid03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitpid03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitpid04.sh b/testcase/syscalls/ltp.syscalls.waitpid04.sh new file mode 100755 index 0000000..5fe3da2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitpid04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-010030715 +# @用例名称: ltp.syscalls.waitpid04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitpid04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitpid04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitpid06.sh b/testcase/syscalls/ltp.syscalls.waitpid06.sh new file mode 100755 index 0000000..e9dc173 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitpid06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-027306106 +# @用例名称: ltp.syscalls.waitpid06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitpid06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitpid06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitpid07.sh b/testcase/syscalls/ltp.syscalls.waitpid07.sh new file mode 100755 index 0000000..577e049 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitpid07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-036863152 +# @用例名称: ltp.syscalls.waitpid07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitpid07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitpid07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitpid08.sh b/testcase/syscalls/ltp.syscalls.waitpid08.sh new file mode 100755 index 0000000..e9f4cdb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitpid08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-046396383 +# @用例名称: ltp.syscalls.waitpid08 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitpid08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitpid08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitpid09.sh b/testcase/syscalls/ltp.syscalls.waitpid09.sh new file mode 100755 index 0000000..f064abf --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitpid09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-055142281 +# @用例名称: ltp.syscalls.waitpid09 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitpid09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitpid09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitpid10.sh b/testcase/syscalls/ltp.syscalls.waitpid10.sh new file mode 100755 index 0000000..99ae734 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitpid10.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-063849006 +# @用例名称: ltp.syscalls.waitpid10 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitpid10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitpid10 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitpid11.sh b/testcase/syscalls/ltp.syscalls.waitpid11.sh new file mode 100755 index 0000000..c160a06 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitpid11.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-072602218 +# @用例名称: ltp.syscalls.waitpid11 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitpid11 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitpid11 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitpid12.sh b/testcase/syscalls/ltp.syscalls.waitpid12.sh new file mode 100755 index 0000000..e9a1455 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitpid12.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-081244010 +# @用例名称: ltp.syscalls.waitpid12 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitpid12 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitpid12 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.waitpid13.sh b/testcase/syscalls/ltp.syscalls.waitpid13.sh new file mode 100755 index 0000000..cac775b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.waitpid13.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-089779745 +# @用例名称: ltp.syscalls.waitpid13 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.waitpid13 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls waitpid13 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.write01.sh b/testcase/syscalls/ltp.syscalls.write01.sh new file mode 100755 index 0000000..e386da2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.write01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-119612507 +# @用例名称: ltp.syscalls.write01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.write01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls write01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.write02.sh b/testcase/syscalls/ltp.syscalls.write02.sh new file mode 100755 index 0000000..373e187 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.write02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-128326676 +# @用例名称: ltp.syscalls.write02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.write02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls write02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.write03.sh b/testcase/syscalls/ltp.syscalls.write03.sh new file mode 100755 index 0000000..8b3147c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.write03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-137115264 +# @用例名称: ltp.syscalls.write03 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.write03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls write03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.write04.sh b/testcase/syscalls/ltp.syscalls.write04.sh new file mode 100755 index 0000000..6c8bfc7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.write04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-145733614 +# @用例名称: ltp.syscalls.write04 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.write04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls write04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.write05.sh b/testcase/syscalls/ltp.syscalls.write05.sh new file mode 100755 index 0000000..6ebd99c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.write05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-154269147 +# @用例名称: ltp.syscalls.write05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.write05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls write05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.write06.sh b/testcase/syscalls/ltp.syscalls.write06.sh new file mode 100755 index 0000000..a22b28f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.write06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-163064969 +# @用例名称: ltp.syscalls.write06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.write06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls write06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.writev01.sh b/testcase/syscalls/ltp.syscalls.writev01.sh new file mode 100755 index 0000000..46e52d8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.writev01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-174039609 +# @用例名称: ltp.syscalls.writev01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.writev01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls writev01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.writev02.sh b/testcase/syscalls/ltp.syscalls.writev02.sh new file mode 100755 index 0000000..77b7f5e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.writev02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-183030094 +# @用例名称: ltp.syscalls.writev02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.writev02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls writev02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.writev03.sh b/testcase/syscalls/ltp.syscalls.writev03.sh new file mode 100755 index 0000000..e3efdbd --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.writev03.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-191686114 +# @用例名称: ltp.syscalls.writev03 +# @用例级别: 3 +# @用例标签: eks不支持 +# @超时时间: 600 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.writev03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls writev03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.writev05.sh b/testcase/syscalls/ltp.syscalls.writev05.sh new file mode 100755 index 0000000..9029215 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.writev05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-200159722 +# @用例名称: ltp.syscalls.writev05 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.writev05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls writev05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.writev06.sh b/testcase/syscalls/ltp.syscalls.writev06.sh new file mode 100755 index 0000000..e37664f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.writev06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-208656674 +# @用例名称: ltp.syscalls.writev06 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.writev06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls writev06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.writev07.sh b/testcase/syscalls/ltp.syscalls.writev07.sh new file mode 100755 index 0000000..e744e63 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.writev07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213024-217184895 +# @用例名称: ltp.syscalls.writev07 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.writev07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls writev07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpm01.sh b/testcase/tpm_tools/ltp.tpm_tools.tpm01.sh new file mode 100755 index 0000000..6fe2275 --- /dev/null +++ b/testcase/tpm_tools/ltp.tpm_tools.tpm01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-109777408 +# @用例名称: ltp.tpm_tools.tpm01 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tpm_tools.tpm01 + # @预期结果:1: 用例返回0 + ltp_run_testcase tpm_tools tpm01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpm02.sh b/testcase/tpm_tools/ltp.tpm_tools.tpm02.sh new file mode 100755 index 0000000..a9a63cd --- /dev/null +++ b/testcase/tpm_tools/ltp.tpm_tools.tpm02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-118458445 +# @用例名称: ltp.tpm_tools.tpm02 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tpm_tools.tpm02 + # @预期结果:1: 用例返回0 + ltp_run_testcase tpm_tools tpm02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpm03.sh b/testcase/tpm_tools/ltp.tpm_tools.tpm03.sh new file mode 100755 index 0000000..ba84dd3 --- /dev/null +++ b/testcase/tpm_tools/ltp.tpm_tools.tpm03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-126981545 +# @用例名称: ltp.tpm_tools.tpm03 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tpm_tools.tpm03 + # @预期结果:1: 用例返回0 + ltp_run_testcase tpm_tools tpm03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpm04.sh b/testcase/tpm_tools/ltp.tpm_tools.tpm04.sh new file mode 100755 index 0000000..a92e19f --- /dev/null +++ b/testcase/tpm_tools/ltp.tpm_tools.tpm04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-135603001 +# @用例名称: ltp.tpm_tools.tpm04 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tpm_tools.tpm04 + # @预期结果:1: 用例返回0 + ltp_run_testcase tpm_tools tpm04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpm05.sh b/testcase/tpm_tools/ltp.tpm_tools.tpm05.sh new file mode 100755 index 0000000..25d6369 --- /dev/null +++ b/testcase/tpm_tools/ltp.tpm_tools.tpm05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-144226820 +# @用例名称: ltp.tpm_tools.tpm05 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tpm_tools.tpm05 + # @预期结果:1: 用例返回0 + ltp_run_testcase tpm_tools tpm05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpm06.sh b/testcase/tpm_tools/ltp.tpm_tools.tpm06.sh new file mode 100755 index 0000000..fa0acda --- /dev/null +++ b/testcase/tpm_tools/ltp.tpm_tools.tpm06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-152863354 +# @用例名称: ltp.tpm_tools.tpm06 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tpm_tools.tpm06 + # @预期结果:1: 用例返回0 + ltp_run_testcase tpm_tools tpm06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpm07.sh b/testcase/tpm_tools/ltp.tpm_tools.tpm07.sh new file mode 100755 index 0000000..1d3c297 --- /dev/null +++ b/testcase/tpm_tools/ltp.tpm_tools.tpm07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-204366803 +# @用例名称: ltp.tpm_tools.tpm07 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tpm_tools.tpm07 + # @预期结果:1: 用例返回0 + ltp_run_testcase tpm_tools tpm07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpmtoken01.sh b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken01.sh new file mode 100755 index 0000000..cff3a2c --- /dev/null +++ b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-161398066 +# @用例名称: ltp.tpm_tools.tpmtoken01 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tpm_tools.tpmtoken01 + # @预期结果:1: 用例返回0 + ltp_run_testcase tpm_tools tpmtoken01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpmtoken02.sh b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken02.sh new file mode 100755 index 0000000..4a82a09 --- /dev/null +++ b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-169877776 +# @用例名称: ltp.tpm_tools.tpmtoken02 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tpm_tools.tpmtoken02 + # @预期结果:1: 用例返回0 + ltp_run_testcase tpm_tools tpmtoken02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpmtoken03.sh b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken03.sh new file mode 100755 index 0000000..38d2a4e --- /dev/null +++ b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-178448978 +# @用例名称: ltp.tpm_tools.tpmtoken03 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tpm_tools.tpmtoken03 + # @预期结果:1: 用例返回0 + ltp_run_testcase tpm_tools tpmtoken03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpmtoken04.sh b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken04.sh new file mode 100755 index 0000000..17292ea --- /dev/null +++ b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-187071905 +# @用例名称: ltp.tpm_tools.tpmtoken04 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tpm_tools.tpmtoken04 + # @预期结果:1: 用例返回0 + ltp_run_testcase tpm_tools tpmtoken04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpmtoken05.sh b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken05.sh new file mode 100755 index 0000000..f18531f --- /dev/null +++ b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-195763341 +# @用例名称: ltp.tpm_tools.tpmtoken05 +# @用例级别: 1 +# @用例标签: TK4不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tpm_tools.tpmtoken05 + # @预期结果:1: 用例返回0 + ltp_run_testcase tpm_tools tpmtoken05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tracing/ltp.tracing.dynamic_debug01.sh b/testcase/tracing/ltp.tracing.dynamic_debug01.sh new file mode 100755 index 0000000..a36aae6 --- /dev/null +++ b/testcase/tracing/ltp.tracing.dynamic_debug01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-242025161 +# @用例名称: ltp.tracing.dynamic_debug01 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tracing.dynamic_debug01 + # @预期结果:1: 用例返回0 + ltp_run_testcase tracing dynamic_debug01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tracing/ltp.tracing.ftrace-stress-test.sh b/testcase/tracing/ltp.tracing.ftrace-stress-test.sh new file mode 100755 index 0000000..8201f90 --- /dev/null +++ b/testcase/tracing/ltp.tracing.ftrace-stress-test.sh @@ -0,0 +1,42 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-233258183 +# @用例名称: ltp.tracing.ftrace-stress-test +# @用例级别: 3 +# @用例标签: 待分析 +# @超时时间: 180 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tracing.ftrace-stress-test + # @预期结果:1: 用例返回0 + ltp_run_testcase tracing ftrace-stress-test + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tracing/ltp.tracing.ftrace_regression01.sh b/testcase/tracing/ltp.tracing.ftrace_regression01.sh new file mode 100755 index 0000000..9a0d528 --- /dev/null +++ b/testcase/tracing/ltp.tracing.ftrace_regression01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-215861114 +# @用例名称: ltp.tracing.ftrace_regression01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tracing.ftrace_regression01 + # @预期结果:1: 用例返回0 + ltp_run_testcase tracing ftrace_regression01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tracing/ltp.tracing.ftrace_regression02.sh b/testcase/tracing/ltp.tracing.ftrace_regression02.sh new file mode 100755 index 0000000..c905026 --- /dev/null +++ b/testcase/tracing/ltp.tracing.ftrace_regression02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-224542140 +# @用例名称: ltp.tracing.ftrace_regression02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tracing.ftrace_regression02 + # @预期结果:1: 用例返回0 + ltp_run_testcase tracing ftrace_regression02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tracing/ltp.tracing.pt_disable_branch.sh b/testcase/tracing/ltp.tracing.pt_disable_branch.sh new file mode 100755 index 0000000..dc065a9 --- /dev/null +++ b/testcase/tracing/ltp.tracing.pt_disable_branch.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-286555579 +# @用例名称: ltp.tracing.pt_disable_branch +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tracing.pt_disable_branch + # @预期结果:1: 用例返回0 + ltp_run_testcase tracing pt_disable_branch + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tracing/ltp.tracing.pt_ex_kernel.sh b/testcase/tracing/ltp.tracing.pt_ex_kernel.sh new file mode 100755 index 0000000..0633d0e --- /dev/null +++ b/testcase/tracing/ltp.tracing.pt_ex_kernel.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-277958580 +# @用例名称: ltp.tracing.pt_ex_kernel +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tracing.pt_ex_kernel + # @预期结果:1: 用例返回0 + ltp_run_testcase tracing pt_ex_kernel + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tracing/ltp.tracing.pt_ex_user.sh b/testcase/tracing/ltp.tracing.pt_ex_user.sh new file mode 100755 index 0000000..c080b08 --- /dev/null +++ b/testcase/tracing/ltp.tracing.pt_ex_user.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-269203415 +# @用例名称: ltp.tracing.pt_ex_user +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tracing.pt_ex_user + # @预期结果:1: 用例返回0 + ltp_run_testcase tracing pt_ex_user + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tracing/ltp.tracing.pt_full_trace_basic.sh b/testcase/tracing/ltp.tracing.pt_full_trace_basic.sh new file mode 100755 index 0000000..e3a9b09 --- /dev/null +++ b/testcase/tracing/ltp.tracing.pt_full_trace_basic.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-250699284 +# @用例名称: ltp.tracing.pt_full_trace_basic +# @用例级别: 4 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tracing.pt_full_trace_basic + # @预期结果:1: 用例返回0 + ltp_run_testcase tracing pt_full_trace_basic + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/tracing/ltp.tracing.pt_snapshot_trace_basic.sh b/testcase/tracing/ltp.tracing.pt_snapshot_trace_basic.sh new file mode 100755 index 0000000..183833d --- /dev/null +++ b/testcase/tracing/ltp.tracing.pt_snapshot_trace_basic.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-260358501 +# @用例名称: ltp.tracing.pt_snapshot_trace_basic +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.tracing.pt_snapshot_trace_basic + # @预期结果:1: 用例返回0 + ltp_run_testcase tracing pt_snapshot_trace_basic + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/uevent/ltp.uevent.uevent01.sh b/testcase/uevent/ltp.uevent.uevent01.sh new file mode 100755 index 0000000..bd57889 --- /dev/null +++ b/testcase/uevent/ltp.uevent.uevent01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-296873820 +# @用例名称: ltp.uevent.uevent01 +# @用例级别: 0 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.uevent.uevent01 + # @预期结果:1: 用例返回0 + ltp_run_testcase uevent uevent01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/uevent/ltp.uevent.uevent02.sh b/testcase/uevent/ltp.uevent.uevent02.sh new file mode 100755 index 0000000..2183d44 --- /dev/null +++ b/testcase/uevent/ltp.uevent.uevent02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-306889645 +# @用例名称: ltp.uevent.uevent02 +# @用例级别: 1 +# @用例标签: +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.uevent.uevent02 + # @预期结果:1: 用例返回0 + ltp_run_testcase uevent uevent02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/uevent/ltp.uevent.uevent03.sh b/testcase/uevent/ltp.uevent.uevent03.sh new file mode 100755 index 0000000..3f5b72a --- /dev/null +++ b/testcase/uevent/ltp.uevent.uevent03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20220630-213025-317224286 +# @用例名称: ltp.uevent.uevent03 +# @用例级别: 1 +# @用例标签: eks不支持 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.uevent.uevent03 + # @预期结果:1: 用例返回0 + ltp_run_testcase uevent uevent03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue01.sh b/testcase/watchqueue/ltp.watchqueue.wqueue01.sh new file mode 100755 index 0000000..344899f --- /dev/null +++ b/testcase/watchqueue/ltp.watchqueue.wqueue01.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141853-940084933 +# @用例名称: ltp.watchqueue.wqueue01 +# @用例级别: 3 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.watchqueue.wqueue01 + # @预期结果:1: 用例返回0 + ltp_run_testcase watchqueue wqueue01 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue02.sh b/testcase/watchqueue/ltp.watchqueue.wqueue02.sh new file mode 100755 index 0000000..e890770 --- /dev/null +++ b/testcase/watchqueue/ltp.watchqueue.wqueue02.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141854-004900642 +# @用例名称: ltp.watchqueue.wqueue02 +# @用例级别: 3 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.watchqueue.wqueue02 + # @预期结果:1: 用例返回0 + ltp_run_testcase watchqueue wqueue02 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue03.sh b/testcase/watchqueue/ltp.watchqueue.wqueue03.sh new file mode 100755 index 0000000..5baa587 --- /dev/null +++ b/testcase/watchqueue/ltp.watchqueue.wqueue03.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141854-070528969 +# @用例名称: ltp.watchqueue.wqueue03 +# @用例级别: 3 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.watchqueue.wqueue03 + # @预期结果:1: 用例返回0 + ltp_run_testcase watchqueue wqueue03 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue04.sh b/testcase/watchqueue/ltp.watchqueue.wqueue04.sh new file mode 100755 index 0000000..dac1949 --- /dev/null +++ b/testcase/watchqueue/ltp.watchqueue.wqueue04.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141854-134837531 +# @用例名称: ltp.watchqueue.wqueue04 +# @用例级别: 3 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.watchqueue.wqueue04 + # @预期结果:1: 用例返回0 + ltp_run_testcase watchqueue wqueue04 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue05.sh b/testcase/watchqueue/ltp.watchqueue.wqueue05.sh new file mode 100755 index 0000000..6f67ed1 --- /dev/null +++ b/testcase/watchqueue/ltp.watchqueue.wqueue05.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141854-198165952 +# @用例名称: ltp.watchqueue.wqueue05 +# @用例级别: 3 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.watchqueue.wqueue05 + # @预期结果:1: 用例返回0 + ltp_run_testcase watchqueue wqueue05 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue06.sh b/testcase/watchqueue/ltp.watchqueue.wqueue06.sh new file mode 100755 index 0000000..ccd8f86 --- /dev/null +++ b/testcase/watchqueue/ltp.watchqueue.wqueue06.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141854-261030766 +# @用例名称: ltp.watchqueue.wqueue06 +# @用例级别: 3 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.watchqueue.wqueue06 + # @预期结果:1: 用例返回0 + ltp_run_testcase watchqueue wqueue06 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue07.sh b/testcase/watchqueue/ltp.watchqueue.wqueue07.sh new file mode 100755 index 0000000..939ae6e --- /dev/null +++ b/testcase/watchqueue/ltp.watchqueue.wqueue07.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141854-324533515 +# @用例名称: ltp.watchqueue.wqueue07 +# @用例级别: 3 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.watchqueue.wqueue07 + # @预期结果:1: 用例返回0 + ltp_run_testcase watchqueue wqueue07 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue08.sh b/testcase/watchqueue/ltp.watchqueue.wqueue08.sh new file mode 100755 index 0000000..3cece75 --- /dev/null +++ b/testcase/watchqueue/ltp.watchqueue.wqueue08.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141854-388569857 +# @用例名称: ltp.watchqueue.wqueue08 +# @用例级别: 3 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.watchqueue.wqueue08 + # @预期结果:1: 用例返回0 + ltp_run_testcase watchqueue wqueue08 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue09.sh b/testcase/watchqueue/ltp.watchqueue.wqueue09.sh new file mode 100755 index 0000000..df6676c --- /dev/null +++ b/testcase/watchqueue/ltp.watchqueue.wqueue09.sh @@ -0,0 +1,41 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20230705-141854-453383380 +# @用例名称: ltp.watchqueue.wqueue09 +# @用例级别: 3 +# @用例标签: 待分析 +# @用例类型: 功能测试 +# @自动化: 1 +############################################################################### +[ -z "$TST_TS_TOPDIR" ] && { + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" + export TST_TS_TOPDIR +} +source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +############################################################################### + +tc_setup() { + msg "this is tc_setup" + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.watchqueue.wqueue09 + # @预期结果:1: 用例返回0 + ltp_run_testcase watchqueue wqueue09 + assert_true [ $? -eq 0 ] + + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### -- Gitee From 4fadaa1f8f31637ab244c43400bb52151ca6364b Mon Sep 17 00:00:00 2001 From: propelluo Date: Mon, 21 Jul 2025 17:36:21 +0800 Subject: [PATCH 4/9] update setup function Signed-off-by: propelluo --- lib/ts_common.sh | 3 +++ lib/ts_setup | 34 +++++++++++++++++++++++++++++++++- 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/lib/ts_common.sh b/lib/ts_common.sh index 1c83669..dabd0d9 100644 --- a/lib/ts_common.sh +++ b/lib/ts_common.sh @@ -35,6 +35,9 @@ ts_setup() { # 设置机器超时时间 setup_env_var LTP_TIMEOUT_MUL "300" + # 创建测试目录 + mkdir -p "$g_test_dir" + # 创建scsi用例所需路径 mkdir -p /test/growfiles return 0 diff --git a/lib/ts_setup b/lib/ts_setup index 3aaab92..c34cc82 100755 --- a/lib/ts_setup +++ b/lib/ts_setup @@ -4,9 +4,41 @@ [ -z "$TST_TS_TOPDIR" ] && export TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" source "${TST_TS_TOPDIR}/common/lib/common.sh" +g_test_dir="${TST_TS_TOPDIR}/ltp.test" + ts_setup() { - # 测试套setup脚本,在这里增加setup操作 msg "this is ts_setup" + + # 安装测试所需但缺失的软件包 + yum -y install libaio* + yum -y install libcap* + yum -y install genisoimage + yum -y install iproute-tc* + yum -y install dnsmasq* + yum -y install rpcbind nfs-utils bind + yum -y install httpd* + yum -y install vsftpd + yum -y install libmnl* + yum -y install dhcp* + yum -y install telnet* + yum -y install libcap* + yum -y install acl-debugsource libacl-devel + yum -y install git + yum -y install gcc cmake automake autoconf + yum -y install vim + + # 启动测试所需的服务 + systemctl start nfs-server.service + systemctl enable nfs-server.service + + # 设置机器超时时间 + setup_env_var LTP_TIMEOUT_MUL "300" + + # 创建测试目录 + mkdir -p "$g_test_dir" + + # 创建scsi用例所需路径 + mkdir -p /test/growfiles return 0 } -- Gitee From 7582551c713932a2e678bd904b0fc8f8fa6d8452 Mon Sep 17 00:00:00 2001 From: propelluo Date: Mon, 21 Jul 2025 19:56:11 +0800 Subject: [PATCH 5/9] replace tst_common with common in testcase Signed-off-by: propelluo --- testcase/can/ltp.can.can_bcm01.sh | 2 +- testcase/can/ltp.can.can_filter.sh | 2 +- testcase/can/ltp.can.can_rcv_own_msgs.sh | 2 +- testcase/capability/ltp.capability.cap_bounds.sh | 4 ++-- testcase/capability/ltp.capability.check_keepcaps01.sh | 4 ++-- testcase/capability/ltp.capability.check_keepcaps02.sh | 4 ++-- testcase/capability/ltp.capability.check_keepcaps03.sh | 4 ++-- testcase/capability/ltp.capability.filecaps.sh | 4 ++-- testcase/commands/ltp.commands.ar_sh.sh | 2 +- testcase/commands/ltp.commands.cp01_sh.sh | 2 +- testcase/commands/ltp.commands.cpio01_sh.sh | 2 +- testcase/commands/ltp.commands.df01_sh.sh | 2 +- testcase/commands/ltp.commands.du01_sh.sh | 2 +- testcase/commands/ltp.commands.file01_sh.sh | 2 +- testcase/commands/ltp.commands.gdb01_sh.sh | 2 +- testcase/commands/ltp.commands.gzip01_sh.sh | 2 +- testcase/commands/ltp.commands.insmod01_sh.sh | 2 +- testcase/commands/ltp.commands.keyctl01_sh.sh | 2 +- testcase/commands/ltp.commands.ld01_sh.sh | 2 +- testcase/commands/ltp.commands.ldd01_sh.sh | 2 +- testcase/commands/ltp.commands.ln01_sh.sh | 2 +- testcase/commands/ltp.commands.logrotate_sh.sh | 2 +- testcase/commands/ltp.commands.lsmod01_sh.sh | 2 +- testcase/commands/ltp.commands.mkdir01_sh.sh | 2 +- testcase/commands/ltp.commands.mkfs01_btrfs_sh.sh | 2 +- testcase/commands/ltp.commands.mkfs01_ext2_sh.sh | 2 +- testcase/commands/ltp.commands.mkfs01_ext3_sh.sh | 2 +- testcase/commands/ltp.commands.mkfs01_ext4_sh.sh | 2 +- testcase/commands/ltp.commands.mkfs01_minix_sh.sh | 2 +- testcase/commands/ltp.commands.mkfs01_msdos_sh.sh | 2 +- testcase/commands/ltp.commands.mkfs01_ntfs_sh.sh | 2 +- testcase/commands/ltp.commands.mkfs01_sh.sh | 2 +- testcase/commands/ltp.commands.mkfs01_vfat_sh.sh | 2 +- testcase/commands/ltp.commands.mkfs01_xfs_sh.sh | 2 +- testcase/commands/ltp.commands.mkswap01_sh.sh | 2 +- testcase/commands/ltp.commands.mv01_sh.sh | 2 +- testcase/commands/ltp.commands.nm01_sh.sh | 2 +- testcase/commands/ltp.commands.shell_test01.sh | 2 +- testcase/commands/ltp.commands.sysctl01_sh.sh | 2 +- testcase/commands/ltp.commands.sysctl02_sh.sh | 2 +- testcase/commands/ltp.commands.tar01_sh.sh | 2 +- testcase/commands/ltp.commands.unshare01_sh.sh | 2 +- testcase/commands/ltp.commands.unzip01_sh.sh | 2 +- testcase/commands/ltp.commands.wc01_sh.sh | 2 +- testcase/commands/ltp.commands.which01_sh.sh | 2 +- testcase/containers/ltp.containers.clock_gettime03.sh | 2 +- testcase/containers/ltp.containers.clock_nanosleep03.sh | 2 +- testcase/containers/ltp.containers.mesgq_nstest_clone.sh | 2 +- testcase/containers/ltp.containers.mesgq_nstest_none.sh | 2 +- testcase/containers/ltp.containers.mesgq_nstest_unshare.sh | 2 +- testcase/containers/ltp.containers.mountns01.sh | 2 +- testcase/containers/ltp.containers.mountns02.sh | 2 +- testcase/containers/ltp.containers.mountns03.sh | 2 +- testcase/containers/ltp.containers.mountns04.sh | 2 +- testcase/containers/ltp.containers.mqns_01.sh | 2 +- testcase/containers/ltp.containers.mqns_01_clone.sh | 2 +- testcase/containers/ltp.containers.mqns_01_unshare.sh | 4 ++-- testcase/containers/ltp.containers.mqns_02.sh | 2 +- testcase/containers/ltp.containers.mqns_02_clone.sh | 2 +- testcase/containers/ltp.containers.mqns_02_unshare.sh | 4 ++-- testcase/containers/ltp.containers.mqns_03_clone.sh | 2 +- testcase/containers/ltp.containers.mqns_03_unshare.sh | 4 ++-- testcase/containers/ltp.containers.mqns_04_clone.sh | 2 +- testcase/containers/ltp.containers.mqns_04_unshare.sh | 4 ++-- testcase/containers/ltp.containers.msg_comm.sh | 2 +- .../containers/ltp.containers.netns_breakns_ip_ipv4_ioctl.sh | 2 +- .../ltp.containers.netns_breakns_ip_ipv4_netlink.sh | 2 +- .../containers/ltp.containers.netns_breakns_ip_ipv6_ioctl.sh | 2 +- .../ltp.containers.netns_breakns_ip_ipv6_netlink.sh | 2 +- .../ltp.containers.netns_breakns_ns_exec_ipv4_ioctl.sh | 2 +- .../ltp.containers.netns_breakns_ns_exec_ipv4_netlink.sh | 2 +- .../ltp.containers.netns_breakns_ns_exec_ipv6_ioctl.sh | 2 +- .../ltp.containers.netns_breakns_ns_exec_ipv6_netlink.sh | 2 +- .../containers/ltp.containers.netns_comm_ip_ipv4_ioctl.sh | 2 +- .../containers/ltp.containers.netns_comm_ip_ipv4_netlink.sh | 2 +- .../containers/ltp.containers.netns_comm_ip_ipv6_ioctl.sh | 2 +- .../containers/ltp.containers.netns_comm_ip_ipv6_netlink.sh | 2 +- .../ltp.containers.netns_comm_ns_exec_ipv4_ioctl.sh | 2 +- .../ltp.containers.netns_comm_ns_exec_ipv4_netlink.sh | 2 +- .../ltp.containers.netns_comm_ns_exec_ipv6_ioctl.sh | 2 +- .../ltp.containers.netns_comm_ns_exec_ipv6_netlink.sh | 2 +- testcase/containers/ltp.containers.netns_netlink.sh | 2 +- testcase/containers/ltp.containers.netns_sysfs.sh | 2 +- testcase/containers/ltp.containers.pidns01.sh | 2 +- testcase/containers/ltp.containers.pidns02.sh | 2 +- testcase/containers/ltp.containers.pidns03.sh | 2 +- testcase/containers/ltp.containers.pidns04.sh | 2 +- testcase/containers/ltp.containers.pidns05.sh | 2 +- testcase/containers/ltp.containers.pidns06.sh | 2 +- testcase/containers/ltp.containers.pidns10.sh | 2 +- testcase/containers/ltp.containers.pidns12.sh | 2 +- testcase/containers/ltp.containers.pidns13.sh | 2 +- testcase/containers/ltp.containers.pidns16.sh | 2 +- testcase/containers/ltp.containers.pidns17.sh | 2 +- testcase/containers/ltp.containers.pidns20.sh | 2 +- testcase/containers/ltp.containers.pidns30.sh | 2 +- testcase/containers/ltp.containers.pidns31.sh | 2 +- testcase/containers/ltp.containers.pidns32.sh | 2 +- testcase/containers/ltp.containers.sem_comm.sh | 2 +- testcase/containers/ltp.containers.sem_nstest_clone.sh | 2 +- testcase/containers/ltp.containers.sem_nstest_none.sh | 2 +- testcase/containers/ltp.containers.sem_nstest_unshare.sh | 2 +- testcase/containers/ltp.containers.semtest_2ns_clone.sh | 2 +- testcase/containers/ltp.containers.semtest_2ns_none.sh | 2 +- testcase/containers/ltp.containers.semtest_2ns_unshare.sh | 2 +- testcase/containers/ltp.containers.shm_comm.sh | 2 +- testcase/containers/ltp.containers.shmem_2nstest_clone.sh | 2 +- testcase/containers/ltp.containers.shmem_2nstest_none.sh | 2 +- testcase/containers/ltp.containers.shmem_2nstest_unshare.sh | 2 +- testcase/containers/ltp.containers.shmnstest_clone.sh | 2 +- testcase/containers/ltp.containers.shmnstest_none.sh | 2 +- testcase/containers/ltp.containers.shmnstest_unshare.sh | 2 +- testcase/containers/ltp.containers.sysinfo03.sh | 2 +- testcase/containers/ltp.containers.timens01.sh | 2 +- testcase/containers/ltp.containers.timerfd04.sh | 2 +- testcase/containers/ltp.containers.userns01.sh | 2 +- testcase/containers/ltp.containers.userns02.sh | 2 +- testcase/containers/ltp.containers.userns03.sh | 2 +- testcase/containers/ltp.containers.userns04.sh | 2 +- testcase/containers/ltp.containers.userns05.sh | 2 +- testcase/containers/ltp.containers.userns06.sh | 2 +- testcase/containers/ltp.containers.userns07.sh | 2 +- testcase/containers/ltp.containers.userns08.sh | 2 +- testcase/containers/ltp.containers.utsname01.sh | 2 +- testcase/containers/ltp.containers.utsname02.sh | 2 +- testcase/containers/ltp.containers.utsname03_clone.sh | 2 +- testcase/containers/ltp.containers.utsname03_unshare.sh | 2 +- testcase/containers/ltp.containers.utsname04_clone.sh | 2 +- testcase/containers/ltp.containers.utsname04_unshare.sh | 2 +- testcase/controllers/ltp.controllers.cgroup.sh | 2 +- testcase/controllers/ltp.controllers.cgroup_core01.sh | 2 +- testcase/controllers/ltp.controllers.cgroup_core02.sh | 2 +- testcase/controllers/ltp.controllers.cgroup_core03.sh | 2 +- .../controllers/ltp.controllers.cgroup_fj_function_blkio.sh | 2 +- .../controllers/ltp.controllers.cgroup_fj_function_cpu.sh | 2 +- .../controllers/ltp.controllers.cgroup_fj_function_cpuacct.sh | 2 +- .../controllers/ltp.controllers.cgroup_fj_function_cpuset.sh | 2 +- .../controllers/ltp.controllers.cgroup_fj_function_debug.sh | 2 +- .../controllers/ltp.controllers.cgroup_fj_function_devices.sh | 2 +- .../controllers/ltp.controllers.cgroup_fj_function_freezer.sh | 2 +- .../controllers/ltp.controllers.cgroup_fj_function_hugetlb.sh | 2 +- .../controllers/ltp.controllers.cgroup_fj_function_memory.sh | 2 +- .../controllers/ltp.controllers.cgroup_fj_function_net_cls.sh | 2 +- .../ltp.controllers.cgroup_fj_function_net_prio.sh | 2 +- .../ltp.controllers.cgroup_fj_function_perf_event.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_10_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_10_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_10_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_1_200_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_1_200_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_1_200_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_200_1_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_200_1_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_200_1_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_2_2_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_2_2_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_2_2_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_2_9_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_2_9_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_2_9_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_3_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_3_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_3_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_4_4_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_4_4_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_blkio_4_4_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_10_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_10_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_10_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_1_200_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_1_200_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_1_200_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_200_1_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_200_1_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_200_1_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_2_2_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_2_2_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_2_2_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_2_9_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_2_9_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_2_9_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_3_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_3_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_3_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_4_4_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_4_4_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpu_4_4_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_10_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_10_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_10_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_1_200_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_1_200_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_1_200_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_200_1_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_200_1_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_200_1_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_2_2_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_2_2_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_2_2_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_2_9_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_2_9_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_2_9_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_3_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_3_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_3_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_4_4_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_4_4_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuacct_4_4_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_10_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_10_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_10_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_1_200_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_1_200_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_1_200_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_200_1_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_200_1_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_200_1_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_2_2_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_2_2_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_2_2_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_2_9_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_2_9_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_2_9_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_3_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_3_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_3_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_4_4_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_4_4_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_cpuset_4_4_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_10_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_10_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_10_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_1_200_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_1_200_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_1_200_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_200_1_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_200_1_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_200_1_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_2_2_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_2_2_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_2_2_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_2_9_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_2_9_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_2_9_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_3_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_3_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_3_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_4_4_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_4_4_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_debug_4_4_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_10_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_10_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_10_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_1_200_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_1_200_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_1_200_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_200_1_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_200_1_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_200_1_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_2_2_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_2_2_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_2_2_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_2_9_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_2_9_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_2_9_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_3_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_3_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_3_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_4_4_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_4_4_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_devices_4_4_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_10_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_10_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_10_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_1_200_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_1_200_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_1_200_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_200_1_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_200_1_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_200_1_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_2_2_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_2_2_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_2_2_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_2_9_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_2_9_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_2_9_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_3_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_3_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_3_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_4_4_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_4_4_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_freezer_4_4_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_10_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_10_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_10_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_1_200_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_1_200_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_1_200_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_200_1_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_200_1_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_200_1_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_2_2_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_2_2_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_2_2_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_2_9_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_2_9_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_2_9_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_3_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_3_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_3_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_4_4_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_4_4_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_hugetlb_4_4_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_10_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_10_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_10_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_1_200_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_1_200_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_1_200_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_200_1_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_200_1_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_200_1_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_2_2_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_2_2_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_2_2_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_2_9_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_2_9_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_2_9_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_3_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_3_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_3_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_4_4_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_4_4_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_memory_4_4_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_10_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_10_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_10_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_1_200_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_1_200_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_1_200_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_200_1_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_200_1_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_200_1_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_2_2_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_2_2_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_2_2_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_2_9_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_2_9_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_2_9_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_3_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_3_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_3_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_4_4_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_4_4_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_cls_4_4_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_10_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_10_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_10_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_1_200_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_1_200_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_1_200_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_200_1_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_200_1_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_200_1_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_2_2_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_2_2_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_2_2_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_2_9_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_2_9_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_2_9_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_3_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_3_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_3_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_4_4_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_4_4_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_net_prio_4_4_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_10_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_10_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_10_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_1_200_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_1_200_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_1_200_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_200_1_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_200_1_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_200_1_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_2_2_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_2_2_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_2_2_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_2_9_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_2_9_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_2_9_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_3_3_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_3_3_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_3_3_one.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_4_4_each.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_4_4_none.sh | 2 +- .../ltp.controllers.cgroup_fj_stress_perf_event_4_4_one.sh | 2 +- testcase/controllers/ltp.controllers.cgroup_xattr.sh | 2 +- testcase/controllers/ltp.controllers.controllers.sh | 2 +- testcase/controllers/ltp.controllers.cpuacct_100_1.sh | 2 +- testcase/controllers/ltp.controllers.cpuacct_100_100.sh | 2 +- testcase/controllers/ltp.controllers.cpuacct_10_10.sh | 2 +- testcase/controllers/ltp.controllers.cpuacct_1_1.sh | 2 +- testcase/controllers/ltp.controllers.cpuacct_1_10.sh | 2 +- testcase/controllers/ltp.controllers.cpuacct_1_100.sh | 2 +- testcase/controllers/ltp.controllers.cpuset_base_ops.sh | 2 +- testcase/controllers/ltp.controllers.cpuset_exclusive.sh | 2 +- testcase/controllers/ltp.controllers.cpuset_hierarchy.sh | 2 +- testcase/controllers/ltp.controllers.cpuset_hotplug.sh | 2 +- testcase/controllers/ltp.controllers.cpuset_inherit.sh | 2 +- testcase/controllers/ltp.controllers.cpuset_load_balance.sh | 2 +- testcase/controllers/ltp.controllers.cpuset_memory.sh | 2 +- .../controllers/ltp.controllers.cpuset_memory_pressure.sh | 2 +- testcase/controllers/ltp.controllers.cpuset_memory_spread.sh | 2 +- .../controllers/ltp.controllers.cpuset_regression_test.sh | 2 +- testcase/controllers/ltp.controllers.cpuset_sched_domains.sh | 2 +- testcase/controllers/ltp.controllers.cpuset_syscall.sh | 2 +- testcase/controllers/ltp.controllers.io_control01.sh | 2 +- testcase/controllers/ltp.controllers.memcg_control.sh | 2 +- testcase/controllers/ltp.controllers.memcg_failcnt.sh | 2 +- testcase/controllers/ltp.controllers.memcg_force_empty.sh | 2 +- testcase/controllers/ltp.controllers.memcg_limit_in_bytes.sh | 2 +- .../controllers/ltp.controllers.memcg_max_usage_in_bytes.sh | 2 +- .../controllers/ltp.controllers.memcg_memsw_limit_in_bytes.sh | 2 +- .../ltp.controllers.memcg_move_charge_at_immigrate.sh | 2 +- testcase/controllers/ltp.controllers.memcg_regression.sh | 2 +- testcase/controllers/ltp.controllers.memcg_stat.sh | 2 +- testcase/controllers/ltp.controllers.memcg_stat_rss.sh | 2 +- testcase/controllers/ltp.controllers.memcg_stress.sh | 2 +- testcase/controllers/ltp.controllers.memcg_subgroup_charge.sh | 2 +- testcase/controllers/ltp.controllers.memcg_test_3.sh | 2 +- testcase/controllers/ltp.controllers.memcg_usage_in_bytes.sh | 2 +- testcase/controllers/ltp.controllers.memcg_use_hierarchy.sh | 2 +- testcase/controllers/ltp.controllers.memcontrol01.sh | 2 +- testcase/controllers/ltp.controllers.memcontrol02.sh | 2 +- testcase/controllers/ltp.controllers.memcontrol03.sh | 2 +- testcase/controllers/ltp.controllers.memcontrol04.sh | 2 +- testcase/controllers/ltp.controllers.pids_1_1.sh | 2 +- testcase/controllers/ltp.controllers.pids_1_10.sh | 2 +- testcase/controllers/ltp.controllers.pids_1_100.sh | 2 +- testcase/controllers/ltp.controllers.pids_1_2.sh | 2 +- testcase/controllers/ltp.controllers.pids_1_50.sh | 2 +- testcase/controllers/ltp.controllers.pids_2_1.sh | 2 +- testcase/controllers/ltp.controllers.pids_2_10.sh | 2 +- testcase/controllers/ltp.controllers.pids_2_100.sh | 2 +- testcase/controllers/ltp.controllers.pids_2_2.sh | 2 +- testcase/controllers/ltp.controllers.pids_2_50.sh | 2 +- testcase/controllers/ltp.controllers.pids_3_0.sh | 2 +- testcase/controllers/ltp.controllers.pids_3_1.sh | 2 +- testcase/controllers/ltp.controllers.pids_3_10.sh | 2 +- testcase/controllers/ltp.controllers.pids_3_100.sh | 2 +- testcase/controllers/ltp.controllers.pids_3_50.sh | 2 +- testcase/controllers/ltp.controllers.pids_4_1.sh | 2 +- testcase/controllers/ltp.controllers.pids_4_10.sh | 2 +- testcase/controllers/ltp.controllers.pids_4_100.sh | 2 +- testcase/controllers/ltp.controllers.pids_4_2.sh | 2 +- testcase/controllers/ltp.controllers.pids_4_50.sh | 2 +- testcase/controllers/ltp.controllers.pids_5_1.sh | 2 +- testcase/controllers/ltp.controllers.pids_6_1.sh | 2 +- testcase/controllers/ltp.controllers.pids_6_10.sh | 2 +- testcase/controllers/ltp.controllers.pids_6_100.sh | 2 +- testcase/controllers/ltp.controllers.pids_6_2.sh | 2 +- testcase/controllers/ltp.controllers.pids_6_50.sh | 2 +- testcase/controllers/ltp.controllers.pids_7_10.sh | 2 +- testcase/controllers/ltp.controllers.pids_7_100.sh | 2 +- testcase/controllers/ltp.controllers.pids_7_1000.sh | 2 +- testcase/controllers/ltp.controllers.pids_7_50.sh | 2 +- testcase/controllers/ltp.controllers.pids_7_500.sh | 2 +- testcase/controllers/ltp.controllers.pids_8_10.sh | 2 +- testcase/controllers/ltp.controllers.pids_8_100.sh | 2 +- testcase/controllers/ltp.controllers.pids_8_2.sh | 2 +- testcase/controllers/ltp.controllers.pids_8_50.sh | 2 +- testcase/controllers/ltp.controllers.pids_9_10.sh | 2 +- testcase/controllers/ltp.controllers.pids_9_100.sh | 2 +- testcase/controllers/ltp.controllers.pids_9_2.sh | 2 +- testcase/controllers/ltp.controllers.pids_9_50.sh | 2 +- testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug02.sh | 2 +- testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug03.sh | 2 +- testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug04.sh | 2 +- testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug05.sh | 2 +- testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug06.sh | 2 +- testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug07.sh | 2 +- testcase/crashme/ltp.crashme.crash01.sh | 2 +- testcase/crashme/ltp.crashme.crash02.sh | 2 +- testcase/crashme/ltp.crashme.f00f.sh | 2 +- testcase/crypto/ltp.crypto.af_alg01.sh | 2 +- testcase/crypto/ltp.crypto.af_alg02.sh | 2 +- testcase/crypto/ltp.crypto.af_alg03.sh | 2 +- testcase/crypto/ltp.crypto.af_alg04.sh | 2 +- testcase/crypto/ltp.crypto.af_alg05.sh | 2 +- testcase/crypto/ltp.crypto.af_alg06.sh | 2 +- testcase/crypto/ltp.crypto.af_alg07.sh | 2 +- testcase/crypto/ltp.crypto.crypto_user01.sh | 2 +- testcase/crypto/ltp.crypto.crypto_user02.sh | 2 +- testcase/crypto/ltp.crypto.pcrypt_aead01.sh | 2 +- testcase/cve/ltp.cve.cve-2011-0999.sh | 2 +- testcase/cve/ltp.cve.cve-2011-2183.sh | 2 +- testcase/cve/ltp.cve.cve-2011-2496.sh | 2 +- testcase/cve/ltp.cve.cve-2012-0957.sh | 2 +- testcase/cve/ltp.cve.cve-2014-0196.sh | 2 +- testcase/cve/ltp.cve.cve-2015-0235.sh | 2 +- testcase/cve/ltp.cve.cve-2015-3290.sh | 2 +- testcase/cve/ltp.cve.cve-2015-7550.sh | 2 +- testcase/cve/ltp.cve.cve-2016-10044.sh | 2 +- testcase/cve/ltp.cve.cve-2016-4470.sh | 2 +- testcase/cve/ltp.cve.cve-2016-4997.sh | 2 +- testcase/cve/ltp.cve.cve-2016-5195.sh | 2 +- testcase/cve/ltp.cve.cve-2016-7042.sh | 2 +- testcase/cve/ltp.cve.cve-2016-7117.sh | 2 +- testcase/cve/ltp.cve.cve-2016-8655.sh | 2 +- testcase/cve/ltp.cve.cve-2016-9604.sh | 2 +- testcase/cve/ltp.cve.cve-2016-9793.sh | 2 +- testcase/cve/ltp.cve.cve-2017-1000111.sh | 2 +- testcase/cve/ltp.cve.cve-2017-1000112.sh | 2 +- testcase/cve/ltp.cve.cve-2017-1000364.sh | 2 +- testcase/cve/ltp.cve.cve-2017-1000380.sh | 2 +- testcase/cve/ltp.cve.cve-2017-1000405.sh | 2 +- testcase/cve/ltp.cve.cve-2017-10661.sh | 2 +- testcase/cve/ltp.cve.cve-2017-12192.sh | 2 +- testcase/cve/ltp.cve.cve-2017-12193.sh | 2 +- testcase/cve/ltp.cve.cve-2017-15274.sh | 2 +- testcase/cve/ltp.cve.cve-2017-15299.sh | 2 +- testcase/cve/ltp.cve.cve-2017-15537.sh | 2 +- testcase/cve/ltp.cve.cve-2017-15649.sh | 2 +- testcase/cve/ltp.cve.cve-2017-15951.sh | 2 +- testcase/cve/ltp.cve.cve-2017-16939.sh | 2 +- testcase/cve/ltp.cve.cve-2017-16995.sh | 2 +- testcase/cve/ltp.cve.cve-2017-17052.sh | 2 +- testcase/cve/ltp.cve.cve-2017-17053.sh | 2 +- testcase/cve/ltp.cve.cve-2017-17712.sh | 2 +- testcase/cve/ltp.cve.cve-2017-17805.sh | 2 +- testcase/cve/ltp.cve.cve-2017-17806.sh | 2 +- testcase/cve/ltp.cve.cve-2017-17807.sh | 2 +- testcase/cve/ltp.cve.cve-2017-18075.sh | 2 +- testcase/cve/ltp.cve.cve-2017-18344.sh | 4 ++-- testcase/cve/ltp.cve.cve-2017-2618.sh | 2 +- testcase/cve/ltp.cve.cve-2017-2636.sh | 2 +- testcase/cve/ltp.cve.cve-2017-2671.sh | 2 +- testcase/cve/ltp.cve.cve-2017-5754.sh | 2 +- testcase/cve/ltp.cve.cve-2017-6951.sh | 2 +- testcase/cve/ltp.cve.cve-2017-7308.sh | 2 +- testcase/cve/ltp.cve.cve-2017-7472.sh | 2 +- testcase/cve/ltp.cve.cve-2017-7616.sh | 2 +- testcase/cve/ltp.cve.cve-2017-8890.sh | 4 ++-- testcase/cve/ltp.cve.cve-2018-1000001.sh | 2 +- testcase/cve/ltp.cve.cve-2018-1000199.sh | 2 +- testcase/cve/ltp.cve.cve-2018-1000204.sh | 2 +- testcase/cve/ltp.cve.cve-2018-10124.sh | 2 +- testcase/cve/ltp.cve.cve-2018-11508.sh | 4 ++-- testcase/cve/ltp.cve.cve-2018-12896.sh | 2 +- testcase/cve/ltp.cve.cve-2018-13405.sh | 2 +- testcase/cve/ltp.cve.cve-2018-18445.sh | 2 +- testcase/cve/ltp.cve.cve-2018-18559.sh | 2 +- testcase/cve/ltp.cve.cve-2018-18955.sh | 2 +- testcase/cve/ltp.cve.cve-2018-19854.sh | 2 +- testcase/cve/ltp.cve.cve-2018-5803.sh | 2 +- testcase/cve/ltp.cve.cve-2018-6927.sh | 4 ++-- testcase/cve/ltp.cve.cve-2018-7566.sh | 2 +- testcase/cve/ltp.cve.cve-2018-8897.sh | 2 +- testcase/cve/ltp.cve.cve-2018-9568.sh | 2 +- testcase/cve/ltp.cve.cve-2019-8912.sh | 2 +- testcase/cve/ltp.cve.cve-2020-11494.sh | 2 +- testcase/cve/ltp.cve.cve-2020-14386.sh | 2 +- testcase/cve/ltp.cve.cve-2020-14416.sh | 2 +- testcase/cve/ltp.cve.cve-2020-25704.sh | 2 +- testcase/cve/ltp.cve.cve-2020-25705.sh | 2 +- testcase/cve/ltp.cve.cve-2020-29373.sh | 2 +- testcase/cve/ltp.cve.cve-2020-36557.sh | 4 ++-- testcase/cve/ltp.cve.cve-2021-22555.sh | 2 +- testcase/cve/ltp.cve.cve-2021-22600.sh | 2 +- testcase/cve/ltp.cve.cve-2021-26708.sh | 2 +- testcase/cve/ltp.cve.cve-2021-3444.sh | 2 +- testcase/cve/ltp.cve.cve-2021-3609.sh | 2 +- testcase/cve/ltp.cve.cve-2021-38604.sh | 2 +- testcase/cve/ltp.cve.cve-2021-4034.sh | 2 +- testcase/cve/ltp.cve.cve-2021-4197_1.sh | 4 ++-- testcase/cve/ltp.cve.cve-2021-4197_2.sh | 4 ++-- testcase/cve/ltp.cve.cve-2021-4204.sh | 4 ++-- testcase/cve/ltp.cve.cve-2022-0185.sh | 2 +- testcase/cve/ltp.cve.cve-2022-0847.sh | 2 +- testcase/cve/ltp.cve.cve-2022-23222.sh | 4 ++-- testcase/cve/ltp.cve.cve-2022-2590.sh | 2 +- testcase/cve/ltp.cve.cve-2022-4378.sh | 2 +- testcase/cve/ltp.cve.cve-2023-0461.sh | 4 ++-- testcase/cve/ltp.cve.cve-2023-1829.sh | 4 ++-- testcase/cve/ltp.cve.cve-2023-31248.sh | 4 ++-- testcase/dio/ltp.dio.dio01.sh | 2 +- testcase/dio/ltp.dio.dio02.sh | 2 +- testcase/dio/ltp.dio.dio03.sh | 2 +- testcase/dio/ltp.dio.dio04.sh | 2 +- testcase/dio/ltp.dio.dio05.sh | 2 +- testcase/dio/ltp.dio.dio06.sh | 2 +- testcase/dio/ltp.dio.dio07.sh | 2 +- testcase/dio/ltp.dio.dio08.sh | 2 +- testcase/dio/ltp.dio.dio09.sh | 2 +- testcase/dio/ltp.dio.dio10.sh | 2 +- testcase/dio/ltp.dio.dio11.sh | 2 +- testcase/dio/ltp.dio.dio12.sh | 2 +- testcase/dio/ltp.dio.dio13.sh | 2 +- testcase/dio/ltp.dio.dio14.sh | 2 +- testcase/dio/ltp.dio.dio15.sh | 2 +- testcase/dio/ltp.dio.dio16.sh | 2 +- testcase/dio/ltp.dio.dio17.sh | 2 +- testcase/dio/ltp.dio.dio18.sh | 2 +- testcase/dio/ltp.dio.dio19.sh | 2 +- testcase/dio/ltp.dio.dio20.sh | 2 +- testcase/dio/ltp.dio.dio21.sh | 2 +- testcase/dio/ltp.dio.dio22.sh | 2 +- testcase/dio/ltp.dio.dio23.sh | 2 +- testcase/dio/ltp.dio.dio24.sh | 2 +- testcase/dio/ltp.dio.dio25.sh | 2 +- testcase/dio/ltp.dio.dio26.sh | 2 +- testcase/dio/ltp.dio.dio27.sh | 2 +- testcase/dio/ltp.dio.dio28.sh | 2 +- testcase/dio/ltp.dio.dio29.sh | 2 +- testcase/dio/ltp.dio.dio30.sh | 2 +- .../ltp.dma_thread_diotest.dma_thread_diotest1.sh | 2 +- .../ltp.dma_thread_diotest.dma_thread_diotest2.sh | 2 +- .../ltp.dma_thread_diotest.dma_thread_diotest3.sh | 2 +- .../ltp.dma_thread_diotest.dma_thread_diotest4.sh | 2 +- .../ltp.dma_thread_diotest.dma_thread_diotest5.sh | 2 +- .../ltp.dma_thread_diotest.dma_thread_diotest6.sh | 2 +- .../ltp.dma_thread_diotest.dma_thread_diotest7.sh | 2 +- .../fcntl-locktests/ltp.fcntl-locktests.FCNTL_LOCKTESTS.sh | 2 +- testcase/fs/ltp.fs.binfmt_misc01.sh | 2 +- testcase/fs/ltp.fs.binfmt_misc02.sh | 2 +- testcase/fs/ltp.fs.fs_di.sh | 2 +- testcase/fs/ltp.fs.fs_fill.sh | 2 +- testcase/fs/ltp.fs.fs_inod01.sh | 2 +- testcase/fs/ltp.fs.fs_racer.sh | 2 +- testcase/fs/ltp.fs.ftest01.sh | 2 +- testcase/fs/ltp.fs.ftest02.sh | 2 +- testcase/fs/ltp.fs.ftest03.sh | 2 +- testcase/fs/ltp.fs.ftest04.sh | 2 +- testcase/fs/ltp.fs.ftest05.sh | 2 +- testcase/fs/ltp.fs.ftest06.sh | 2 +- testcase/fs/ltp.fs.ftest07.sh | 2 +- testcase/fs/ltp.fs.ftest08.sh | 2 +- testcase/fs/ltp.fs.gf01.sh | 2 +- testcase/fs/ltp.fs.gf02.sh | 2 +- testcase/fs/ltp.fs.gf03.sh | 2 +- testcase/fs/ltp.fs.gf04.sh | 2 +- testcase/fs/ltp.fs.gf05.sh | 2 +- testcase/fs/ltp.fs.gf06.sh | 2 +- testcase/fs/ltp.fs.gf07.sh | 2 +- testcase/fs/ltp.fs.gf08.sh | 2 +- testcase/fs/ltp.fs.gf09.sh | 2 +- testcase/fs/ltp.fs.gf10.sh | 2 +- testcase/fs/ltp.fs.gf11.sh | 2 +- testcase/fs/ltp.fs.gf12.sh | 2 +- testcase/fs/ltp.fs.gf13.sh | 2 +- testcase/fs/ltp.fs.gf14.sh | 2 +- testcase/fs/ltp.fs.gf15.sh | 2 +- testcase/fs/ltp.fs.gf16.sh | 2 +- testcase/fs/ltp.fs.gf17.sh | 2 +- testcase/fs/ltp.fs.gf18.sh | 2 +- testcase/fs/ltp.fs.gf19.sh | 2 +- testcase/fs/ltp.fs.gf20.sh | 2 +- testcase/fs/ltp.fs.gf21.sh | 2 +- testcase/fs/ltp.fs.gf22.sh | 2 +- testcase/fs/ltp.fs.gf23.sh | 2 +- testcase/fs/ltp.fs.gf24.sh | 2 +- testcase/fs/ltp.fs.gf25.sh | 2 +- testcase/fs/ltp.fs.gf26.sh | 2 +- testcase/fs/ltp.fs.gf27.sh | 2 +- testcase/fs/ltp.fs.gf28.sh | 2 +- testcase/fs/ltp.fs.gf29.sh | 2 +- testcase/fs/ltp.fs.gf30.sh | 2 +- testcase/fs/ltp.fs.inode01.sh | 2 +- testcase/fs/ltp.fs.inode02.sh | 2 +- testcase/fs/ltp.fs.iogen01.sh | 2 +- testcase/fs/ltp.fs.isofs.sh | 2 +- testcase/fs/ltp.fs.lftest01.sh | 2 +- testcase/fs/ltp.fs.linker01.sh | 2 +- testcase/fs/ltp.fs.openfile01.sh | 2 +- testcase/fs/ltp.fs.proc01.sh | 2 +- testcase/fs/ltp.fs.quota_remount_test01.sh | 2 +- testcase/fs/ltp.fs.read_all_dev.sh | 2 +- testcase/fs/ltp.fs.read_all_proc.sh | 2 +- testcase/fs/ltp.fs.read_all_sys.sh | 2 +- testcase/fs/ltp.fs.rwtest01.sh | 2 +- testcase/fs/ltp.fs.rwtest02.sh | 2 +- testcase/fs/ltp.fs.rwtest03.sh | 2 +- testcase/fs/ltp.fs.rwtest04.sh | 2 +- testcase/fs/ltp.fs.rwtest05.sh | 2 +- testcase/fs/ltp.fs.squashfs01.sh | 2 +- testcase/fs/ltp.fs.stream01.sh | 2 +- testcase/fs/ltp.fs.stream02.sh | 2 +- testcase/fs/ltp.fs.stream03.sh | 2 +- testcase/fs/ltp.fs.stream04.sh | 2 +- testcase/fs/ltp.fs.stream05.sh | 2 +- testcase/fs/ltp.fs.writetest01.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind01_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind02_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind03_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind04_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind05_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind06_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind07-2_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind07_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind08_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind09_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind10_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind11_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind12_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind13_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind14_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind15_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind16_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind17_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind18_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind19_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind20_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind21_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind22_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind23_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind24_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS01_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS02_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS03_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS04_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS05_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS06_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS07_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move01_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move02_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move03_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move04_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move05_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move06_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move07_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move08_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move09_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move10_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move11_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move12_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move13_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move14_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move15_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move16_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move17_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move18_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move19_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move20_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move21_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_move22_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind01_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind02_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind03_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind04_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind05_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind06_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07-2_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind08_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind09_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind10_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind11_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind12_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind13_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind14_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind15_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind16_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind17_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind18_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind19_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind20_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind21_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind22_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind23_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind24_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind25_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind26_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind27_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind28_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind29_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind30_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind31_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind32_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind33_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind34_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind35_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind36_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind37_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind38_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_rbind39_sh.sh | 2 +- testcase/fs_bind/ltp.fs_bind.fs_bind_regression_sh.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms01.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms02.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms03.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms04.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms05.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms06.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms07.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms08.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms09.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms10.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms11.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms12.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms13.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms14.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms15.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms16.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms17.sh | 2 +- testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms18.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind01.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind02.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind03.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind04.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind05.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind06.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind07.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind08.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind09.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind10.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind11.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind12.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind13.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind14.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind15.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind16.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind17.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind18.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind19.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind20.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind21.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind22.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind23.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind24.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind25.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind26.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind27.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind28.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind29.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind30.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind31.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind32.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind33.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind34.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind35.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind36.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind37.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind38.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind39.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind40.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind41.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind42.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind43.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind44.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind45.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind46.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind47.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind48.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind49.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind50.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind51.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind52.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind53.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind54.sh | 2 +- testcase/fs_readonly/ltp.fs_readonly.test_robind55.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugefallocate01.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugefallocate02.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugefork01.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugefork02.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap01.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap02.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap04.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap05.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap05_1.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap05_2.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap05_3.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap06.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap07.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap08.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap09.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap10.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap11.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap12.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap13.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap14.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap15.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap16.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap17.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap18.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap19.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap20.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap21.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap22.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap23.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap24.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap25.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap26.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap27.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap28.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap29.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap30.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap31.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugemmap32.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugeshmat01.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugeshmat02.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugeshmat03.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugeshmat04.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugeshmat05.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugeshmctl01.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugeshmctl02.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugeshmctl03.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugeshmdt01.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugeshmget01.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugeshmget02.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugeshmget03.sh | 2 +- testcase/hugetlb/ltp.hugetlb.hugeshmget05.sh | 2 +- .../hyperthreading/ltp.hyperthreading.smt_smp_affinity.sh | 2 +- testcase/hyperthreading/ltp.hyperthreading.smt_smp_enabled.sh | 2 +- testcase/ima/ltp.ima.evm_overlay.sh | 2 +- testcase/ima/ltp.ima.ima_conditionals.sh | 2 +- testcase/ima/ltp.ima.ima_kexec.sh | 2 +- testcase/ima/ltp.ima.ima_keys.sh | 2 +- testcase/ima/ltp.ima.ima_measurements.sh | 2 +- testcase/ima/ltp.ima.ima_policy.sh | 2 +- testcase/ima/ltp.ima.ima_selinux.sh | 2 +- testcase/ima/ltp.ima.ima_tpm.sh | 2 +- testcase/ima/ltp.ima.ima_violations.sh | 2 +- testcase/input/ltp.input.input01.sh | 2 +- testcase/input/ltp.input.input02.sh | 2 +- testcase/input/ltp.input.input03.sh | 2 +- testcase/input/ltp.input.input04.sh | 2 +- testcase/input/ltp.input.input05.sh | 2 +- testcase/input/ltp.input.input06.sh | 2 +- testcase/ipc/ltp.ipc.pipeio_1.sh | 2 +- testcase/ipc/ltp.ipc.pipeio_3.sh | 2 +- testcase/ipc/ltp.ipc.pipeio_4.sh | 2 +- testcase/ipc/ltp.ipc.pipeio_5.sh | 2 +- testcase/ipc/ltp.ipc.pipeio_6.sh | 2 +- testcase/ipc/ltp.ipc.pipeio_8.sh | 2 +- testcase/irq/ltp.irq.irqbalance01.sh | 2 +- testcase/kernel_misc/ltp.kernel_misc.aslr01.sh | 4 ++-- testcase/kernel_misc/ltp.kernel_misc.block_dev.sh | 2 +- testcase/kernel_misc/ltp.kernel_misc.cn_pec_sh.sh | 4 ++-- testcase/kernel_misc/ltp.kernel_misc.cpufreq_boost.sh | 2 +- testcase/kernel_misc/ltp.kernel_misc.fw_load.sh | 2 +- testcase/kernel_misc/ltp.kernel_misc.kmsg01.sh | 2 +- testcase/kernel_misc/ltp.kernel_misc.lock_torture.sh | 2 +- testcase/kernel_misc/ltp.kernel_misc.ltp_acpi.sh | 2 +- testcase/kernel_misc/ltp.kernel_misc.rcu_torture.sh | 2 +- testcase/kernel_misc/ltp.kernel_misc.rtc01.sh | 2 +- testcase/kernel_misc/ltp.kernel_misc.rtc02.sh | 2 +- testcase/kernel_misc/ltp.kernel_misc.tbio.sh | 2 +- testcase/kernel_misc/ltp.kernel_misc.tpci.sh | 2 +- testcase/kernel_misc/ltp.kernel_misc.uaccess.sh | 2 +- testcase/kernel_misc/ltp.kernel_misc.umip_basic_test.sh | 2 +- testcase/kernel_misc/ltp.kernel_misc.zram01.sh | 2 +- testcase/kernel_misc/ltp.kernel_misc.zram02.sh | 2 +- testcase/kernel_misc/ltp.kernel_misc.zram03.sh | 2 +- testcase/kvm/ltp.kvm.kvm_pagefault01.sh | 2 +- testcase/kvm/ltp.kvm.kvm_svm01.sh | 2 +- testcase/kvm/ltp.kvm.kvm_svm02.sh | 4 ++-- testcase/kvm/ltp.kvm.kvm_svm03.sh | 4 ++-- testcase/kvm/ltp.kvm.kvm_svm04.sh | 4 ++-- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1000.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1001.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1002.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1003.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1004.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1005.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1006.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1007.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1008.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1009.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1010.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1011.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1012.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1013.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1014.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1015.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1016.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1017.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1018.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1019.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1020.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1021.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1022.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1023.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1024.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1025.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1026.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1027.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1028.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1029.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1030.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1031.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1032.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1033.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1034.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1035.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1036.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1037.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1038.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1039.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1040.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1041.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1042.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1043.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1044.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1045.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1046.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1047.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1048.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1049.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1050.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1051.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1052.sh | 2 +- testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1053.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD001.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD002.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD003.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD004.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD005.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD006.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD007.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD008.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD009.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD010.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD011.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD012.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD013.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD014.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD015.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD016.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD017.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD018.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD019.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD020.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD021.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD022.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD023.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD024.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD025.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD026.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD027.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD028.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD029.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD030.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD031.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD032.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD033.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD034.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD035.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD036.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD037.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD038.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD039.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD040.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD041.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD042.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD043.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD044.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD045.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD046.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD047.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD048.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD049.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD050.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD051.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD052.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD053.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD054.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD055.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD056.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD057.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD058.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD059.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD060.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD061.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD062.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD063.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD064.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD065.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD066.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD067.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD068.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD069.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD070.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD071.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD072.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD073.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD074.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD075.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD076.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD077.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD078.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD079.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD080.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD081.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD082.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD083.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD084.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD085.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD086.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD087.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD088.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD089.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD090.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD091.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD092.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD093.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD094.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD095.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD096.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD097.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD098.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD099.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD100.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD101.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD102.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD103.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD104.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD105.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD106.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD107.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD108.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD109.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD110.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD111.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD112.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD113.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD114.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD115.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD116.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD117.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD118.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD119.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD120.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD121.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD122.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD123.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD124.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD125.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD126.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD127.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD128.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD129.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD130.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD131.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD132.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD133.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD134.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD135.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD136.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD137.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD138.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD139.sh | 2 +- testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD140.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP000.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP001.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP002.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP003.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP004.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP005.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP006.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP007.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP008.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP009.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP010.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP011.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP012.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP013.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP014.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP015.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP016.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP017.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP018.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP019.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP020.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP021.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP022.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP023.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP024.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP025.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP026.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP027.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP028.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP029.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP030.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP031.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP032.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP033.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP034.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP035.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP036.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP037.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP038.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP039.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP040.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP041.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP042.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP043.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP044.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP045.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP046.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP047.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP048.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP049.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP050.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP051.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP052.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP053.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP054.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP055.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP056.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP057.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP058.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP059.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP060.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP061.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP062.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP063.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP064.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP065.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP066.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP067.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP068.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP069.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP070.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP071.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP072.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP073.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP074.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP075.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP076.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP077.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP078.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP079.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP080.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP081.sh | 2 +- testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP082.sh | 2 +- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx01.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx02.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx03.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx04.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx05.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx06.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx07.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx08.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx09.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx10.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx12.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx13.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx14.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx15.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx16.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx17.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx18.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx19.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx20.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx21.sh | 4 ++-- testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx22.sh | 4 ++-- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD000.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD001.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD002.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD003.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD004.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD005.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD006.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD007.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD008.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD009.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI000.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI001.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI002.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI003.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI004.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI005.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI006.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI007.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI008.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI009.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI000.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI001.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI002.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI003.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI004.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI005.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI006.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI007.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI008.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI009.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO00.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO01.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO02.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO03.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO04.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO05.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO06.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO07.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO08.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO09.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT000.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT001.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT002.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR000.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR001.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR002.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR003.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS000.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS001.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS002.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS003.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS004.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS005.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS006.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS007.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS008.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS009.sh | 2 +- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio01.sh | 4 ++-- testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio02.sh | 4 ++-- testcase/math/ltp.math.abs01.sh | 2 +- testcase/math/ltp.math.atof01.sh | 2 +- testcase/math/ltp.math.float_bessel.sh | 2 +- testcase/math/ltp.math.float_exp_log.sh | 2 +- testcase/math/ltp.math.float_iperb.sh | 2 +- testcase/math/ltp.math.float_power.sh | 2 +- testcase/math/ltp.math.float_trigo.sh | 2 +- testcase/math/ltp.math.fptest01.sh | 2 +- testcase/math/ltp.math.fptest02.sh | 2 +- testcase/math/ltp.math.nextafter01.sh | 2 +- testcase/mm/ltp.mm.cpuset01.sh | 2 +- testcase/mm/ltp.mm.data_space.sh | 2 +- testcase/mm/ltp.mm.kallsyms.sh | 4 ++-- testcase/mm/ltp.mm.ksm01.sh | 2 +- testcase/mm/ltp.mm.ksm01_1.sh | 2 +- testcase/mm/ltp.mm.ksm02.sh | 2 +- testcase/mm/ltp.mm.ksm02_1.sh | 2 +- testcase/mm/ltp.mm.ksm03.sh | 2 +- testcase/mm/ltp.mm.ksm03_1.sh | 2 +- testcase/mm/ltp.mm.ksm04.sh | 2 +- testcase/mm/ltp.mm.ksm04_1.sh | 2 +- testcase/mm/ltp.mm.ksm05.sh | 2 +- testcase/mm/ltp.mm.ksm06.sh | 2 +- testcase/mm/ltp.mm.ksm06_1.sh | 2 +- testcase/mm/ltp.mm.ksm06_2.sh | 2 +- testcase/mm/ltp.mm.ksm07.sh | 4 ++-- testcase/mm/ltp.mm.mallocstress01.sh | 2 +- testcase/mm/ltp.mm.max_map_count.sh | 2 +- testcase/mm/ltp.mm.mem02.sh | 2 +- testcase/mm/ltp.mm.min_free_kbytes.sh | 2 +- testcase/mm/ltp.mm.mm01.sh | 2 +- testcase/mm/ltp.mm.mm02.sh | 2 +- testcase/mm/ltp.mm.mmap10.sh | 2 +- testcase/mm/ltp.mm.mmap10_1.sh | 2 +- testcase/mm/ltp.mm.mmap10_2.sh | 2 +- testcase/mm/ltp.mm.mmap10_3.sh | 2 +- testcase/mm/ltp.mm.mmap10_4.sh | 2 +- testcase/mm/ltp.mm.mmapstress01.sh | 2 +- testcase/mm/ltp.mm.mmapstress02.sh | 2 +- testcase/mm/ltp.mm.mmapstress03.sh | 2 +- testcase/mm/ltp.mm.mmapstress04.sh | 2 +- testcase/mm/ltp.mm.mmapstress05.sh | 2 +- testcase/mm/ltp.mm.mmapstress06.sh | 2 +- testcase/mm/ltp.mm.mmapstress07.sh | 2 +- testcase/mm/ltp.mm.mmapstress08.sh | 2 +- testcase/mm/ltp.mm.mmapstress09.sh | 2 +- testcase/mm/ltp.mm.mmapstress10.sh | 2 +- testcase/mm/ltp.mm.mtest01.sh | 2 +- testcase/mm/ltp.mm.mtest01w.sh | 2 +- testcase/mm/ltp.mm.mtest05.sh | 2 +- testcase/mm/ltp.mm.mtest06.sh | 2 +- testcase/mm/ltp.mm.mtest06_2.sh | 2 +- testcase/mm/ltp.mm.mtest06_3.sh | 2 +- testcase/mm/ltp.mm.oom01.sh | 2 +- testcase/mm/ltp.mm.oom02.sh | 2 +- testcase/mm/ltp.mm.oom03.sh | 2 +- testcase/mm/ltp.mm.oom04.sh | 2 +- testcase/mm/ltp.mm.oom05.sh | 2 +- testcase/mm/ltp.mm.overcommit_memory01.sh | 2 +- testcase/mm/ltp.mm.overcommit_memory02.sh | 2 +- testcase/mm/ltp.mm.overcommit_memory03.sh | 2 +- testcase/mm/ltp.mm.overcommit_memory04.sh | 2 +- testcase/mm/ltp.mm.overcommit_memory05.sh | 2 +- testcase/mm/ltp.mm.overcommit_memory06.sh | 2 +- testcase/mm/ltp.mm.page01.sh | 2 +- testcase/mm/ltp.mm.page02.sh | 2 +- testcase/mm/ltp.mm.shm_test01.sh | 2 +- testcase/mm/ltp.mm.shmt02.sh | 2 +- testcase/mm/ltp.mm.shmt03.sh | 2 +- testcase/mm/ltp.mm.shmt04.sh | 2 +- testcase/mm/ltp.mm.shmt05.sh | 2 +- testcase/mm/ltp.mm.shmt06.sh | 2 +- testcase/mm/ltp.mm.shmt07.sh | 2 +- testcase/mm/ltp.mm.shmt08.sh | 2 +- testcase/mm/ltp.mm.shmt09.sh | 2 +- testcase/mm/ltp.mm.shmt10.sh | 2 +- testcase/mm/ltp.mm.stack_space.sh | 2 +- testcase/mm/ltp.mm.swapping01.sh | 2 +- testcase/mm/ltp.mm.thp01.sh | 2 +- testcase/mm/ltp.mm.thp02.sh | 2 +- testcase/mm/ltp.mm.thp03.sh | 2 +- testcase/mm/ltp.mm.thp04.sh | 2 +- testcase/mm/ltp.mm.vma01.sh | 2 +- testcase/mm/ltp.mm.vma02.sh | 2 +- testcase/mm/ltp.mm.vma03.sh | 2 +- testcase/mm/ltp.mm.vma04.sh | 2 +- testcase/mm/ltp.mm.vma05.sh | 2 +- testcase/net.features/ltp.net.features.bbr01.sh | 2 +- testcase/net.features/ltp.net.features.bbr01_ipv6.sh | 2 +- testcase/net.features/ltp.net.features.bbr02.sh | 2 +- testcase/net.features/ltp.net.features.bbr02_ipv6.sh | 2 +- testcase/net.features/ltp.net.features.bind_noport01.sh | 2 +- testcase/net.features/ltp.net.features.bind_noport01_ipv6.sh | 2 +- testcase/net.features/ltp.net.features.busy_poll01.sh | 2 +- testcase/net.features/ltp.net.features.busy_poll01_ipv6.sh | 2 +- testcase/net.features/ltp.net.features.busy_poll02.sh | 2 +- testcase/net.features/ltp.net.features.busy_poll02_ipv6.sh | 2 +- testcase/net.features/ltp.net.features.busy_poll03.sh | 2 +- testcase/net.features/ltp.net.features.busy_poll03_ipv6.sh | 2 +- testcase/net.features/ltp.net.features.dccp01.sh | 2 +- testcase/net.features/ltp.net.features.dccp01_ipv6.sh | 2 +- testcase/net.features/ltp.net.features.dctcp_ipv4_01.sh | 2 +- testcase/net.features/ltp.net.features.dctcp_ipv6_01.sh | 2 +- testcase/net.features/ltp.net.features.fanout01.sh | 2 +- testcase/net.features/ltp.net.features.fou01.sh | 2 +- testcase/net.features/ltp.net.features.fou01_ipv6.sh | 2 +- testcase/net.features/ltp.net.features.geneve01.sh | 2 +- testcase/net.features/ltp.net.features.geneve01_ipv6.sh | 2 +- testcase/net.features/ltp.net.features.geneve02.sh | 2 +- testcase/net.features/ltp.net.features.geneve02_ipv6.sh | 2 +- testcase/net.features/ltp.net.features.gre_ipv4_01.sh | 2 +- testcase/net.features/ltp.net.features.gre_ipv4_02.sh | 2 +- testcase/net.features/ltp.net.features.gre_ipv6_01.sh | 2 +- testcase/net.features/ltp.net.features.gre_ipv6_02.sh | 2 +- testcase/net.features/ltp.net.features.gue01.sh | 2 +- testcase/net.features/ltp.net.features.gue01_ipv6.sh | 2 +- testcase/net.features/ltp.net.features.ipvlan01.sh | 2 +- testcase/net.features/ltp.net.features.macsec01.sh | 2 +- testcase/net.features/ltp.net.features.macsec02.sh | 2 +- testcase/net.features/ltp.net.features.macsec03.sh | 2 +- testcase/net.features/ltp.net.features.macvlan01.sh | 2 +- testcase/net.features/ltp.net.features.macvtap01.sh | 2 +- testcase/net.features/ltp.net.features.mpls01.sh | 2 +- testcase/net.features/ltp.net.features.mpls02.sh | 2 +- testcase/net.features/ltp.net.features.mpls02_ipv6.sh | 2 +- testcase/net.features/ltp.net.features.mpls03.sh | 2 +- testcase/net.features/ltp.net.features.mpls03_ipv6.sh | 2 +- testcase/net.features/ltp.net.features.mpls04.sh | 2 +- testcase/net.features/ltp.net.features.sctp01.sh | 2 +- testcase/net.features/ltp.net.features.sctp01_ipv6.sh | 2 +- testcase/net.features/ltp.net.features.sit01.sh | 2 +- testcase/net.features/ltp.net.features.tcp_fastopen.sh | 2 +- testcase/net.features/ltp.net.features.tcp_fastopen6.sh | 2 +- testcase/net.features/ltp.net.features.vlan01.sh | 2 +- testcase/net.features/ltp.net.features.vlan02.sh | 2 +- testcase/net.features/ltp.net.features.vlan03.sh | 2 +- testcase/net.features/ltp.net.features.vxlan01.sh | 2 +- testcase/net.features/ltp.net.features.vxlan02.sh | 2 +- testcase/net.features/ltp.net.features.vxlan02_ipv6.sh | 2 +- testcase/net.features/ltp.net.features.vxlan_ipv6_multi_03.sh | 2 +- testcase/net.features/ltp.net.features.vxlan_ipv6_uni_03.sh | 2 +- testcase/net.features/ltp.net.features.vxlan_ipv6_uni_04.sh | 2 +- testcase/net.features/ltp.net.features.vxlan_multi_03.sh | 2 +- testcase/net.features/ltp.net.features.vxlan_uni_03.sh | 2 +- testcase/net.features/ltp.net.features.vxlan_uni_04.sh | 2 +- testcase/net.features/ltp.net.features.wireguard01.sh | 2 +- testcase/net.features/ltp.net.features.wireguard01_ipv6.sh | 2 +- testcase/net.features/ltp.net.features.wireguard02.sh | 2 +- testcase/net.features/ltp.net.features.wireguard02_ipv6.sh | 2 +- testcase/net.ipv6/ltp.net.ipv6.dhcpd6.sh | 2 +- testcase/net.ipv6/ltp.net.ipv6.dnsmasq6.sh | 2 +- testcase/net.ipv6/ltp.net.ipv6.ip6tables.sh | 2 +- testcase/net.ipv6/ltp.net.ipv6.ipneigh6_ip.sh | 2 +- testcase/net.ipv6/ltp.net.ipv6.nft6.sh | 2 +- testcase/net.ipv6/ltp.net.ipv6.ping601.sh | 2 +- testcase/net.ipv6/ltp.net.ipv6.ping602.sh | 2 +- testcase/net.ipv6/ltp.net.ipv6.sendfile601.sh | 2 +- testcase/net.ipv6/ltp.net.ipv6.tcpdump601.sh | 2 +- testcase/net.ipv6/ltp.net.ipv6.tracepath601.sh | 2 +- testcase/net.ipv6/ltp.net.ipv6.traceroute601.sh | 2 +- testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_01.sh | 2 +- testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_02.sh | 2 +- testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_03.sh | 2 +- testcase/net.ipv6_lib/ltp.net.ipv6_lib.getaddrinfo_01.sh | 2 +- testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_01.sh | 2 +- testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_02.sh | 2 +- testcase/net.multicast/ltp.net.multicast.mc_cmds.sh | 2 +- testcase/net.multicast/ltp.net.multicast.mc_commo.sh | 2 +- testcase/net.multicast/ltp.net.multicast.mc_member.sh | 2 +- testcase/net.multicast/ltp.net.multicast.mc_opts.sh | 2 +- testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.fsx_v40_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.fsx_v40_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.fsx_v41_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.fsx_v41_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.fsx_v42_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.fsx_v42_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs06_v30_v40_ip4.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs06_v4x_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs06_vall_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6u.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip6t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip4t.sh | 4 ++-- testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip6t.sh | 4 ++-- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc01.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_auth_destroy.sh | 2 +- .../net.rpc_tests/ltp.net.rpc_tests.rpc_authnone_create.sh | 2 +- .../net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create.sh | 2 +- .../ltp.net.rpc_tests.rpc_authunix_create_default.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_callrpc.sh | 2 +- .../net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_broadcast.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_call.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_control.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_create.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_destroy.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_freeres.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_geterr.sh | 2 +- .../net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_pcreateerror.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perrno.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perror.sh | 2 +- .../net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_spcreateerror.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperrno.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperror.sh | 2 +- .../net.rpc_tests/ltp.net.rpc_tests.rpc_clntraw_create.sh | 2 +- .../net.rpc_tests/ltp.net.rpc_tests.rpc_clnttcp_create.sh | 2 +- .../net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_bufcreate.sh | 2 +- .../net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_create.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_get_myaddress.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getmaps.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getport.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_rmtcall.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_set.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_unset.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_registerrpc.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_destroy.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_freeargs.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getargs.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getcaller.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_register.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_sendreply.sh | 2 +- .../net.rpc_tests/ltp.net.rpc_tests.rpc_svc_unregister.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_auth.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noproc.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noprog.sh | 2 +- .../net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_progvers.sh | 2 +- .../net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_systemerr.sh | 2 +- .../net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_weakauth.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcfd_create.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcraw_create.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svctcp_create.sh | 2 +- .../net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_bufcreate.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_create.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_register.sh | 2 +- .../net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_unregister.sh | 2 +- testcase/net.rpc_tests/ltp.net.rpc_tests.rpcinfo.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_1_to_1_accept_close.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_1_to_1_addrs.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_1_to_1_connect.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_1_to_1_connectx.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_1_to_1_events.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_1_to_1_initmsg_connect.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_1_to_1_nonblock.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvfrom.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvmsg.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_1_to_1_rtoinfo.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_1_to_1_send.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendmsg.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendto.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_1_to_1_shutdown.sh | 2 +- .../net.sctp/ltp.net.sctp.test_1_to_1_socket_bind_listen.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_1_to_1_sockopt.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_1_to_1_threads.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_assoc_abort.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_assoc_shutdown.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_autoclose.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_basic.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_basic_v6.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_connect.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_connectx.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_fragments.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_fragments_v6.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_getname.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_getname_v6.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_inaddr_any.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_inaddr_any_v6.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_peeloff.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_peeloff_v6.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_recvmsg.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg_v6.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_sockopt.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_sockopt_v6.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_tcp_style.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_tcp_style_v6.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_timetolive.sh | 2 +- testcase/net.sctp/ltp.net.sctp.test_timetolive_v6.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.arping01.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.dhcpd.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.dnsmasq.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.ftp.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_arp.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_ip.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.iproute.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.iptables.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.netstat.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.nft.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping01.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping02.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.sendfile.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.tc01.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.tcpdump.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.tracepath01.sh | 2 +- testcase/net.tcp_cmds/ltp.net.tcp_cmds.traceroute01.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_authnone_create.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_authsys_create.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_authsys_create_default.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_bottomlevel_clnt_call.sh | 2 +- .../net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_control.sh | 2 +- .../net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_clnt_create_timed.sh | 2 +- .../net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_destroy.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_clnt_dg_create.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_clnt_pcreateerror.sh | 2 +- .../net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perrno.sh | 2 +- .../net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perror.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_clnt_tli_create.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_clnt_tp_create.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_clnt_tp_create_timed.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_clnt_vc_create.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_expertlevel_clnt_call.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_interlevel_clnt_call.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_rpc_broadcast.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_rpc_broadcast_exp.sh | 2 +- .../net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_call.sh | 2 +- testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_reg.sh | 2 +- .../net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getaddr.sh | 2 +- .../net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getmaps.sh | 2 +- .../net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_rmtcall.sh | 2 +- .../net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_set.sh | 2 +- .../net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_unset.sh | 2 +- .../net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_create.sh | 2 +- .../net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_destroy.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_svc_dg_create.sh | 2 +- testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_reg.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_svc_tli_create.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_svc_tp_create.sh | 2 +- .../net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_unreg.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_svc_vc_create.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_svcerr_noproc.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_svcerr_noprog.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_svcerr_progvers.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_svcerr_systemerr.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_svcerr_weakauth.sh | 2 +- .../ltp.net.tirpc_tests.tirpc_toplevel_clnt_call.sh | 2 +- testcase/net_stress.appl/ltp.net_stress.appl.dns4-stress.sh | 2 +- testcase/net_stress.appl/ltp.net_stress.appl.dns6-stress.sh | 2 +- .../ltp.net_stress.appl.ftp4-download-stress.sh | 2 +- .../net_stress.appl/ltp.net_stress.appl.ftp4-upload-stress.sh | 2 +- .../ltp.net_stress.appl.ftp6-download-stress.sh | 2 +- .../net_stress.appl/ltp.net_stress.appl.ftp6-upload-stress.sh | 2 +- testcase/net_stress.appl/ltp.net_stress.appl.http4-stress.sh | 2 +- testcase/net_stress.appl/ltp.net_stress.appl.http6-stress.sh | 2 +- testcase/net_stress.appl/ltp.net_stress.appl.ssh4-stress.sh | 2 +- testcase/net_stress.appl/ltp.net_stress.appl.ssh6-stress.sh | 2 +- .../ltp.net_stress.broken_ip.broken_ip4-checksum.sh | 2 +- .../ltp.net_stress.broken_ip.broken_ip4-dstaddr.sh | 2 +- .../ltp.net_stress.broken_ip.broken_ip4-fragment.sh | 2 +- .../ltp.net_stress.broken_ip.broken_ip4-ihl.sh | 2 +- .../ltp.net_stress.broken_ip.broken_ip4-plen.sh | 2 +- .../ltp.net_stress.broken_ip.broken_ip4-protcol.sh | 2 +- .../ltp.net_stress.broken_ip.broken_ip4-version.sh | 2 +- .../ltp.net_stress.broken_ip.broken_ip6-dstaddr.sh | 2 +- .../ltp.net_stress.broken_ip.broken_ip6-nexthdr.sh | 2 +- .../ltp.net_stress.broken_ip.broken_ip6-plen.sh | 2 +- .../ltp.net_stress.broken_ip.broken_ip6-version.sh | 2 +- .../ltp.net_stress.interface.if4-addr-adddel_ifconfig.sh | 2 +- .../ltp.net_stress.interface.if4-addr-adddel_ip.sh | 2 +- .../ltp.net_stress.interface.if4-addr-addlarge_ifconfig.sh | 2 +- .../ltp.net_stress.interface.if4-addr-addlarge_ip.sh | 2 +- .../ltp.net_stress.interface.if4-addr-change_ifconfig.sh | 2 +- .../ltp.net_stress.interface.if4-mtu-change_ifconfig.sh | 2 +- .../ltp.net_stress.interface.if4-mtu-change_ip.sh | 2 +- .../ltp.net_stress.interface.if4-route-adddel_ip.sh | 2 +- .../ltp.net_stress.interface.if4-route-adddel_route.sh | 2 +- .../ltp.net_stress.interface.if4-route-addlarge_ip.sh | 2 +- .../ltp.net_stress.interface.if4-route-addlarge_route.sh | 2 +- .../ltp.net_stress.interface.if4-updown_ifconfig.sh | 2 +- .../ltp.net_stress.interface.if4-updown_ip.sh | 2 +- .../ltp.net_stress.interface.if6-addr-adddel_ifconfig.sh | 2 +- .../ltp.net_stress.interface.if6-addr-adddel_ip.sh | 2 +- .../ltp.net_stress.interface.if6-addr-addlarge_ifconfig.sh | 2 +- .../ltp.net_stress.interface.if6-addr-addlarge_ip.sh | 2 +- .../ltp.net_stress.interface.if6-mtu-change_ifconfig.sh | 2 +- .../ltp.net_stress.interface.if6-mtu-change_ip.sh | 2 +- .../ltp.net_stress.interface.if6-route-adddel_ip.sh | 2 +- .../ltp.net_stress.interface.if6-route-adddel_route.sh | 2 +- .../ltp.net_stress.interface.if6-route-addlarge_ip.sh | 2 +- .../ltp.net_stress.interface.if6-route-addlarge_route.sh | 2 +- .../ltp.net_stress.interface.if6-updown_ifconfig.sh | 2 +- .../ltp.net_stress.interface.if6-updown_ip.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec01.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec02.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec03.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec04.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec05.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec06.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec07.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec08.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec09.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec10.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec11.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec12.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec13.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec14.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec15.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec16.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec17.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec18.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec19.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec20.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec21.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec22.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec23.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec24.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec25.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec26.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec27.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec28.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec29.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec30.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec31.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec32.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec33.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec34.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec35.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec36.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti01.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti02.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti04.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti05.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti06.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti07.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti08.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti09.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti10.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti11.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti12.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti13.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti14.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti15.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti16.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti17.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec01.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec02.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec03.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec04.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec05.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec06.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec07.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec08.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec09.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec10.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec11.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec12.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec13.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec14.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec15.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec16.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec17.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec18.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec19.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec20.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec21.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec22.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec23.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec24.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec25.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec26.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec27.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec28.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec29.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec30.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec31.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec32.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec33.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec34.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec35.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec36.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti01.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti02.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti04.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti05.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti06.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti07.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti08.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti09.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti10.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti11.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti12.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti13.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti14.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti15.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti16.sh | 2 +- .../ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti17.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic01.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic02.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic03.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic04.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic05.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic06.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic07.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic08.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic09.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic10.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic11.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic12.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic13.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic14.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic15.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic16.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic17.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic18.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic19.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic20.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic21.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic22.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic23.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic24.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic25.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-basic26.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti01.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti02.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti03.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti04.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti05.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti06.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti07.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti08.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti09.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti10.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti11.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti12.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti13.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti14.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti15.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti16.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp4-uni-vti17.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic01.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic02.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic03.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic04.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic05.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic06.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic07.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic08.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic09.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic10.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic11.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic12.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic13.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic14.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic15.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic16.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic17.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic18.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic19.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic20.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic21.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic22.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic23.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic24.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic25.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-basic26.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti01.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti02.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti03.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti04.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti05.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti06.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti07.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti08.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti09.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti10.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti11.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti12.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti13.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti14.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti15.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti16.sh | 2 +- .../ltp.net_stress.ipsec_icmp.icmp6-uni-vti17.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec01.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec02.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec03.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec04.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec05.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec06.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec07.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec08.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec09.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec10.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec11.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec12.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec13.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec14.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec15.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec16.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec17.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec18.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec19.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec20.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec21.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec22.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec23.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec24.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec25.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec26.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec27.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec28.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec29.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec30.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec31.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec32.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec33.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec34.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec35.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec36.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti01.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti02.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti04.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti05.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti06.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti07.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti08.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti09.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti10.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti11.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti12.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti13.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti14.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti15.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti16.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti17.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec01.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec02.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec03.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec04.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec05.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec06.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec07.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec08.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec09.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec10.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec11.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec12.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec13.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec14.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec15.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec16.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec17.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec18.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec19.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec20.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec21.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec22.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec23.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec24.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec25.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec26.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec27.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec28.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec29.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec30.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec31.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec32.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec33.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec34.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec35.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec36.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti01.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti02.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti04.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti05.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti06.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti07.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti08.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti09.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti10.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti11.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti12.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti13.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti14.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti15.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti16.sh | 2 +- .../ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti17.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec01.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec02.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec03.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec04.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec05.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec06.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec07.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec08.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec09.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec10.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec11.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec12.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec13.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec14.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec15.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec16.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec17.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec18.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec19.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec20.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec21.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec22.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec23.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec24.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec25.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec26.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec27.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec28.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec29.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec30.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec31.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec32.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec33.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec34.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec35.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec36.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti01.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti02.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti04.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti05.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti06.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti07.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti08.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti09.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti10.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti11.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti12.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti13.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti14.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti15.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti16.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti17.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec01.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec02.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec03.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec04.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec05.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec06.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec07.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec08.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec09.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec10.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec11.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec12.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec13.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec14.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec15.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec16.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec17.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec18.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec19.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec20.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec21.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec22.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec23.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec24.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec25.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec26.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec27.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec28.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec29.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec30.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec31.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec32.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec33.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec34.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec35.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec36.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti01.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti02.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti04.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti05.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti06.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti07.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti08.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti09.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti10.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti11.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti12.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti13.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti14.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti15.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti16.sh | 2 +- .../ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti17.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec01.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec02.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec03.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec04.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec05.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec06.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec07.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec08.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec09.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec10.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec11.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec12.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec13.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec14.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec15.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec16.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec17.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec18.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec19.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec20.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec21.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec22.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec23.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec24.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec25.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec26.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec27.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec28.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec29.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec30.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec31.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec32.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec33.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec34.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec35.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec36.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti01.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti02.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti03.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti04.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti05.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti06.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti07.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti08.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti09.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti10.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti11.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti12.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti13.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti14.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti15.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti16.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp4_ipsec_vti17.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec01.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec02.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec03.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec04.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec05.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec06.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec07.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec08.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec09.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec10.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec11.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec12.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec13.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec14.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec15.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec16.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec17.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec18.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec19.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec20.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec21.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec22.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec23.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec24.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec25.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec26.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec27.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec28.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec29.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec30.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec31.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec32.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec33.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec34.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec35.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec36.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti01.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti02.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti03.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti04.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti05.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti06.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti07.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti08.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti09.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti10.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti11.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti12.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti13.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti14.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti15.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti16.sh | 2 +- .../ltp.net_stress.ipsec_udp.udp6_ipsec_vti17.sh | 2 +- .../ltp.net_stress.multicast.mcast4-group-multiple-socket.sh | 2 +- .../ltp.net_stress.multicast.mcast4-group-same-group.sh | 2 +- .../ltp.net_stress.multicast.mcast4-group-single-socket.sh | 2 +- .../ltp.net_stress.multicast.mcast4-group-source-filter.sh | 2 +- .../ltp.net_stress.multicast.mcast4-pktfld01.sh | 2 +- .../ltp.net_stress.multicast.mcast4-pktfld02.sh | 2 +- .../ltp.net_stress.multicast.mcast4-queryfld01.sh | 2 +- .../ltp.net_stress.multicast.mcast4-queryfld02.sh | 2 +- .../ltp.net_stress.multicast.mcast4-queryfld03.sh | 2 +- .../ltp.net_stress.multicast.mcast4-queryfld04.sh | 2 +- .../ltp.net_stress.multicast.mcast4-queryfld05.sh | 2 +- .../ltp.net_stress.multicast.mcast4-queryfld06.sh | 2 +- .../ltp.net_stress.multicast.mcast6-group-multiple-socket.sh | 2 +- .../ltp.net_stress.multicast.mcast6-group-same-group.sh | 2 +- .../ltp.net_stress.multicast.mcast6-group-single-socket.sh | 2 +- .../ltp.net_stress.multicast.mcast6-group-source-filter.sh | 2 +- .../ltp.net_stress.multicast.mcast6-pktfld01.sh | 2 +- .../ltp.net_stress.multicast.mcast6-pktfld02.sh | 2 +- .../ltp.net_stress.multicast.mcast6-queryfld01.sh | 2 +- .../ltp.net_stress.multicast.mcast6-queryfld02.sh | 2 +- .../ltp.net_stress.multicast.mcast6-queryfld03.sh | 2 +- .../ltp.net_stress.multicast.mcast6-queryfld04.sh | 2 +- .../ltp.net_stress.multicast.mcast6-queryfld05.sh | 2 +- .../ltp.net_stress.multicast.mcast6-queryfld06.sh | 2 +- .../ltp.net_stress.route.route4-change-dst.sh | 2 +- .../net_stress.route/ltp.net_stress.route.route4-change-gw.sh | 2 +- .../net_stress.route/ltp.net_stress.route.route4-change-if.sh | 2 +- .../ltp.net_stress.route.route4-change-netlink-dst.sh | 2 +- .../ltp.net_stress.route.route4-change-netlink-gw.sh | 2 +- .../ltp.net_stress.route.route4-change-netlink-if.sh | 2 +- .../net_stress.route/ltp.net_stress.route.route4-redirect.sh | 2 +- .../ltp.net_stress.route.route6-change-dst.sh | 2 +- .../net_stress.route/ltp.net_stress.route.route6-change-gw.sh | 2 +- .../net_stress.route/ltp.net_stress.route.route6-change-if.sh | 2 +- .../ltp.net_stress.route.route6-change-netlink-dst.sh | 2 +- .../ltp.net_stress.route.route6-change-netlink-gw.sh | 2 +- .../ltp.net_stress.route.route6-change-netlink-if.sh | 2 +- .../net_stress.route/ltp.net_stress.route.route6-redirect.sh | 2 +- testcase/nptl/ltp.nptl.nptl01.sh | 2 +- testcase/numa/ltp.numa.migrate_pages01.sh | 2 +- testcase/numa/ltp.numa.migrate_pages02.sh | 2 +- testcase/numa/ltp.numa.migrate_pages03.sh | 2 +- testcase/numa/ltp.numa.move_pages01.sh | 2 +- testcase/numa/ltp.numa.move_pages02.sh | 2 +- testcase/numa/ltp.numa.move_pages03.sh | 2 +- testcase/numa/ltp.numa.move_pages04.sh | 2 +- testcase/numa/ltp.numa.move_pages05.sh | 2 +- testcase/numa/ltp.numa.move_pages06.sh | 2 +- testcase/numa/ltp.numa.move_pages07.sh | 2 +- testcase/numa/ltp.numa.move_pages09.sh | 2 +- testcase/numa/ltp.numa.move_pages10.sh | 2 +- testcase/numa/ltp.numa.move_pages11.sh | 2 +- testcase/numa/ltp.numa.move_pages12.sh | 2 +- testcase/numa/ltp.numa.numa_testcases.sh | 2 +- testcase/numa/ltp.numa.set_mempolicy01.sh | 2 +- testcase/numa/ltp.numa.set_mempolicy02.sh | 2 +- testcase/numa/ltp.numa.set_mempolicy03.sh | 2 +- testcase/numa/ltp.numa.set_mempolicy04.sh | 2 +- testcase/numa/ltp.numa.set_mempolicy05.sh | 2 +- .../ltp.power_management_tests.runpwtests01.sh | 2 +- .../ltp.power_management_tests.runpwtests02.sh | 2 +- .../ltp.power_management_tests.runpwtests03.sh | 2 +- .../ltp.power_management_tests.runpwtests04.sh | 2 +- .../ltp.power_management_tests.runpwtests06.sh | 2 +- ...power_management_tests_exclusive.runpwtests_exclusive01.sh | 2 +- ...power_management_tests_exclusive.runpwtests_exclusive02.sh | 2 +- ...power_management_tests_exclusive.runpwtests_exclusive03.sh | 2 +- ...power_management_tests_exclusive.runpwtests_exclusive04.sh | 2 +- ...power_management_tests_exclusive.runpwtests_exclusive05.sh | 2 +- testcase/pty/ltp.pty.hangup01.sh | 2 +- testcase/pty/ltp.pty.ptem01.sh | 2 +- testcase/pty/ltp.pty.pty01.sh | 2 +- testcase/pty/ltp.pty.pty02.sh | 2 +- testcase/pty/ltp.pty.pty03.sh | 2 +- testcase/pty/ltp.pty.pty04.sh | 2 +- testcase/pty/ltp.pty.pty05.sh | 2 +- testcase/pty/ltp.pty.pty06.sh | 2 +- testcase/pty/ltp.pty.pty07.sh | 2 +- testcase/s390x_tests/ltp.s390x_tests.vmcp.sh | 2 +- testcase/sched/ltp.sched.autogroup01.sh | 2 +- testcase/sched/ltp.sched.cfs_bandwidth01.sh | 2 +- testcase/sched/ltp.sched.hackbench01.sh | 2 +- testcase/sched/ltp.sched.hackbench02.sh | 2 +- testcase/sched/ltp.sched.proc_sched_rt01.sh | 4 ++-- testcase/sched/ltp.sched.pth_str01.sh | 2 +- testcase/sched/ltp.sched.pth_str02.sh | 2 +- testcase/sched/ltp.sched.pth_str03.sh | 2 +- testcase/sched/ltp.sched.sched_cli_serv.sh | 2 +- testcase/sched/ltp.sched.sched_stress.sh | 2 +- testcase/sched/ltp.sched.starvation.sh | 4 ++-- testcase/sched/ltp.sched.time-schedule01.sh | 2 +- testcase/sched/ltp.sched.trace_sched01.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf101.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf102.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf103.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf104.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf105.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf106.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf107.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf108.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf109.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf110.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf111.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf112.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf113.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf114.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf115.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf116.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf117.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf118.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf119.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf120.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf121.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf122.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf123.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf124.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf125.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf126.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf127.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf128.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf129.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf130.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf201.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf202.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf203.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf204.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf205.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf206.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf207.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf208.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf209.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf210.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf211.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf212.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf213.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf214.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf215.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf216.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf217.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf218.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf219.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf220.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf221.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf222.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf223.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf224.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf225.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf226.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf227.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf228.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf229.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf230.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf301.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf302.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf303.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf304.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf305.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf306.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf307.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf308.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf309.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf310.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf311.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf312.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf313.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf314.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf315.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf316.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf317.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf318.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf319.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf320.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf321.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf322.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf323.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf324.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf325.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf326.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf327.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf328.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf329.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf330.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf701.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf702.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf703.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf704.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf705.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf706.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf707.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf708.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf709.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf710.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf711.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf712.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf713.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf714.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf715.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf716.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf717.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf718.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf719.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf720.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf721.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf722.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf723.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf724.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf725.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf726.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf727.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf728.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf729.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf730.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest01.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest02.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest03.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest04.sh | 2 +- testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest05.sh | 2 +- testcase/smack/ltp.smack.smack_file_access.sh | 2 +- testcase/smack/ltp.smack.smack_set_ambient.sh | 2 +- testcase/smack/ltp.smack.smack_set_cipso.sh | 2 +- testcase/smack/ltp.smack.smack_set_current.sh | 2 +- testcase/smack/ltp.smack.smack_set_direct.sh | 2 +- testcase/smack/ltp.smack.smack_set_doi.sh | 2 +- testcase/smack/ltp.smack.smack_set_load.sh | 2 +- testcase/smack/ltp.smack.smack_set_netlabel.sh | 2 +- testcase/smack/ltp.smack.smack_set_onlycap.sh | 2 +- testcase/smack/ltp.smack.smack_set_socket_labels.sh | 2 +- testcase/smoketest/ltp.smoketest.access01.sh | 2 +- testcase/smoketest/ltp.smoketest.chdir01.sh | 2 +- testcase/smoketest/ltp.smoketest.df01_sh.sh | 2 +- testcase/smoketest/ltp.smoketest.fork01.sh | 2 +- testcase/smoketest/ltp.smoketest.macsec02.sh | 2 +- testcase/smoketest/ltp.smoketest.ping602.sh | 2 +- testcase/smoketest/ltp.smoketest.rename01A.sh | 2 +- testcase/smoketest/ltp.smoketest.shell_test01.sh | 2 +- testcase/smoketest/ltp.smoketest.splice02.sh | 2 +- testcase/smoketest/ltp.smoketest.stat04.sh | 2 +- testcase/smoketest/ltp.smoketest.symlink01.sh | 2 +- testcase/smoketest/ltp.smoketest.time01.sh | 2 +- testcase/smoketest/ltp.smoketest.utime07.sh | 4 ++-- testcase/smoketest/ltp.smoketest.wait02.sh | 2 +- testcase/smoketest/ltp.smoketest.write01.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl01.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl02.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl03.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl04.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl05.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl06.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl12.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgget01.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgget02.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgget03.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgget04.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgget05.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv01.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv02.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv03.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv05.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv06.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv07.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv08.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd01.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd02.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd05.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd06.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.msgstress01.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.semctl01.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.semctl02.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.semctl03.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.semctl04.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.semctl05.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.semctl06.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.semctl07.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.semctl08.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.semctl09.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.semget01.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.semget02.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.semget05.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.semop01.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.semop02.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.semop03.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmat01.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmat02.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmat04.sh | 4 ++-- testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl01.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl02.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl03.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl04.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl05.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl06.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl07.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl08.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt01.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt02.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmget02.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmget03.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmget04.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmget05.sh | 2 +- testcase/syscalls-ipc/ltp.syscalls-ipc.shmget06.sh | 2 +- testcase/syscalls/ltp.syscalls.abort01.sh | 2 +- testcase/syscalls/ltp.syscalls.accept01.sh | 2 +- testcase/syscalls/ltp.syscalls.accept02.sh | 2 +- testcase/syscalls/ltp.syscalls.accept03.sh | 4 ++-- testcase/syscalls/ltp.syscalls.accept4_01.sh | 2 +- testcase/syscalls/ltp.syscalls.access01.sh | 2 +- testcase/syscalls/ltp.syscalls.access02.sh | 2 +- testcase/syscalls/ltp.syscalls.access03.sh | 2 +- testcase/syscalls/ltp.syscalls.access04.sh | 2 +- testcase/syscalls/ltp.syscalls.acct01.sh | 2 +- testcase/syscalls/ltp.syscalls.acct02.sh | 2 +- testcase/syscalls/ltp.syscalls.add_key01.sh | 2 +- testcase/syscalls/ltp.syscalls.add_key02.sh | 2 +- testcase/syscalls/ltp.syscalls.add_key03.sh | 2 +- testcase/syscalls/ltp.syscalls.add_key04.sh | 2 +- testcase/syscalls/ltp.syscalls.add_key05.sh | 2 +- testcase/syscalls/ltp.syscalls.adjtimex01.sh | 2 +- testcase/syscalls/ltp.syscalls.adjtimex02.sh | 2 +- testcase/syscalls/ltp.syscalls.adjtimex03.sh | 2 +- testcase/syscalls/ltp.syscalls.alarm02.sh | 2 +- testcase/syscalls/ltp.syscalls.alarm03.sh | 2 +- testcase/syscalls/ltp.syscalls.alarm05.sh | 2 +- testcase/syscalls/ltp.syscalls.alarm06.sh | 2 +- testcase/syscalls/ltp.syscalls.alarm07.sh | 2 +- testcase/syscalls/ltp.syscalls.arch_prctl01.sh | 4 ++-- testcase/syscalls/ltp.syscalls.bind01.sh | 2 +- testcase/syscalls/ltp.syscalls.bind02.sh | 2 +- testcase/syscalls/ltp.syscalls.bind03.sh | 2 +- testcase/syscalls/ltp.syscalls.bind04.sh | 2 +- testcase/syscalls/ltp.syscalls.bind05.sh | 2 +- testcase/syscalls/ltp.syscalls.bind06.sh | 2 +- testcase/syscalls/ltp.syscalls.bpf_map01.sh | 2 +- testcase/syscalls/ltp.syscalls.bpf_prog01.sh | 2 +- testcase/syscalls/ltp.syscalls.bpf_prog02.sh | 2 +- testcase/syscalls/ltp.syscalls.bpf_prog03.sh | 2 +- testcase/syscalls/ltp.syscalls.bpf_prog04.sh | 2 +- testcase/syscalls/ltp.syscalls.bpf_prog05.sh | 2 +- testcase/syscalls/ltp.syscalls.bpf_prog06.sh | 2 +- testcase/syscalls/ltp.syscalls.bpf_prog07.sh | 2 +- testcase/syscalls/ltp.syscalls.brk01.sh | 2 +- testcase/syscalls/ltp.syscalls.brk02.sh | 2 +- testcase/syscalls/ltp.syscalls.cacheflush01.sh | 2 +- testcase/syscalls/ltp.syscalls.capget01.sh | 2 +- testcase/syscalls/ltp.syscalls.capget02.sh | 2 +- testcase/syscalls/ltp.syscalls.capset01.sh | 2 +- testcase/syscalls/ltp.syscalls.capset02.sh | 2 +- testcase/syscalls/ltp.syscalls.capset03.sh | 2 +- testcase/syscalls/ltp.syscalls.capset04.sh | 2 +- testcase/syscalls/ltp.syscalls.chdir01.sh | 2 +- testcase/syscalls/ltp.syscalls.chdir01A.sh | 2 +- testcase/syscalls/ltp.syscalls.chdir04.sh | 2 +- testcase/syscalls/ltp.syscalls.chmod01.sh | 2 +- testcase/syscalls/ltp.syscalls.chmod01A.sh | 2 +- testcase/syscalls/ltp.syscalls.chmod03.sh | 2 +- testcase/syscalls/ltp.syscalls.chmod05.sh | 2 +- testcase/syscalls/ltp.syscalls.chmod06.sh | 2 +- testcase/syscalls/ltp.syscalls.chmod07.sh | 2 +- testcase/syscalls/ltp.syscalls.chown01.sh | 2 +- testcase/syscalls/ltp.syscalls.chown01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.chown02.sh | 2 +- testcase/syscalls/ltp.syscalls.chown02_16.sh | 2 +- testcase/syscalls/ltp.syscalls.chown03.sh | 2 +- testcase/syscalls/ltp.syscalls.chown03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.chown04.sh | 2 +- testcase/syscalls/ltp.syscalls.chown04_16.sh | 2 +- testcase/syscalls/ltp.syscalls.chown05.sh | 2 +- testcase/syscalls/ltp.syscalls.chown05_16.sh | 2 +- testcase/syscalls/ltp.syscalls.chroot01.sh | 2 +- testcase/syscalls/ltp.syscalls.chroot02.sh | 2 +- testcase/syscalls/ltp.syscalls.chroot03.sh | 2 +- testcase/syscalls/ltp.syscalls.chroot04.sh | 2 +- testcase/syscalls/ltp.syscalls.clock_adjtime01.sh | 2 +- testcase/syscalls/ltp.syscalls.clock_adjtime02.sh | 2 +- testcase/syscalls/ltp.syscalls.clock_getres01.sh | 2 +- testcase/syscalls/ltp.syscalls.clock_gettime01.sh | 2 +- testcase/syscalls/ltp.syscalls.clock_gettime02.sh | 2 +- testcase/syscalls/ltp.syscalls.clock_gettime03.sh | 2 +- testcase/syscalls/ltp.syscalls.clock_gettime04.sh | 2 +- testcase/syscalls/ltp.syscalls.clock_nanosleep01.sh | 2 +- testcase/syscalls/ltp.syscalls.clock_nanosleep02.sh | 2 +- testcase/syscalls/ltp.syscalls.clock_nanosleep03.sh | 2 +- testcase/syscalls/ltp.syscalls.clock_nanosleep04.sh | 2 +- testcase/syscalls/ltp.syscalls.clock_settime01.sh | 2 +- testcase/syscalls/ltp.syscalls.clock_settime02.sh | 2 +- testcase/syscalls/ltp.syscalls.clock_settime03.sh | 2 +- testcase/syscalls/ltp.syscalls.clone01.sh | 2 +- testcase/syscalls/ltp.syscalls.clone02.sh | 2 +- testcase/syscalls/ltp.syscalls.clone03.sh | 2 +- testcase/syscalls/ltp.syscalls.clone04.sh | 2 +- testcase/syscalls/ltp.syscalls.clone05.sh | 2 +- testcase/syscalls/ltp.syscalls.clone06.sh | 2 +- testcase/syscalls/ltp.syscalls.clone07.sh | 2 +- testcase/syscalls/ltp.syscalls.clone08.sh | 2 +- testcase/syscalls/ltp.syscalls.clone09.sh | 2 +- testcase/syscalls/ltp.syscalls.clone301.sh | 2 +- testcase/syscalls/ltp.syscalls.clone302.sh | 2 +- testcase/syscalls/ltp.syscalls.clone303.sh | 4 ++-- testcase/syscalls/ltp.syscalls.close01.sh | 2 +- testcase/syscalls/ltp.syscalls.close02.sh | 2 +- testcase/syscalls/ltp.syscalls.close_range01.sh | 2 +- testcase/syscalls/ltp.syscalls.close_range02.sh | 2 +- testcase/syscalls/ltp.syscalls.confstr01.sh | 2 +- testcase/syscalls/ltp.syscalls.connect01.sh | 2 +- testcase/syscalls/ltp.syscalls.connect02.sh | 2 +- testcase/syscalls/ltp.syscalls.copy_file_range01.sh | 2 +- testcase/syscalls/ltp.syscalls.copy_file_range02.sh | 2 +- testcase/syscalls/ltp.syscalls.copy_file_range03.sh | 2 +- testcase/syscalls/ltp.syscalls.creat01.sh | 2 +- testcase/syscalls/ltp.syscalls.creat03.sh | 2 +- testcase/syscalls/ltp.syscalls.creat04.sh | 2 +- testcase/syscalls/ltp.syscalls.creat05.sh | 2 +- testcase/syscalls/ltp.syscalls.creat06.sh | 2 +- testcase/syscalls/ltp.syscalls.creat07.sh | 2 +- testcase/syscalls/ltp.syscalls.creat08.sh | 2 +- testcase/syscalls/ltp.syscalls.creat09.sh | 2 +- testcase/syscalls/ltp.syscalls.delete_module01.sh | 2 +- testcase/syscalls/ltp.syscalls.delete_module02.sh | 2 +- testcase/syscalls/ltp.syscalls.delete_module03.sh | 2 +- testcase/syscalls/ltp.syscalls.dirtyc0w.sh | 2 +- testcase/syscalls/ltp.syscalls.dirtyc0w_shmem.sh | 2 +- testcase/syscalls/ltp.syscalls.dirtypipe.sh | 2 +- testcase/syscalls/ltp.syscalls.dup01.sh | 2 +- testcase/syscalls/ltp.syscalls.dup02.sh | 2 +- testcase/syscalls/ltp.syscalls.dup03.sh | 2 +- testcase/syscalls/ltp.syscalls.dup04.sh | 2 +- testcase/syscalls/ltp.syscalls.dup05.sh | 2 +- testcase/syscalls/ltp.syscalls.dup06.sh | 2 +- testcase/syscalls/ltp.syscalls.dup07.sh | 2 +- testcase/syscalls/ltp.syscalls.dup201.sh | 2 +- testcase/syscalls/ltp.syscalls.dup202.sh | 2 +- testcase/syscalls/ltp.syscalls.dup203.sh | 2 +- testcase/syscalls/ltp.syscalls.dup204.sh | 2 +- testcase/syscalls/ltp.syscalls.dup205.sh | 2 +- testcase/syscalls/ltp.syscalls.dup206.sh | 2 +- testcase/syscalls/ltp.syscalls.dup207.sh | 2 +- testcase/syscalls/ltp.syscalls.dup3_01.sh | 2 +- testcase/syscalls/ltp.syscalls.dup3_02.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll01.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_create01.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_create02.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_create1_01.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_create1_02.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_ctl01.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_ctl02.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_ctl03.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_ctl04.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_ctl05.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_pwait01.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_pwait02.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_pwait03.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_pwait04.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_pwait05.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_wait01.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_wait02.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_wait03.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_wait04.sh | 2 +- testcase/syscalls/ltp.syscalls.epoll_wait05.sh | 4 ++-- testcase/syscalls/ltp.syscalls.epoll_wait06.sh | 4 ++-- testcase/syscalls/ltp.syscalls.epoll_wait07.sh | 4 ++-- testcase/syscalls/ltp.syscalls.eventfd01.sh | 2 +- testcase/syscalls/ltp.syscalls.eventfd02.sh | 4 ++-- testcase/syscalls/ltp.syscalls.eventfd03.sh | 4 ++-- testcase/syscalls/ltp.syscalls.eventfd04.sh | 4 ++-- testcase/syscalls/ltp.syscalls.eventfd05.sh | 4 ++-- testcase/syscalls/ltp.syscalls.eventfd06.sh | 4 ++-- testcase/syscalls/ltp.syscalls.eventfd2_01.sh | 2 +- testcase/syscalls/ltp.syscalls.eventfd2_02.sh | 2 +- testcase/syscalls/ltp.syscalls.eventfd2_03.sh | 2 +- testcase/syscalls/ltp.syscalls.execl01.sh | 2 +- testcase/syscalls/ltp.syscalls.execle01.sh | 2 +- testcase/syscalls/ltp.syscalls.execlp01.sh | 2 +- testcase/syscalls/ltp.syscalls.execv01.sh | 2 +- testcase/syscalls/ltp.syscalls.execve01.sh | 2 +- testcase/syscalls/ltp.syscalls.execve02.sh | 2 +- testcase/syscalls/ltp.syscalls.execve03.sh | 2 +- testcase/syscalls/ltp.syscalls.execve04.sh | 2 +- testcase/syscalls/ltp.syscalls.execve05.sh | 2 +- testcase/syscalls/ltp.syscalls.execve06.sh | 2 +- testcase/syscalls/ltp.syscalls.execveat01.sh | 2 +- testcase/syscalls/ltp.syscalls.execveat02.sh | 2 +- testcase/syscalls/ltp.syscalls.execveat03.sh | 2 +- testcase/syscalls/ltp.syscalls.execvp01.sh | 2 +- testcase/syscalls/ltp.syscalls.exit01.sh | 2 +- testcase/syscalls/ltp.syscalls.exit02.sh | 2 +- testcase/syscalls/ltp.syscalls.exit_group01.sh | 2 +- testcase/syscalls/ltp.syscalls.faccessat01.sh | 2 +- testcase/syscalls/ltp.syscalls.faccessat02.sh | 4 ++-- testcase/syscalls/ltp.syscalls.faccessat201.sh | 4 ++-- testcase/syscalls/ltp.syscalls.faccessat202.sh | 4 ++-- testcase/syscalls/ltp.syscalls.fallocate01.sh | 2 +- testcase/syscalls/ltp.syscalls.fallocate02.sh | 2 +- testcase/syscalls/ltp.syscalls.fallocate03.sh | 2 +- testcase/syscalls/ltp.syscalls.fallocate04.sh | 2 +- testcase/syscalls/ltp.syscalls.fallocate05.sh | 2 +- testcase/syscalls/ltp.syscalls.fallocate06.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify01.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify02.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify03.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify04.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify05.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify06.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify07.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify08.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify09.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify10.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify11.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify12.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify13.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify14.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify15.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify16.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify17.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify18.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify19.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify20.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify21.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify22.sh | 2 +- testcase/syscalls/ltp.syscalls.fanotify23.sh | 4 ++-- testcase/syscalls/ltp.syscalls.fchdir01.sh | 2 +- testcase/syscalls/ltp.syscalls.fchdir02.sh | 2 +- testcase/syscalls/ltp.syscalls.fchdir03.sh | 2 +- testcase/syscalls/ltp.syscalls.fchmod01.sh | 2 +- testcase/syscalls/ltp.syscalls.fchmod02.sh | 2 +- testcase/syscalls/ltp.syscalls.fchmod03.sh | 2 +- testcase/syscalls/ltp.syscalls.fchmod04.sh | 2 +- testcase/syscalls/ltp.syscalls.fchmod05.sh | 2 +- testcase/syscalls/ltp.syscalls.fchmod06.sh | 2 +- testcase/syscalls/ltp.syscalls.fchmodat01.sh | 2 +- testcase/syscalls/ltp.syscalls.fchmodat02.sh | 4 ++-- testcase/syscalls/ltp.syscalls.fchown01.sh | 2 +- testcase/syscalls/ltp.syscalls.fchown01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.fchown02.sh | 2 +- testcase/syscalls/ltp.syscalls.fchown02_16.sh | 2 +- testcase/syscalls/ltp.syscalls.fchown03.sh | 2 +- testcase/syscalls/ltp.syscalls.fchown03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.fchown04.sh | 2 +- testcase/syscalls/ltp.syscalls.fchown04_16.sh | 2 +- testcase/syscalls/ltp.syscalls.fchown05.sh | 2 +- testcase/syscalls/ltp.syscalls.fchown05_16.sh | 2 +- testcase/syscalls/ltp.syscalls.fchownat01.sh | 2 +- testcase/syscalls/ltp.syscalls.fchownat02.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl01.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl01_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl02.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl02_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl03.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl03_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl04.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl04_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl05.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl05_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl07.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl07_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl08.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl08_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl09.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl09_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl10.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl10_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl11.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl11_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl12.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl12_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl13.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl13_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl14.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl14_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl15.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl15_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl16.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl16_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl17.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl17_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl18.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl18_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl19.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl19_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl20.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl20_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl21.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl21_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl22.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl22_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl23.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl23_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl24.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl24_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl25.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl25_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl26.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl26_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl27.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl27_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl29.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl29_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl30.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl30_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl31.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl31_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl32.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl32_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl33.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl33_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl34.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl34_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl35.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl35_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl36.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl36_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl37.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl37_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl38.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl38_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl39.sh | 2 +- testcase/syscalls/ltp.syscalls.fcntl39_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fdatasync01.sh | 2 +- testcase/syscalls/ltp.syscalls.fdatasync02.sh | 2 +- testcase/syscalls/ltp.syscalls.fdatasync03.sh | 2 +- testcase/syscalls/ltp.syscalls.fgetxattr01.sh | 2 +- testcase/syscalls/ltp.syscalls.fgetxattr02.sh | 2 +- testcase/syscalls/ltp.syscalls.fgetxattr03.sh | 2 +- testcase/syscalls/ltp.syscalls.finit_module01.sh | 2 +- testcase/syscalls/ltp.syscalls.finit_module02.sh | 2 +- testcase/syscalls/ltp.syscalls.flistxattr01.sh | 2 +- testcase/syscalls/ltp.syscalls.flistxattr02.sh | 2 +- testcase/syscalls/ltp.syscalls.flistxattr03.sh | 2 +- testcase/syscalls/ltp.syscalls.flock01.sh | 2 +- testcase/syscalls/ltp.syscalls.flock02.sh | 2 +- testcase/syscalls/ltp.syscalls.flock03.sh | 2 +- testcase/syscalls/ltp.syscalls.flock04.sh | 2 +- testcase/syscalls/ltp.syscalls.flock06.sh | 2 +- testcase/syscalls/ltp.syscalls.fmtmsg01.sh | 2 +- testcase/syscalls/ltp.syscalls.fork01.sh | 2 +- testcase/syscalls/ltp.syscalls.fork03.sh | 2 +- testcase/syscalls/ltp.syscalls.fork04.sh | 2 +- testcase/syscalls/ltp.syscalls.fork05.sh | 2 +- testcase/syscalls/ltp.syscalls.fork06.sh | 2 +- testcase/syscalls/ltp.syscalls.fork07.sh | 2 +- testcase/syscalls/ltp.syscalls.fork08.sh | 2 +- testcase/syscalls/ltp.syscalls.fork09.sh | 2 +- testcase/syscalls/ltp.syscalls.fork10.sh | 2 +- testcase/syscalls/ltp.syscalls.fork11.sh | 2 +- testcase/syscalls/ltp.syscalls.fork13.sh | 2 +- testcase/syscalls/ltp.syscalls.fork14.sh | 2 +- testcase/syscalls/ltp.syscalls.fpathconf01.sh | 2 +- testcase/syscalls/ltp.syscalls.fremovexattr01.sh | 2 +- testcase/syscalls/ltp.syscalls.fremovexattr02.sh | 2 +- testcase/syscalls/ltp.syscalls.fsconfig01.sh | 2 +- testcase/syscalls/ltp.syscalls.fsconfig02.sh | 2 +- testcase/syscalls/ltp.syscalls.fsconfig03.sh | 2 +- testcase/syscalls/ltp.syscalls.fsetxattr01.sh | 2 +- testcase/syscalls/ltp.syscalls.fsetxattr02.sh | 2 +- testcase/syscalls/ltp.syscalls.fsmount01.sh | 2 +- testcase/syscalls/ltp.syscalls.fsmount02.sh | 2 +- testcase/syscalls/ltp.syscalls.fsopen01.sh | 2 +- testcase/syscalls/ltp.syscalls.fsopen02.sh | 2 +- testcase/syscalls/ltp.syscalls.fspick01.sh | 2 +- testcase/syscalls/ltp.syscalls.fspick02.sh | 2 +- testcase/syscalls/ltp.syscalls.fstat02.sh | 2 +- testcase/syscalls/ltp.syscalls.fstat02_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fstat03.sh | 2 +- testcase/syscalls/ltp.syscalls.fstat03_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fstatat01.sh | 2 +- testcase/syscalls/ltp.syscalls.fstatfs01.sh | 2 +- testcase/syscalls/ltp.syscalls.fstatfs01_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fstatfs02.sh | 2 +- testcase/syscalls/ltp.syscalls.fstatfs02_64.sh | 2 +- testcase/syscalls/ltp.syscalls.fsync01.sh | 2 +- testcase/syscalls/ltp.syscalls.fsync02.sh | 2 +- testcase/syscalls/ltp.syscalls.fsync03.sh | 2 +- testcase/syscalls/ltp.syscalls.fsync04.sh | 2 +- testcase/syscalls/ltp.syscalls.ftruncate01.sh | 2 +- testcase/syscalls/ltp.syscalls.ftruncate01_64.sh | 2 +- testcase/syscalls/ltp.syscalls.ftruncate03.sh | 2 +- testcase/syscalls/ltp.syscalls.ftruncate03_64.sh | 2 +- testcase/syscalls/ltp.syscalls.ftruncate04.sh | 2 +- testcase/syscalls/ltp.syscalls.ftruncate04_64.sh | 2 +- testcase/syscalls/ltp.syscalls.futex_cmp_requeue01.sh | 2 +- testcase/syscalls/ltp.syscalls.futex_cmp_requeue02.sh | 2 +- testcase/syscalls/ltp.syscalls.futex_wait01.sh | 2 +- testcase/syscalls/ltp.syscalls.futex_wait02.sh | 2 +- testcase/syscalls/ltp.syscalls.futex_wait03.sh | 2 +- testcase/syscalls/ltp.syscalls.futex_wait04.sh | 2 +- testcase/syscalls/ltp.syscalls.futex_wait05.sh | 2 +- testcase/syscalls/ltp.syscalls.futex_wait_bitset01.sh | 2 +- testcase/syscalls/ltp.syscalls.futex_waitv01.sh | 2 +- testcase/syscalls/ltp.syscalls.futex_waitv02.sh | 2 +- testcase/syscalls/ltp.syscalls.futex_waitv03.sh | 2 +- testcase/syscalls/ltp.syscalls.futex_wake01.sh | 2 +- testcase/syscalls/ltp.syscalls.futex_wake02.sh | 2 +- testcase/syscalls/ltp.syscalls.futex_wake03.sh | 2 +- testcase/syscalls/ltp.syscalls.futex_wake04.sh | 2 +- testcase/syscalls/ltp.syscalls.futimesat01.sh | 2 +- testcase/syscalls/ltp.syscalls.get_mempolicy01.sh | 2 +- testcase/syscalls/ltp.syscalls.get_mempolicy02.sh | 2 +- testcase/syscalls/ltp.syscalls.get_robust_list01.sh | 2 +- testcase/syscalls/ltp.syscalls.getcontext01.sh | 2 +- testcase/syscalls/ltp.syscalls.getcpu01.sh | 2 +- testcase/syscalls/ltp.syscalls.getcwd01.sh | 2 +- testcase/syscalls/ltp.syscalls.getcwd02.sh | 2 +- testcase/syscalls/ltp.syscalls.getcwd03.sh | 2 +- testcase/syscalls/ltp.syscalls.getcwd04.sh | 2 +- testcase/syscalls/ltp.syscalls.getdents01.sh | 2 +- testcase/syscalls/ltp.syscalls.getdents02.sh | 2 +- testcase/syscalls/ltp.syscalls.getdomainname01.sh | 2 +- testcase/syscalls/ltp.syscalls.getegid01.sh | 2 +- testcase/syscalls/ltp.syscalls.getegid01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.getegid02.sh | 2 +- testcase/syscalls/ltp.syscalls.getegid02_16.sh | 2 +- testcase/syscalls/ltp.syscalls.geteuid01.sh | 2 +- testcase/syscalls/ltp.syscalls.geteuid01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.geteuid02.sh | 2 +- testcase/syscalls/ltp.syscalls.geteuid02_16.sh | 2 +- testcase/syscalls/ltp.syscalls.getgid01.sh | 2 +- testcase/syscalls/ltp.syscalls.getgid01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.getgid03.sh | 2 +- testcase/syscalls/ltp.syscalls.getgid03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.getgroups01.sh | 2 +- testcase/syscalls/ltp.syscalls.getgroups01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.getgroups03.sh | 2 +- testcase/syscalls/ltp.syscalls.getgroups03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.gethostbyname_r01.sh | 2 +- testcase/syscalls/ltp.syscalls.gethostid01.sh | 2 +- testcase/syscalls/ltp.syscalls.gethostname01.sh | 2 +- testcase/syscalls/ltp.syscalls.gethostname02.sh | 4 ++-- testcase/syscalls/ltp.syscalls.getitimer01.sh | 2 +- testcase/syscalls/ltp.syscalls.getitimer02.sh | 2 +- testcase/syscalls/ltp.syscalls.getpagesize01.sh | 2 +- testcase/syscalls/ltp.syscalls.getpeername01.sh | 2 +- testcase/syscalls/ltp.syscalls.getpgid01.sh | 2 +- testcase/syscalls/ltp.syscalls.getpgid02.sh | 2 +- testcase/syscalls/ltp.syscalls.getpgrp01.sh | 2 +- testcase/syscalls/ltp.syscalls.getpid01.sh | 2 +- testcase/syscalls/ltp.syscalls.getpid02.sh | 2 +- testcase/syscalls/ltp.syscalls.getppid01.sh | 2 +- testcase/syscalls/ltp.syscalls.getppid02.sh | 2 +- testcase/syscalls/ltp.syscalls.getpriority01.sh | 2 +- testcase/syscalls/ltp.syscalls.getpriority02.sh | 2 +- testcase/syscalls/ltp.syscalls.getrandom01.sh | 2 +- testcase/syscalls/ltp.syscalls.getrandom02.sh | 2 +- testcase/syscalls/ltp.syscalls.getrandom03.sh | 2 +- testcase/syscalls/ltp.syscalls.getrandom04.sh | 2 +- testcase/syscalls/ltp.syscalls.getrandom05.sh | 4 ++-- testcase/syscalls/ltp.syscalls.getresgid01.sh | 2 +- testcase/syscalls/ltp.syscalls.getresgid01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.getresgid02.sh | 2 +- testcase/syscalls/ltp.syscalls.getresgid02_16.sh | 2 +- testcase/syscalls/ltp.syscalls.getresgid03.sh | 2 +- testcase/syscalls/ltp.syscalls.getresgid03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.getresuid01.sh | 2 +- testcase/syscalls/ltp.syscalls.getresuid01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.getresuid02.sh | 2 +- testcase/syscalls/ltp.syscalls.getresuid02_16.sh | 2 +- testcase/syscalls/ltp.syscalls.getresuid03.sh | 2 +- testcase/syscalls/ltp.syscalls.getresuid03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.getrlimit01.sh | 2 +- testcase/syscalls/ltp.syscalls.getrlimit02.sh | 2 +- testcase/syscalls/ltp.syscalls.getrlimit03.sh | 2 +- testcase/syscalls/ltp.syscalls.getrusage01.sh | 2 +- testcase/syscalls/ltp.syscalls.getrusage02.sh | 2 +- testcase/syscalls/ltp.syscalls.getrusage03.sh | 2 +- testcase/syscalls/ltp.syscalls.getrusage04.sh | 2 +- testcase/syscalls/ltp.syscalls.getsid01.sh | 2 +- testcase/syscalls/ltp.syscalls.getsid02.sh | 2 +- testcase/syscalls/ltp.syscalls.getsockname01.sh | 2 +- testcase/syscalls/ltp.syscalls.getsockopt01.sh | 2 +- testcase/syscalls/ltp.syscalls.getsockopt02.sh | 2 +- testcase/syscalls/ltp.syscalls.gettid01.sh | 2 +- testcase/syscalls/ltp.syscalls.gettid02.sh | 4 ++-- testcase/syscalls/ltp.syscalls.gettimeofday01.sh | 2 +- testcase/syscalls/ltp.syscalls.gettimeofday02.sh | 2 +- testcase/syscalls/ltp.syscalls.getuid01.sh | 2 +- testcase/syscalls/ltp.syscalls.getuid01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.getuid03.sh | 2 +- testcase/syscalls/ltp.syscalls.getuid03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.getxattr01.sh | 2 +- testcase/syscalls/ltp.syscalls.getxattr02.sh | 2 +- testcase/syscalls/ltp.syscalls.getxattr03.sh | 2 +- testcase/syscalls/ltp.syscalls.getxattr04.sh | 2 +- testcase/syscalls/ltp.syscalls.getxattr05.sh | 2 +- testcase/syscalls/ltp.syscalls.init_module01.sh | 2 +- testcase/syscalls/ltp.syscalls.init_module02.sh | 2 +- testcase/syscalls/ltp.syscalls.inotify01.sh | 2 +- testcase/syscalls/ltp.syscalls.inotify02.sh | 2 +- testcase/syscalls/ltp.syscalls.inotify03.sh | 2 +- testcase/syscalls/ltp.syscalls.inotify04.sh | 2 +- testcase/syscalls/ltp.syscalls.inotify05.sh | 2 +- testcase/syscalls/ltp.syscalls.inotify06.sh | 2 +- testcase/syscalls/ltp.syscalls.inotify07.sh | 2 +- testcase/syscalls/ltp.syscalls.inotify08.sh | 2 +- testcase/syscalls/ltp.syscalls.inotify09.sh | 2 +- testcase/syscalls/ltp.syscalls.inotify10.sh | 2 +- testcase/syscalls/ltp.syscalls.inotify11.sh | 2 +- testcase/syscalls/ltp.syscalls.inotify12.sh | 2 +- testcase/syscalls/ltp.syscalls.inotify_init1_01.sh | 2 +- testcase/syscalls/ltp.syscalls.inotify_init1_02.sh | 2 +- testcase/syscalls/ltp.syscalls.io_cancel01.sh | 2 +- testcase/syscalls/ltp.syscalls.io_cancel02.sh | 2 +- testcase/syscalls/ltp.syscalls.io_destroy01.sh | 2 +- testcase/syscalls/ltp.syscalls.io_destroy02.sh | 2 +- testcase/syscalls/ltp.syscalls.io_getevents01.sh | 2 +- testcase/syscalls/ltp.syscalls.io_getevents02.sh | 2 +- testcase/syscalls/ltp.syscalls.io_pgetevents01.sh | 2 +- testcase/syscalls/ltp.syscalls.io_pgetevents02.sh | 2 +- testcase/syscalls/ltp.syscalls.io_setup01.sh | 2 +- testcase/syscalls/ltp.syscalls.io_setup02.sh | 2 +- testcase/syscalls/ltp.syscalls.io_submit01.sh | 2 +- testcase/syscalls/ltp.syscalls.io_submit02.sh | 2 +- testcase/syscalls/ltp.syscalls.io_submit03.sh | 2 +- testcase/syscalls/ltp.syscalls.io_uring01.sh | 2 +- testcase/syscalls/ltp.syscalls.io_uring02.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl01.sh | 4 ++-- testcase/syscalls/ltp.syscalls.ioctl02.sh | 4 ++-- testcase/syscalls/ltp.syscalls.ioctl03.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl04.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl05.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl06.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl07.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl08.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl09.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl_loop01.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl_loop02.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl_loop03.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl_loop04.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl_loop05.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl_loop06.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl_loop07.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl_ns01.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl_ns02.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl_ns03.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl_ns04.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl_ns05.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl_ns06.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl_ns07.sh | 2 +- testcase/syscalls/ltp.syscalls.ioctl_sg01.sh | 2 +- testcase/syscalls/ltp.syscalls.ioperm01.sh | 2 +- testcase/syscalls/ltp.syscalls.ioperm02.sh | 2 +- testcase/syscalls/ltp.syscalls.iopl01.sh | 2 +- testcase/syscalls/ltp.syscalls.iopl02.sh | 2 +- testcase/syscalls/ltp.syscalls.ioprio_get01.sh | 2 +- testcase/syscalls/ltp.syscalls.ioprio_set01.sh | 2 +- testcase/syscalls/ltp.syscalls.ioprio_set02.sh | 2 +- testcase/syscalls/ltp.syscalls.ioprio_set03.sh | 2 +- testcase/syscalls/ltp.syscalls.kcmp01.sh | 2 +- testcase/syscalls/ltp.syscalls.kcmp02.sh | 2 +- testcase/syscalls/ltp.syscalls.kcmp03.sh | 2 +- testcase/syscalls/ltp.syscalls.keyctl01.sh | 2 +- testcase/syscalls/ltp.syscalls.keyctl02.sh | 2 +- testcase/syscalls/ltp.syscalls.keyctl03.sh | 2 +- testcase/syscalls/ltp.syscalls.keyctl04.sh | 2 +- testcase/syscalls/ltp.syscalls.keyctl05.sh | 2 +- testcase/syscalls/ltp.syscalls.keyctl06.sh | 2 +- testcase/syscalls/ltp.syscalls.keyctl07.sh | 2 +- testcase/syscalls/ltp.syscalls.keyctl08.sh | 2 +- testcase/syscalls/ltp.syscalls.keyctl09.sh | 2 +- testcase/syscalls/ltp.syscalls.kill02.sh | 2 +- testcase/syscalls/ltp.syscalls.kill03.sh | 2 +- testcase/syscalls/ltp.syscalls.kill05.sh | 2 +- testcase/syscalls/ltp.syscalls.kill06.sh | 2 +- testcase/syscalls/ltp.syscalls.kill07.sh | 2 +- testcase/syscalls/ltp.syscalls.kill08.sh | 2 +- testcase/syscalls/ltp.syscalls.kill09.sh | 2 +- testcase/syscalls/ltp.syscalls.kill10.sh | 2 +- testcase/syscalls/ltp.syscalls.kill11.sh | 2 +- testcase/syscalls/ltp.syscalls.kill12.sh | 2 +- testcase/syscalls/ltp.syscalls.kill13.sh | 2 +- testcase/syscalls/ltp.syscalls.lchown01.sh | 2 +- testcase/syscalls/ltp.syscalls.lchown01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.lchown02.sh | 2 +- testcase/syscalls/ltp.syscalls.lchown02_16.sh | 2 +- testcase/syscalls/ltp.syscalls.lchown03.sh | 2 +- testcase/syscalls/ltp.syscalls.lchown03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.leapsec01.sh | 2 +- testcase/syscalls/ltp.syscalls.lgetxattr01.sh | 2 +- testcase/syscalls/ltp.syscalls.lgetxattr02.sh | 2 +- testcase/syscalls/ltp.syscalls.link01.sh | 2 +- testcase/syscalls/ltp.syscalls.link02.sh | 2 +- testcase/syscalls/ltp.syscalls.link04.sh | 2 +- testcase/syscalls/ltp.syscalls.link05.sh | 2 +- testcase/syscalls/ltp.syscalls.link08.sh | 2 +- testcase/syscalls/ltp.syscalls.linkat01.sh | 2 +- testcase/syscalls/ltp.syscalls.linkat02.sh | 2 +- testcase/syscalls/ltp.syscalls.listen01.sh | 2 +- testcase/syscalls/ltp.syscalls.listxattr01.sh | 2 +- testcase/syscalls/ltp.syscalls.listxattr02.sh | 2 +- testcase/syscalls/ltp.syscalls.listxattr03.sh | 2 +- testcase/syscalls/ltp.syscalls.llistxattr01.sh | 2 +- testcase/syscalls/ltp.syscalls.llistxattr02.sh | 2 +- testcase/syscalls/ltp.syscalls.llistxattr03.sh | 2 +- testcase/syscalls/ltp.syscalls.llseek01.sh | 2 +- testcase/syscalls/ltp.syscalls.llseek02.sh | 2 +- testcase/syscalls/ltp.syscalls.llseek03.sh | 2 +- testcase/syscalls/ltp.syscalls.lremovexattr01.sh | 2 +- testcase/syscalls/ltp.syscalls.lseek01.sh | 2 +- testcase/syscalls/ltp.syscalls.lseek02.sh | 2 +- testcase/syscalls/ltp.syscalls.lseek07.sh | 2 +- testcase/syscalls/ltp.syscalls.lseek11.sh | 2 +- testcase/syscalls/ltp.syscalls.lstat01.sh | 2 +- testcase/syscalls/ltp.syscalls.lstat01A.sh | 2 +- testcase/syscalls/ltp.syscalls.lstat01A_64.sh | 2 +- testcase/syscalls/ltp.syscalls.lstat01_64.sh | 2 +- testcase/syscalls/ltp.syscalls.lstat02.sh | 2 +- testcase/syscalls/ltp.syscalls.lstat02_64.sh | 2 +- testcase/syscalls/ltp.syscalls.madvise01.sh | 2 +- testcase/syscalls/ltp.syscalls.madvise02.sh | 2 +- testcase/syscalls/ltp.syscalls.madvise03.sh | 2 +- testcase/syscalls/ltp.syscalls.madvise05.sh | 2 +- testcase/syscalls/ltp.syscalls.madvise06.sh | 2 +- testcase/syscalls/ltp.syscalls.madvise07.sh | 2 +- testcase/syscalls/ltp.syscalls.madvise08.sh | 2 +- testcase/syscalls/ltp.syscalls.madvise09.sh | 2 +- testcase/syscalls/ltp.syscalls.madvise10.sh | 2 +- testcase/syscalls/ltp.syscalls.madvise11.sh | 2 +- testcase/syscalls/ltp.syscalls.mallinfo02.sh | 2 +- testcase/syscalls/ltp.syscalls.mallinfo2_01.sh | 2 +- testcase/syscalls/ltp.syscalls.mallopt01.sh | 2 +- testcase/syscalls/ltp.syscalls.mbind01.sh | 2 +- testcase/syscalls/ltp.syscalls.mbind02.sh | 2 +- testcase/syscalls/ltp.syscalls.mbind03.sh | 2 +- testcase/syscalls/ltp.syscalls.mbind04.sh | 2 +- testcase/syscalls/ltp.syscalls.membarrier01.sh | 2 +- testcase/syscalls/ltp.syscalls.memcmp01.sh | 2 +- testcase/syscalls/ltp.syscalls.memcpy01.sh | 2 +- testcase/syscalls/ltp.syscalls.memfd_create01.sh | 2 +- testcase/syscalls/ltp.syscalls.memfd_create02.sh | 2 +- testcase/syscalls/ltp.syscalls.memfd_create03.sh | 2 +- testcase/syscalls/ltp.syscalls.memfd_create04.sh | 2 +- testcase/syscalls/ltp.syscalls.memset01.sh | 2 +- testcase/syscalls/ltp.syscalls.migrate_pages01.sh | 2 +- testcase/syscalls/ltp.syscalls.migrate_pages02.sh | 2 +- testcase/syscalls/ltp.syscalls.migrate_pages03.sh | 2 +- testcase/syscalls/ltp.syscalls.mincore01.sh | 2 +- testcase/syscalls/ltp.syscalls.mincore02.sh | 2 +- testcase/syscalls/ltp.syscalls.mincore03.sh | 2 +- testcase/syscalls/ltp.syscalls.mincore04.sh | 2 +- testcase/syscalls/ltp.syscalls.mkdir02.sh | 2 +- testcase/syscalls/ltp.syscalls.mkdir03.sh | 2 +- testcase/syscalls/ltp.syscalls.mkdir04.sh | 2 +- testcase/syscalls/ltp.syscalls.mkdir05.sh | 2 +- testcase/syscalls/ltp.syscalls.mkdir09.sh | 2 +- testcase/syscalls/ltp.syscalls.mkdirat01.sh | 2 +- testcase/syscalls/ltp.syscalls.mkdirat02.sh | 2 +- testcase/syscalls/ltp.syscalls.mknod01.sh | 2 +- testcase/syscalls/ltp.syscalls.mknod02.sh | 2 +- testcase/syscalls/ltp.syscalls.mknod03.sh | 2 +- testcase/syscalls/ltp.syscalls.mknod04.sh | 2 +- testcase/syscalls/ltp.syscalls.mknod05.sh | 2 +- testcase/syscalls/ltp.syscalls.mknod06.sh | 2 +- testcase/syscalls/ltp.syscalls.mknod07.sh | 2 +- testcase/syscalls/ltp.syscalls.mknod08.sh | 2 +- testcase/syscalls/ltp.syscalls.mknod09.sh | 2 +- testcase/syscalls/ltp.syscalls.mknodat01.sh | 2 +- testcase/syscalls/ltp.syscalls.mknodat02.sh | 2 +- testcase/syscalls/ltp.syscalls.mlock01.sh | 2 +- testcase/syscalls/ltp.syscalls.mlock02.sh | 2 +- testcase/syscalls/ltp.syscalls.mlock03.sh | 2 +- testcase/syscalls/ltp.syscalls.mlock04.sh | 2 +- testcase/syscalls/ltp.syscalls.mlock05.sh | 4 ++-- testcase/syscalls/ltp.syscalls.mlock201.sh | 2 +- testcase/syscalls/ltp.syscalls.mlock202.sh | 2 +- testcase/syscalls/ltp.syscalls.mlock203.sh | 2 +- testcase/syscalls/ltp.syscalls.mlockall01.sh | 2 +- testcase/syscalls/ltp.syscalls.mlockall02.sh | 2 +- testcase/syscalls/ltp.syscalls.mlockall03.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap01.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap02.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap03.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap04.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap05.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap06.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap08.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap09.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap12.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap13.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap14.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap15.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap16.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap17.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap18.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap19.sh | 2 +- testcase/syscalls/ltp.syscalls.mmap20.sh | 2 +- testcase/syscalls/ltp.syscalls.modify_ldt01.sh | 2 +- testcase/syscalls/ltp.syscalls.modify_ldt02.sh | 2 +- testcase/syscalls/ltp.syscalls.modify_ldt03.sh | 2 +- testcase/syscalls/ltp.syscalls.mount01.sh | 2 +- testcase/syscalls/ltp.syscalls.mount02.sh | 2 +- testcase/syscalls/ltp.syscalls.mount03.sh | 2 +- testcase/syscalls/ltp.syscalls.mount04.sh | 2 +- testcase/syscalls/ltp.syscalls.mount05.sh | 2 +- testcase/syscalls/ltp.syscalls.mount06.sh | 2 +- testcase/syscalls/ltp.syscalls.mount07.sh | 2 +- testcase/syscalls/ltp.syscalls.mount_setattr01.sh | 2 +- testcase/syscalls/ltp.syscalls.move_mount01.sh | 2 +- testcase/syscalls/ltp.syscalls.move_mount02.sh | 2 +- testcase/syscalls/ltp.syscalls.move_pages01.sh | 2 +- testcase/syscalls/ltp.syscalls.move_pages02.sh | 2 +- testcase/syscalls/ltp.syscalls.move_pages03.sh | 2 +- testcase/syscalls/ltp.syscalls.move_pages04.sh | 2 +- testcase/syscalls/ltp.syscalls.move_pages05.sh | 2 +- testcase/syscalls/ltp.syscalls.move_pages06.sh | 2 +- testcase/syscalls/ltp.syscalls.move_pages07.sh | 2 +- testcase/syscalls/ltp.syscalls.move_pages09.sh | 2 +- testcase/syscalls/ltp.syscalls.move_pages10.sh | 2 +- testcase/syscalls/ltp.syscalls.move_pages11.sh | 2 +- testcase/syscalls/ltp.syscalls.move_pages12.sh | 2 +- testcase/syscalls/ltp.syscalls.mprotect01.sh | 2 +- testcase/syscalls/ltp.syscalls.mprotect02.sh | 2 +- testcase/syscalls/ltp.syscalls.mprotect03.sh | 2 +- testcase/syscalls/ltp.syscalls.mprotect04.sh | 2 +- testcase/syscalls/ltp.syscalls.mprotect05.sh | 2 +- testcase/syscalls/ltp.syscalls.mq_notify01.sh | 2 +- testcase/syscalls/ltp.syscalls.mq_notify02.sh | 2 +- testcase/syscalls/ltp.syscalls.mq_notify03.sh | 2 +- testcase/syscalls/ltp.syscalls.mq_open01.sh | 2 +- testcase/syscalls/ltp.syscalls.mq_timedreceive01.sh | 2 +- testcase/syscalls/ltp.syscalls.mq_timedsend01.sh | 2 +- testcase/syscalls/ltp.syscalls.mq_unlink01.sh | 2 +- testcase/syscalls/ltp.syscalls.mremap01.sh | 2 +- testcase/syscalls/ltp.syscalls.mremap02.sh | 2 +- testcase/syscalls/ltp.syscalls.mremap03.sh | 2 +- testcase/syscalls/ltp.syscalls.mremap04.sh | 2 +- testcase/syscalls/ltp.syscalls.mremap05.sh | 2 +- testcase/syscalls/ltp.syscalls.mremap06.sh | 4 ++-- testcase/syscalls/ltp.syscalls.msgctl01.sh | 2 +- testcase/syscalls/ltp.syscalls.msgctl02.sh | 2 +- testcase/syscalls/ltp.syscalls.msgctl03.sh | 2 +- testcase/syscalls/ltp.syscalls.msgctl04.sh | 2 +- testcase/syscalls/ltp.syscalls.msgctl05.sh | 2 +- testcase/syscalls/ltp.syscalls.msgctl06.sh | 2 +- testcase/syscalls/ltp.syscalls.msgctl12.sh | 2 +- testcase/syscalls/ltp.syscalls.msgget01.sh | 2 +- testcase/syscalls/ltp.syscalls.msgget02.sh | 2 +- testcase/syscalls/ltp.syscalls.msgget03.sh | 2 +- testcase/syscalls/ltp.syscalls.msgget04.sh | 2 +- testcase/syscalls/ltp.syscalls.msgget05.sh | 2 +- testcase/syscalls/ltp.syscalls.msgrcv01.sh | 2 +- testcase/syscalls/ltp.syscalls.msgrcv02.sh | 2 +- testcase/syscalls/ltp.syscalls.msgrcv03.sh | 2 +- testcase/syscalls/ltp.syscalls.msgrcv05.sh | 2 +- testcase/syscalls/ltp.syscalls.msgrcv06.sh | 2 +- testcase/syscalls/ltp.syscalls.msgrcv07.sh | 2 +- testcase/syscalls/ltp.syscalls.msgrcv08.sh | 2 +- testcase/syscalls/ltp.syscalls.msgsnd01.sh | 2 +- testcase/syscalls/ltp.syscalls.msgsnd02.sh | 2 +- testcase/syscalls/ltp.syscalls.msgsnd05.sh | 2 +- testcase/syscalls/ltp.syscalls.msgsnd06.sh | 2 +- testcase/syscalls/ltp.syscalls.msgstress01.sh | 2 +- testcase/syscalls/ltp.syscalls.msync01.sh | 2 +- testcase/syscalls/ltp.syscalls.msync02.sh | 2 +- testcase/syscalls/ltp.syscalls.msync03.sh | 2 +- testcase/syscalls/ltp.syscalls.msync04.sh | 2 +- testcase/syscalls/ltp.syscalls.munlock01.sh | 2 +- testcase/syscalls/ltp.syscalls.munlock02.sh | 2 +- testcase/syscalls/ltp.syscalls.munlockall01.sh | 2 +- testcase/syscalls/ltp.syscalls.munmap01.sh | 2 +- testcase/syscalls/ltp.syscalls.munmap02.sh | 2 +- testcase/syscalls/ltp.syscalls.munmap03.sh | 2 +- testcase/syscalls/ltp.syscalls.name_to_handle_at01.sh | 2 +- testcase/syscalls/ltp.syscalls.name_to_handle_at02.sh | 2 +- testcase/syscalls/ltp.syscalls.nanosleep01.sh | 2 +- testcase/syscalls/ltp.syscalls.nanosleep02.sh | 2 +- testcase/syscalls/ltp.syscalls.nanosleep04.sh | 2 +- testcase/syscalls/ltp.syscalls.newuname01.sh | 2 +- testcase/syscalls/ltp.syscalls.nftw01.sh | 2 +- testcase/syscalls/ltp.syscalls.nftw6401.sh | 2 +- testcase/syscalls/ltp.syscalls.nice01.sh | 2 +- testcase/syscalls/ltp.syscalls.nice02.sh | 2 +- testcase/syscalls/ltp.syscalls.nice03.sh | 2 +- testcase/syscalls/ltp.syscalls.nice04.sh | 2 +- testcase/syscalls/ltp.syscalls.nice05.sh | 2 +- testcase/syscalls/ltp.syscalls.open01.sh | 2 +- testcase/syscalls/ltp.syscalls.open01A.sh | 2 +- testcase/syscalls/ltp.syscalls.open02.sh | 2 +- testcase/syscalls/ltp.syscalls.open03.sh | 2 +- testcase/syscalls/ltp.syscalls.open04.sh | 2 +- testcase/syscalls/ltp.syscalls.open06.sh | 2 +- testcase/syscalls/ltp.syscalls.open07.sh | 2 +- testcase/syscalls/ltp.syscalls.open08.sh | 2 +- testcase/syscalls/ltp.syscalls.open09.sh | 2 +- testcase/syscalls/ltp.syscalls.open10.sh | 2 +- testcase/syscalls/ltp.syscalls.open11.sh | 2 +- testcase/syscalls/ltp.syscalls.open12.sh | 2 +- testcase/syscalls/ltp.syscalls.open13.sh | 2 +- testcase/syscalls/ltp.syscalls.open14.sh | 2 +- testcase/syscalls/ltp.syscalls.open_by_handle_at01.sh | 2 +- testcase/syscalls/ltp.syscalls.open_by_handle_at02.sh | 2 +- testcase/syscalls/ltp.syscalls.open_tree01.sh | 2 +- testcase/syscalls/ltp.syscalls.open_tree02.sh | 2 +- testcase/syscalls/ltp.syscalls.openat01.sh | 2 +- testcase/syscalls/ltp.syscalls.openat02.sh | 2 +- testcase/syscalls/ltp.syscalls.openat03.sh | 2 +- testcase/syscalls/ltp.syscalls.openat04.sh | 2 +- testcase/syscalls/ltp.syscalls.openat201.sh | 2 +- testcase/syscalls/ltp.syscalls.openat202.sh | 2 +- testcase/syscalls/ltp.syscalls.openat203.sh | 2 +- testcase/syscalls/ltp.syscalls.pathconf01.sh | 2 +- testcase/syscalls/ltp.syscalls.pathconf02.sh | 4 ++-- testcase/syscalls/ltp.syscalls.pause01.sh | 2 +- testcase/syscalls/ltp.syscalls.pause02.sh | 2 +- testcase/syscalls/ltp.syscalls.pause03.sh | 2 +- testcase/syscalls/ltp.syscalls.perf_event_open01.sh | 2 +- testcase/syscalls/ltp.syscalls.perf_event_open02.sh | 2 +- testcase/syscalls/ltp.syscalls.perf_event_open03.sh | 2 +- testcase/syscalls/ltp.syscalls.personality01.sh | 2 +- testcase/syscalls/ltp.syscalls.personality02.sh | 2 +- testcase/syscalls/ltp.syscalls.pidfd_getfd01.sh | 2 +- testcase/syscalls/ltp.syscalls.pidfd_getfd02.sh | 2 +- testcase/syscalls/ltp.syscalls.pidfd_open01.sh | 2 +- testcase/syscalls/ltp.syscalls.pidfd_open02.sh | 2 +- testcase/syscalls/ltp.syscalls.pidfd_open03.sh | 2 +- testcase/syscalls/ltp.syscalls.pidfd_open04.sh | 2 +- testcase/syscalls/ltp.syscalls.pidfd_send_signal01.sh | 2 +- testcase/syscalls/ltp.syscalls.pidfd_send_signal02.sh | 2 +- testcase/syscalls/ltp.syscalls.pidfd_send_signal03.sh | 2 +- testcase/syscalls/ltp.syscalls.pipe01.sh | 2 +- testcase/syscalls/ltp.syscalls.pipe02.sh | 2 +- testcase/syscalls/ltp.syscalls.pipe03.sh | 2 +- testcase/syscalls/ltp.syscalls.pipe04.sh | 2 +- testcase/syscalls/ltp.syscalls.pipe05.sh | 2 +- testcase/syscalls/ltp.syscalls.pipe06.sh | 2 +- testcase/syscalls/ltp.syscalls.pipe07.sh | 2 +- testcase/syscalls/ltp.syscalls.pipe08.sh | 2 +- testcase/syscalls/ltp.syscalls.pipe09.sh | 2 +- testcase/syscalls/ltp.syscalls.pipe10.sh | 2 +- testcase/syscalls/ltp.syscalls.pipe11.sh | 2 +- testcase/syscalls/ltp.syscalls.pipe12.sh | 2 +- testcase/syscalls/ltp.syscalls.pipe13.sh | 2 +- testcase/syscalls/ltp.syscalls.pipe14.sh | 4 ++-- testcase/syscalls/ltp.syscalls.pipe15.sh | 4 ++-- testcase/syscalls/ltp.syscalls.pipe2_01.sh | 2 +- testcase/syscalls/ltp.syscalls.pipe2_02.sh | 2 +- testcase/syscalls/ltp.syscalls.pipe2_04.sh | 2 +- testcase/syscalls/ltp.syscalls.pivot_root01.sh | 2 +- testcase/syscalls/ltp.syscalls.pkey01.sh | 2 +- testcase/syscalls/ltp.syscalls.poll01.sh | 2 +- testcase/syscalls/ltp.syscalls.poll02.sh | 2 +- testcase/syscalls/ltp.syscalls.posix_fadvise01.sh | 2 +- testcase/syscalls/ltp.syscalls.posix_fadvise01_64.sh | 2 +- testcase/syscalls/ltp.syscalls.posix_fadvise02.sh | 2 +- testcase/syscalls/ltp.syscalls.posix_fadvise02_64.sh | 2 +- testcase/syscalls/ltp.syscalls.posix_fadvise03.sh | 2 +- testcase/syscalls/ltp.syscalls.posix_fadvise03_64.sh | 2 +- testcase/syscalls/ltp.syscalls.posix_fadvise04.sh | 2 +- testcase/syscalls/ltp.syscalls.posix_fadvise04_64.sh | 2 +- testcase/syscalls/ltp.syscalls.ppoll01.sh | 2 +- testcase/syscalls/ltp.syscalls.prctl01.sh | 2 +- testcase/syscalls/ltp.syscalls.prctl02.sh | 2 +- testcase/syscalls/ltp.syscalls.prctl03.sh | 2 +- testcase/syscalls/ltp.syscalls.prctl04.sh | 2 +- testcase/syscalls/ltp.syscalls.prctl05.sh | 2 +- testcase/syscalls/ltp.syscalls.prctl06.sh | 2 +- testcase/syscalls/ltp.syscalls.prctl07.sh | 2 +- testcase/syscalls/ltp.syscalls.prctl08.sh | 2 +- testcase/syscalls/ltp.syscalls.prctl09.sh | 2 +- testcase/syscalls/ltp.syscalls.prctl10.sh | 2 +- testcase/syscalls/ltp.syscalls.pread01.sh | 2 +- testcase/syscalls/ltp.syscalls.pread01_64.sh | 2 +- testcase/syscalls/ltp.syscalls.pread02.sh | 2 +- testcase/syscalls/ltp.syscalls.pread02_64.sh | 2 +- testcase/syscalls/ltp.syscalls.preadv01.sh | 2 +- testcase/syscalls/ltp.syscalls.preadv01_64.sh | 2 +- testcase/syscalls/ltp.syscalls.preadv02.sh | 2 +- testcase/syscalls/ltp.syscalls.preadv02_64.sh | 2 +- testcase/syscalls/ltp.syscalls.preadv03.sh | 2 +- testcase/syscalls/ltp.syscalls.preadv03_64.sh | 2 +- testcase/syscalls/ltp.syscalls.preadv201.sh | 2 +- testcase/syscalls/ltp.syscalls.preadv201_64.sh | 2 +- testcase/syscalls/ltp.syscalls.preadv202.sh | 2 +- testcase/syscalls/ltp.syscalls.preadv202_64.sh | 2 +- testcase/syscalls/ltp.syscalls.preadv203.sh | 2 +- testcase/syscalls/ltp.syscalls.preadv203_64.sh | 2 +- testcase/syscalls/ltp.syscalls.process_madvise01.sh | 4 ++-- testcase/syscalls/ltp.syscalls.process_vm_readv01.sh | 2 +- testcase/syscalls/ltp.syscalls.process_vm_readv02.sh | 2 +- testcase/syscalls/ltp.syscalls.process_vm_readv03.sh | 2 +- testcase/syscalls/ltp.syscalls.process_vm_writev01.sh | 2 +- testcase/syscalls/ltp.syscalls.process_vm_writev02.sh | 2 +- testcase/syscalls/ltp.syscalls.profil01.sh | 2 +- testcase/syscalls/ltp.syscalls.prot_hsymlinks.sh | 2 +- testcase/syscalls/ltp.syscalls.pselect01.sh | 2 +- testcase/syscalls/ltp.syscalls.pselect01_64.sh | 2 +- testcase/syscalls/ltp.syscalls.pselect02.sh | 2 +- testcase/syscalls/ltp.syscalls.pselect02_64.sh | 2 +- testcase/syscalls/ltp.syscalls.pselect03.sh | 2 +- testcase/syscalls/ltp.syscalls.pselect03_64.sh | 2 +- testcase/syscalls/ltp.syscalls.ptrace01.sh | 2 +- testcase/syscalls/ltp.syscalls.ptrace02.sh | 2 +- testcase/syscalls/ltp.syscalls.ptrace03.sh | 2 +- testcase/syscalls/ltp.syscalls.ptrace04.sh | 2 +- testcase/syscalls/ltp.syscalls.ptrace05.sh | 2 +- testcase/syscalls/ltp.syscalls.ptrace06.sh | 4 ++-- testcase/syscalls/ltp.syscalls.ptrace07.sh | 2 +- testcase/syscalls/ltp.syscalls.ptrace08.sh | 2 +- testcase/syscalls/ltp.syscalls.ptrace09.sh | 2 +- testcase/syscalls/ltp.syscalls.ptrace10.sh | 2 +- testcase/syscalls/ltp.syscalls.ptrace11.sh | 2 +- testcase/syscalls/ltp.syscalls.pwrite01.sh | 2 +- testcase/syscalls/ltp.syscalls.pwrite01_64.sh | 2 +- testcase/syscalls/ltp.syscalls.pwrite02.sh | 2 +- testcase/syscalls/ltp.syscalls.pwrite02_64.sh | 2 +- testcase/syscalls/ltp.syscalls.pwrite03.sh | 2 +- testcase/syscalls/ltp.syscalls.pwrite03_64.sh | 2 +- testcase/syscalls/ltp.syscalls.pwrite04.sh | 2 +- testcase/syscalls/ltp.syscalls.pwrite04_64.sh | 2 +- testcase/syscalls/ltp.syscalls.pwritev01.sh | 2 +- testcase/syscalls/ltp.syscalls.pwritev01_64.sh | 2 +- testcase/syscalls/ltp.syscalls.pwritev02.sh | 2 +- testcase/syscalls/ltp.syscalls.pwritev02_64.sh | 2 +- testcase/syscalls/ltp.syscalls.pwritev03.sh | 2 +- testcase/syscalls/ltp.syscalls.pwritev03_64.sh | 2 +- testcase/syscalls/ltp.syscalls.pwritev201.sh | 2 +- testcase/syscalls/ltp.syscalls.pwritev201_64.sh | 2 +- testcase/syscalls/ltp.syscalls.pwritev202.sh | 2 +- testcase/syscalls/ltp.syscalls.pwritev202_64.sh | 2 +- testcase/syscalls/ltp.syscalls.qmm01.sh | 2 +- testcase/syscalls/ltp.syscalls.quotactl01.sh | 2 +- testcase/syscalls/ltp.syscalls.quotactl02.sh | 2 +- testcase/syscalls/ltp.syscalls.quotactl03.sh | 2 +- testcase/syscalls/ltp.syscalls.quotactl04.sh | 2 +- testcase/syscalls/ltp.syscalls.quotactl05.sh | 2 +- testcase/syscalls/ltp.syscalls.quotactl06.sh | 2 +- testcase/syscalls/ltp.syscalls.quotactl07.sh | 2 +- testcase/syscalls/ltp.syscalls.quotactl08.sh | 2 +- testcase/syscalls/ltp.syscalls.quotactl09.sh | 2 +- testcase/syscalls/ltp.syscalls.read01.sh | 2 +- testcase/syscalls/ltp.syscalls.read02.sh | 2 +- testcase/syscalls/ltp.syscalls.read03.sh | 2 +- testcase/syscalls/ltp.syscalls.read04.sh | 2 +- testcase/syscalls/ltp.syscalls.readahead01.sh | 2 +- testcase/syscalls/ltp.syscalls.readahead02.sh | 2 +- testcase/syscalls/ltp.syscalls.readdir01.sh | 2 +- testcase/syscalls/ltp.syscalls.readdir21.sh | 2 +- testcase/syscalls/ltp.syscalls.readlink01.sh | 2 +- testcase/syscalls/ltp.syscalls.readlink01A.sh | 2 +- testcase/syscalls/ltp.syscalls.readlink03.sh | 2 +- testcase/syscalls/ltp.syscalls.readlinkat01.sh | 2 +- testcase/syscalls/ltp.syscalls.readlinkat02.sh | 2 +- testcase/syscalls/ltp.syscalls.readv01.sh | 2 +- testcase/syscalls/ltp.syscalls.readv02.sh | 2 +- testcase/syscalls/ltp.syscalls.realpath01.sh | 2 +- testcase/syscalls/ltp.syscalls.reboot01.sh | 2 +- testcase/syscalls/ltp.syscalls.reboot02.sh | 2 +- testcase/syscalls/ltp.syscalls.recv01.sh | 2 +- testcase/syscalls/ltp.syscalls.recvfrom01.sh | 2 +- testcase/syscalls/ltp.syscalls.recvmmsg01.sh | 2 +- testcase/syscalls/ltp.syscalls.recvmsg01.sh | 2 +- testcase/syscalls/ltp.syscalls.recvmsg02.sh | 2 +- testcase/syscalls/ltp.syscalls.recvmsg03.sh | 2 +- testcase/syscalls/ltp.syscalls.remap_file_pages01.sh | 2 +- testcase/syscalls/ltp.syscalls.remap_file_pages02.sh | 2 +- testcase/syscalls/ltp.syscalls.removexattr01.sh | 2 +- testcase/syscalls/ltp.syscalls.removexattr02.sh | 2 +- testcase/syscalls/ltp.syscalls.rename01.sh | 2 +- testcase/syscalls/ltp.syscalls.rename01A.sh | 2 +- testcase/syscalls/ltp.syscalls.rename03.sh | 2 +- testcase/syscalls/ltp.syscalls.rename04.sh | 2 +- testcase/syscalls/ltp.syscalls.rename05.sh | 2 +- testcase/syscalls/ltp.syscalls.rename06.sh | 2 +- testcase/syscalls/ltp.syscalls.rename07.sh | 2 +- testcase/syscalls/ltp.syscalls.rename08.sh | 2 +- testcase/syscalls/ltp.syscalls.rename09.sh | 2 +- testcase/syscalls/ltp.syscalls.rename10.sh | 2 +- testcase/syscalls/ltp.syscalls.rename11.sh | 2 +- testcase/syscalls/ltp.syscalls.rename12.sh | 2 +- testcase/syscalls/ltp.syscalls.rename13.sh | 2 +- testcase/syscalls/ltp.syscalls.rename14.sh | 2 +- testcase/syscalls/ltp.syscalls.renameat01.sh | 2 +- testcase/syscalls/ltp.syscalls.renameat201.sh | 2 +- testcase/syscalls/ltp.syscalls.renameat202.sh | 2 +- testcase/syscalls/ltp.syscalls.request_key01.sh | 2 +- testcase/syscalls/ltp.syscalls.request_key02.sh | 2 +- testcase/syscalls/ltp.syscalls.request_key03.sh | 2 +- testcase/syscalls/ltp.syscalls.request_key04.sh | 2 +- testcase/syscalls/ltp.syscalls.request_key05.sh | 2 +- testcase/syscalls/ltp.syscalls.rmdir01.sh | 2 +- testcase/syscalls/ltp.syscalls.rmdir02.sh | 2 +- testcase/syscalls/ltp.syscalls.rmdir03.sh | 2 +- testcase/syscalls/ltp.syscalls.rmdir03A.sh | 2 +- testcase/syscalls/ltp.syscalls.rt_sigaction01.sh | 2 +- testcase/syscalls/ltp.syscalls.rt_sigaction02.sh | 2 +- testcase/syscalls/ltp.syscalls.rt_sigaction03.sh | 2 +- testcase/syscalls/ltp.syscalls.rt_sigprocmask01.sh | 2 +- testcase/syscalls/ltp.syscalls.rt_sigprocmask02.sh | 2 +- testcase/syscalls/ltp.syscalls.rt_sigqueueinfo01.sh | 2 +- testcase/syscalls/ltp.syscalls.rt_sigsuspend01.sh | 2 +- testcase/syscalls/ltp.syscalls.rt_sigtimedwait01.sh | 2 +- testcase/syscalls/ltp.syscalls.rt_tgsigqueueinfo01.sh | 2 +- testcase/syscalls/ltp.syscalls.sbrk01.sh | 2 +- testcase/syscalls/ltp.syscalls.sbrk02.sh | 2 +- testcase/syscalls/ltp.syscalls.sbrk03.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_get_priority_max01.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_get_priority_max02.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_get_priority_min01.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_get_priority_min02.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_getaffinity01.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_getattr01.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_getattr02.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_getparam01.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_getparam03.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_getscheduler01.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_getscheduler02.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_rr_get_interval01.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_rr_get_interval02.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_rr_get_interval03.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_setaffinity01.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_setattr01.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_setparam01.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_setparam02.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_setparam03.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_setparam04.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_setparam05.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_setscheduler01.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_setscheduler02.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_setscheduler03.sh | 2 +- testcase/syscalls/ltp.syscalls.sched_setscheduler04.sh | 4 ++-- testcase/syscalls/ltp.syscalls.sched_yield01.sh | 2 +- testcase/syscalls/ltp.syscalls.select01.sh | 2 +- testcase/syscalls/ltp.syscalls.select02.sh | 2 +- testcase/syscalls/ltp.syscalls.select03.sh | 2 +- testcase/syscalls/ltp.syscalls.select04.sh | 2 +- testcase/syscalls/ltp.syscalls.semctl01.sh | 2 +- testcase/syscalls/ltp.syscalls.semctl02.sh | 2 +- testcase/syscalls/ltp.syscalls.semctl03.sh | 2 +- testcase/syscalls/ltp.syscalls.semctl04.sh | 2 +- testcase/syscalls/ltp.syscalls.semctl05.sh | 2 +- testcase/syscalls/ltp.syscalls.semctl06.sh | 2 +- testcase/syscalls/ltp.syscalls.semctl07.sh | 2 +- testcase/syscalls/ltp.syscalls.semctl08.sh | 2 +- testcase/syscalls/ltp.syscalls.semctl09.sh | 2 +- testcase/syscalls/ltp.syscalls.semget01.sh | 2 +- testcase/syscalls/ltp.syscalls.semget02.sh | 2 +- testcase/syscalls/ltp.syscalls.semget05.sh | 2 +- testcase/syscalls/ltp.syscalls.semop01.sh | 2 +- testcase/syscalls/ltp.syscalls.semop02.sh | 2 +- testcase/syscalls/ltp.syscalls.semop03.sh | 2 +- testcase/syscalls/ltp.syscalls.semop04.sh | 2 +- testcase/syscalls/ltp.syscalls.semop05.sh | 2 +- testcase/syscalls/ltp.syscalls.send01.sh | 2 +- testcase/syscalls/ltp.syscalls.send02.sh | 2 +- testcase/syscalls/ltp.syscalls.sendfile02.sh | 2 +- testcase/syscalls/ltp.syscalls.sendfile02_64.sh | 2 +- testcase/syscalls/ltp.syscalls.sendfile03.sh | 2 +- testcase/syscalls/ltp.syscalls.sendfile03_64.sh | 2 +- testcase/syscalls/ltp.syscalls.sendfile04.sh | 2 +- testcase/syscalls/ltp.syscalls.sendfile04_64.sh | 2 +- testcase/syscalls/ltp.syscalls.sendfile05.sh | 2 +- testcase/syscalls/ltp.syscalls.sendfile05_64.sh | 2 +- testcase/syscalls/ltp.syscalls.sendfile06.sh | 2 +- testcase/syscalls/ltp.syscalls.sendfile06_64.sh | 2 +- testcase/syscalls/ltp.syscalls.sendfile07.sh | 2 +- testcase/syscalls/ltp.syscalls.sendfile07_64.sh | 2 +- testcase/syscalls/ltp.syscalls.sendfile08.sh | 2 +- testcase/syscalls/ltp.syscalls.sendfile08_64.sh | 2 +- testcase/syscalls/ltp.syscalls.sendfile09.sh | 2 +- testcase/syscalls/ltp.syscalls.sendfile09_64.sh | 2 +- testcase/syscalls/ltp.syscalls.sendmmsg01.sh | 2 +- testcase/syscalls/ltp.syscalls.sendmmsg02.sh | 2 +- testcase/syscalls/ltp.syscalls.sendmsg01.sh | 2 +- testcase/syscalls/ltp.syscalls.sendmsg02.sh | 2 +- testcase/syscalls/ltp.syscalls.sendmsg03.sh | 2 +- testcase/syscalls/ltp.syscalls.sendto01.sh | 2 +- testcase/syscalls/ltp.syscalls.sendto02.sh | 2 +- testcase/syscalls/ltp.syscalls.sendto03.sh | 2 +- testcase/syscalls/ltp.syscalls.set_mempolicy01.sh | 2 +- testcase/syscalls/ltp.syscalls.set_mempolicy02.sh | 2 +- testcase/syscalls/ltp.syscalls.set_mempolicy03.sh | 2 +- testcase/syscalls/ltp.syscalls.set_mempolicy04.sh | 2 +- testcase/syscalls/ltp.syscalls.set_robust_list01.sh | 2 +- testcase/syscalls/ltp.syscalls.set_thread_area01.sh | 2 +- testcase/syscalls/ltp.syscalls.set_tid_address01.sh | 2 +- testcase/syscalls/ltp.syscalls.setdomainname01.sh | 2 +- testcase/syscalls/ltp.syscalls.setdomainname02.sh | 2 +- testcase/syscalls/ltp.syscalls.setdomainname03.sh | 2 +- testcase/syscalls/ltp.syscalls.setegid01.sh | 2 +- testcase/syscalls/ltp.syscalls.setegid02.sh | 2 +- testcase/syscalls/ltp.syscalls.setfsgid01.sh | 2 +- testcase/syscalls/ltp.syscalls.setfsgid01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setfsgid02.sh | 2 +- testcase/syscalls/ltp.syscalls.setfsgid02_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setfsgid03.sh | 2 +- testcase/syscalls/ltp.syscalls.setfsgid03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setfsuid01.sh | 2 +- testcase/syscalls/ltp.syscalls.setfsuid01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setfsuid02.sh | 2 +- testcase/syscalls/ltp.syscalls.setfsuid02_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setfsuid03.sh | 2 +- testcase/syscalls/ltp.syscalls.setfsuid03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setfsuid04.sh | 2 +- testcase/syscalls/ltp.syscalls.setfsuid04_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setgid01.sh | 2 +- testcase/syscalls/ltp.syscalls.setgid01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setgid02.sh | 2 +- testcase/syscalls/ltp.syscalls.setgid02_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setgid03.sh | 2 +- testcase/syscalls/ltp.syscalls.setgid03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setgroups01.sh | 2 +- testcase/syscalls/ltp.syscalls.setgroups01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setgroups02.sh | 2 +- testcase/syscalls/ltp.syscalls.setgroups02_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setgroups03.sh | 2 +- testcase/syscalls/ltp.syscalls.setgroups03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.sethostname01.sh | 2 +- testcase/syscalls/ltp.syscalls.sethostname02.sh | 2 +- testcase/syscalls/ltp.syscalls.sethostname03.sh | 2 +- testcase/syscalls/ltp.syscalls.setitimer01.sh | 2 +- testcase/syscalls/ltp.syscalls.setitimer02.sh | 2 +- testcase/syscalls/ltp.syscalls.setns01.sh | 2 +- testcase/syscalls/ltp.syscalls.setns02.sh | 2 +- testcase/syscalls/ltp.syscalls.setpgid01.sh | 2 +- testcase/syscalls/ltp.syscalls.setpgid02.sh | 2 +- testcase/syscalls/ltp.syscalls.setpgid03.sh | 2 +- testcase/syscalls/ltp.syscalls.setpgrp01.sh | 2 +- testcase/syscalls/ltp.syscalls.setpgrp02.sh | 2 +- testcase/syscalls/ltp.syscalls.setpriority01.sh | 2 +- testcase/syscalls/ltp.syscalls.setpriority02.sh | 2 +- testcase/syscalls/ltp.syscalls.setregid01.sh | 2 +- testcase/syscalls/ltp.syscalls.setregid01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setregid02.sh | 2 +- testcase/syscalls/ltp.syscalls.setregid02_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setregid03.sh | 2 +- testcase/syscalls/ltp.syscalls.setregid03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setregid04.sh | 2 +- testcase/syscalls/ltp.syscalls.setregid04_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setresgid01.sh | 2 +- testcase/syscalls/ltp.syscalls.setresgid01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setresgid02.sh | 2 +- testcase/syscalls/ltp.syscalls.setresgid02_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setresgid03.sh | 2 +- testcase/syscalls/ltp.syscalls.setresgid03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setresgid04.sh | 2 +- testcase/syscalls/ltp.syscalls.setresgid04_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setresuid01.sh | 2 +- testcase/syscalls/ltp.syscalls.setresuid01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setresuid02.sh | 2 +- testcase/syscalls/ltp.syscalls.setresuid02_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setresuid03.sh | 2 +- testcase/syscalls/ltp.syscalls.setresuid03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setresuid04.sh | 2 +- testcase/syscalls/ltp.syscalls.setresuid04_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setresuid05.sh | 2 +- testcase/syscalls/ltp.syscalls.setresuid05_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setreuid01.sh | 2 +- testcase/syscalls/ltp.syscalls.setreuid01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setreuid02.sh | 2 +- testcase/syscalls/ltp.syscalls.setreuid02_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setreuid03.sh | 2 +- testcase/syscalls/ltp.syscalls.setreuid03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setreuid04.sh | 2 +- testcase/syscalls/ltp.syscalls.setreuid04_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setreuid05.sh | 2 +- testcase/syscalls/ltp.syscalls.setreuid05_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setreuid06.sh | 2 +- testcase/syscalls/ltp.syscalls.setreuid06_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setreuid07.sh | 2 +- testcase/syscalls/ltp.syscalls.setreuid07_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setrlimit01.sh | 2 +- testcase/syscalls/ltp.syscalls.setrlimit02.sh | 2 +- testcase/syscalls/ltp.syscalls.setrlimit03.sh | 2 +- testcase/syscalls/ltp.syscalls.setrlimit04.sh | 2 +- testcase/syscalls/ltp.syscalls.setrlimit05.sh | 2 +- testcase/syscalls/ltp.syscalls.setrlimit06.sh | 2 +- testcase/syscalls/ltp.syscalls.setsid01.sh | 2 +- testcase/syscalls/ltp.syscalls.setsockopt01.sh | 2 +- testcase/syscalls/ltp.syscalls.setsockopt02.sh | 2 +- testcase/syscalls/ltp.syscalls.setsockopt03.sh | 2 +- testcase/syscalls/ltp.syscalls.setsockopt04.sh | 2 +- testcase/syscalls/ltp.syscalls.setsockopt05.sh | 2 +- testcase/syscalls/ltp.syscalls.setsockopt06.sh | 2 +- testcase/syscalls/ltp.syscalls.setsockopt07.sh | 2 +- testcase/syscalls/ltp.syscalls.setsockopt08.sh | 2 +- testcase/syscalls/ltp.syscalls.setsockopt09.sh | 2 +- testcase/syscalls/ltp.syscalls.setsockopt10.sh | 4 ++-- testcase/syscalls/ltp.syscalls.settimeofday01.sh | 2 +- testcase/syscalls/ltp.syscalls.settimeofday02.sh | 2 +- testcase/syscalls/ltp.syscalls.setuid01.sh | 2 +- testcase/syscalls/ltp.syscalls.setuid01_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setuid03.sh | 2 +- testcase/syscalls/ltp.syscalls.setuid03_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setuid04.sh | 2 +- testcase/syscalls/ltp.syscalls.setuid04_16.sh | 2 +- testcase/syscalls/ltp.syscalls.setxattr01.sh | 2 +- testcase/syscalls/ltp.syscalls.setxattr02.sh | 2 +- testcase/syscalls/ltp.syscalls.setxattr03.sh | 2 +- testcase/syscalls/ltp.syscalls.sgetmask01.sh | 2 +- testcase/syscalls/ltp.syscalls.shmat01.sh | 2 +- testcase/syscalls/ltp.syscalls.shmat02.sh | 2 +- testcase/syscalls/ltp.syscalls.shmat03.sh | 2 +- testcase/syscalls/ltp.syscalls.shmat04.sh | 4 ++-- testcase/syscalls/ltp.syscalls.shmctl01.sh | 2 +- testcase/syscalls/ltp.syscalls.shmctl02.sh | 2 +- testcase/syscalls/ltp.syscalls.shmctl03.sh | 2 +- testcase/syscalls/ltp.syscalls.shmctl04.sh | 2 +- testcase/syscalls/ltp.syscalls.shmctl05.sh | 2 +- testcase/syscalls/ltp.syscalls.shmctl06.sh | 2 +- testcase/syscalls/ltp.syscalls.shmctl07.sh | 2 +- testcase/syscalls/ltp.syscalls.shmctl08.sh | 2 +- testcase/syscalls/ltp.syscalls.shmdt01.sh | 2 +- testcase/syscalls/ltp.syscalls.shmdt02.sh | 2 +- testcase/syscalls/ltp.syscalls.shmget02.sh | 2 +- testcase/syscalls/ltp.syscalls.shmget03.sh | 2 +- testcase/syscalls/ltp.syscalls.shmget04.sh | 2 +- testcase/syscalls/ltp.syscalls.shmget05.sh | 2 +- testcase/syscalls/ltp.syscalls.shmget06.sh | 2 +- testcase/syscalls/ltp.syscalls.sigaction01.sh | 2 +- testcase/syscalls/ltp.syscalls.sigaction02.sh | 2 +- testcase/syscalls/ltp.syscalls.sigaltstack01.sh | 2 +- testcase/syscalls/ltp.syscalls.sigaltstack02.sh | 2 +- testcase/syscalls/ltp.syscalls.sighold02.sh | 2 +- testcase/syscalls/ltp.syscalls.signal01.sh | 2 +- testcase/syscalls/ltp.syscalls.signal02.sh | 2 +- testcase/syscalls/ltp.syscalls.signal03.sh | 2 +- testcase/syscalls/ltp.syscalls.signal04.sh | 2 +- testcase/syscalls/ltp.syscalls.signal05.sh | 2 +- testcase/syscalls/ltp.syscalls.signal06.sh | 2 +- testcase/syscalls/ltp.syscalls.signalfd01.sh | 2 +- testcase/syscalls/ltp.syscalls.signalfd4_01.sh | 2 +- testcase/syscalls/ltp.syscalls.signalfd4_02.sh | 2 +- testcase/syscalls/ltp.syscalls.sigpending02.sh | 2 +- testcase/syscalls/ltp.syscalls.sigprocmask01.sh | 2 +- testcase/syscalls/ltp.syscalls.sigrelse01.sh | 2 +- testcase/syscalls/ltp.syscalls.sigsuspend01.sh | 2 +- testcase/syscalls/ltp.syscalls.sigtimedwait01.sh | 2 +- testcase/syscalls/ltp.syscalls.sigwait01.sh | 2 +- testcase/syscalls/ltp.syscalls.sigwaitinfo01.sh | 2 +- testcase/syscalls/ltp.syscalls.socket01.sh | 2 +- testcase/syscalls/ltp.syscalls.socket02.sh | 2 +- testcase/syscalls/ltp.syscalls.socketcall01.sh | 2 +- testcase/syscalls/ltp.syscalls.socketcall02.sh | 2 +- testcase/syscalls/ltp.syscalls.socketcall03.sh | 2 +- testcase/syscalls/ltp.syscalls.socketpair01.sh | 2 +- testcase/syscalls/ltp.syscalls.socketpair02.sh | 2 +- testcase/syscalls/ltp.syscalls.sockioctl01.sh | 2 +- testcase/syscalls/ltp.syscalls.splice01.sh | 2 +- testcase/syscalls/ltp.syscalls.splice02.sh | 2 +- testcase/syscalls/ltp.syscalls.splice03.sh | 2 +- testcase/syscalls/ltp.syscalls.splice04.sh | 2 +- testcase/syscalls/ltp.syscalls.splice05.sh | 2 +- testcase/syscalls/ltp.syscalls.splice06.sh | 4 ++-- testcase/syscalls/ltp.syscalls.splice07.sh | 4 ++-- testcase/syscalls/ltp.syscalls.splice08.sh | 4 ++-- testcase/syscalls/ltp.syscalls.splice09.sh | 4 ++-- testcase/syscalls/ltp.syscalls.ssetmask01.sh | 2 +- testcase/syscalls/ltp.syscalls.stat01.sh | 2 +- testcase/syscalls/ltp.syscalls.stat01_64.sh | 2 +- testcase/syscalls/ltp.syscalls.stat02.sh | 2 +- testcase/syscalls/ltp.syscalls.stat02_64.sh | 2 +- testcase/syscalls/ltp.syscalls.stat03.sh | 2 +- testcase/syscalls/ltp.syscalls.stat03_64.sh | 2 +- testcase/syscalls/ltp.syscalls.stat04.sh | 2 +- testcase/syscalls/ltp.syscalls.stat04_64.sh | 2 +- testcase/syscalls/ltp.syscalls.statfs01.sh | 2 +- testcase/syscalls/ltp.syscalls.statfs01_64.sh | 2 +- testcase/syscalls/ltp.syscalls.statfs02.sh | 2 +- testcase/syscalls/ltp.syscalls.statfs02_64.sh | 2 +- testcase/syscalls/ltp.syscalls.statfs03.sh | 2 +- testcase/syscalls/ltp.syscalls.statfs03_64.sh | 2 +- testcase/syscalls/ltp.syscalls.statvfs01.sh | 2 +- testcase/syscalls/ltp.syscalls.statvfs02.sh | 2 +- testcase/syscalls/ltp.syscalls.statx01.sh | 2 +- testcase/syscalls/ltp.syscalls.statx02.sh | 2 +- testcase/syscalls/ltp.syscalls.statx03.sh | 2 +- testcase/syscalls/ltp.syscalls.statx04.sh | 2 +- testcase/syscalls/ltp.syscalls.statx05.sh | 2 +- testcase/syscalls/ltp.syscalls.statx06.sh | 2 +- testcase/syscalls/ltp.syscalls.statx07.sh | 2 +- testcase/syscalls/ltp.syscalls.statx08.sh | 2 +- testcase/syscalls/ltp.syscalls.statx09.sh | 2 +- testcase/syscalls/ltp.syscalls.statx10.sh | 4 ++-- testcase/syscalls/ltp.syscalls.statx11.sh | 4 ++-- testcase/syscalls/ltp.syscalls.statx12.sh | 4 ++-- testcase/syscalls/ltp.syscalls.stime01.sh | 2 +- testcase/syscalls/ltp.syscalls.stime02.sh | 2 +- testcase/syscalls/ltp.syscalls.string01.sh | 2 +- testcase/syscalls/ltp.syscalls.swapoff01.sh | 2 +- testcase/syscalls/ltp.syscalls.swapoff02.sh | 2 +- testcase/syscalls/ltp.syscalls.swapon01.sh | 2 +- testcase/syscalls/ltp.syscalls.swapon02.sh | 2 +- testcase/syscalls/ltp.syscalls.swapon03.sh | 2 +- testcase/syscalls/ltp.syscalls.switch01.sh | 2 +- testcase/syscalls/ltp.syscalls.symlink01.sh | 2 +- testcase/syscalls/ltp.syscalls.symlink02.sh | 2 +- testcase/syscalls/ltp.syscalls.symlink03.sh | 2 +- testcase/syscalls/ltp.syscalls.symlink04.sh | 2 +- testcase/syscalls/ltp.syscalls.symlinkat01.sh | 2 +- testcase/syscalls/ltp.syscalls.sync01.sh | 2 +- testcase/syscalls/ltp.syscalls.sync_file_range01.sh | 2 +- testcase/syscalls/ltp.syscalls.sync_file_range02.sh | 2 +- testcase/syscalls/ltp.syscalls.syncfs01.sh | 2 +- testcase/syscalls/ltp.syscalls.syscall01.sh | 2 +- testcase/syscalls/ltp.syscalls.sysconf01.sh | 2 +- testcase/syscalls/ltp.syscalls.sysctl01.sh | 2 +- testcase/syscalls/ltp.syscalls.sysctl03.sh | 2 +- testcase/syscalls/ltp.syscalls.sysctl04.sh | 2 +- testcase/syscalls/ltp.syscalls.sysfs01.sh | 2 +- testcase/syscalls/ltp.syscalls.sysfs02.sh | 2 +- testcase/syscalls/ltp.syscalls.sysfs03.sh | 2 +- testcase/syscalls/ltp.syscalls.sysfs04.sh | 2 +- testcase/syscalls/ltp.syscalls.sysfs05.sh | 2 +- testcase/syscalls/ltp.syscalls.sysinfo01.sh | 2 +- testcase/syscalls/ltp.syscalls.sysinfo02.sh | 2 +- testcase/syscalls/ltp.syscalls.sysinfo03.sh | 2 +- testcase/syscalls/ltp.syscalls.syslog11.sh | 2 +- testcase/syscalls/ltp.syscalls.syslog12.sh | 2 +- testcase/syscalls/ltp.syscalls.tee01.sh | 2 +- testcase/syscalls/ltp.syscalls.tee02.sh | 2 +- testcase/syscalls/ltp.syscalls.tgkill01.sh | 2 +- testcase/syscalls/ltp.syscalls.tgkill02.sh | 2 +- testcase/syscalls/ltp.syscalls.tgkill03.sh | 2 +- testcase/syscalls/ltp.syscalls.time01.sh | 2 +- testcase/syscalls/ltp.syscalls.timer_create01.sh | 2 +- testcase/syscalls/ltp.syscalls.timer_create02.sh | 2 +- testcase/syscalls/ltp.syscalls.timer_create03.sh | 2 +- testcase/syscalls/ltp.syscalls.timer_delete01.sh | 2 +- testcase/syscalls/ltp.syscalls.timer_delete02.sh | 2 +- testcase/syscalls/ltp.syscalls.timer_getoverrun01.sh | 2 +- testcase/syscalls/ltp.syscalls.timer_gettime01.sh | 2 +- testcase/syscalls/ltp.syscalls.timer_settime01.sh | 2 +- testcase/syscalls/ltp.syscalls.timer_settime02.sh | 2 +- testcase/syscalls/ltp.syscalls.timer_settime03.sh | 2 +- testcase/syscalls/ltp.syscalls.timerfd01.sh | 2 +- testcase/syscalls/ltp.syscalls.timerfd02.sh | 2 +- testcase/syscalls/ltp.syscalls.timerfd04.sh | 2 +- testcase/syscalls/ltp.syscalls.timerfd_create01.sh | 2 +- testcase/syscalls/ltp.syscalls.timerfd_gettime01.sh | 2 +- testcase/syscalls/ltp.syscalls.timerfd_settime01.sh | 2 +- testcase/syscalls/ltp.syscalls.timerfd_settime02.sh | 2 +- testcase/syscalls/ltp.syscalls.times01.sh | 2 +- testcase/syscalls/ltp.syscalls.times03.sh | 2 +- testcase/syscalls/ltp.syscalls.tkill01.sh | 2 +- testcase/syscalls/ltp.syscalls.tkill02.sh | 2 +- testcase/syscalls/ltp.syscalls.truncate02.sh | 2 +- testcase/syscalls/ltp.syscalls.truncate02_64.sh | 2 +- testcase/syscalls/ltp.syscalls.truncate03.sh | 2 +- testcase/syscalls/ltp.syscalls.truncate03_64.sh | 2 +- testcase/syscalls/ltp.syscalls.ulimit01.sh | 2 +- testcase/syscalls/ltp.syscalls.umask01.sh | 2 +- testcase/syscalls/ltp.syscalls.umount01.sh | 2 +- testcase/syscalls/ltp.syscalls.umount02.sh | 2 +- testcase/syscalls/ltp.syscalls.umount03.sh | 2 +- testcase/syscalls/ltp.syscalls.umount2_01.sh | 2 +- testcase/syscalls/ltp.syscalls.umount2_02.sh | 2 +- testcase/syscalls/ltp.syscalls.uname01.sh | 2 +- testcase/syscalls/ltp.syscalls.uname02.sh | 2 +- testcase/syscalls/ltp.syscalls.uname04.sh | 2 +- testcase/syscalls/ltp.syscalls.unlink01.sh | 2 +- testcase/syscalls/ltp.syscalls.unlink05.sh | 2 +- testcase/syscalls/ltp.syscalls.unlink07.sh | 2 +- testcase/syscalls/ltp.syscalls.unlink08.sh | 2 +- testcase/syscalls/ltp.syscalls.unlink09.sh | 4 ++-- testcase/syscalls/ltp.syscalls.unlinkat01.sh | 2 +- testcase/syscalls/ltp.syscalls.unshare01.sh | 2 +- testcase/syscalls/ltp.syscalls.unshare02.sh | 2 +- testcase/syscalls/ltp.syscalls.userfaultfd01.sh | 2 +- testcase/syscalls/ltp.syscalls.ustat01.sh | 2 +- testcase/syscalls/ltp.syscalls.ustat02.sh | 2 +- testcase/syscalls/ltp.syscalls.utime01.sh | 2 +- testcase/syscalls/ltp.syscalls.utime02.sh | 2 +- testcase/syscalls/ltp.syscalls.utime03.sh | 2 +- testcase/syscalls/ltp.syscalls.utime04.sh | 2 +- testcase/syscalls/ltp.syscalls.utime05.sh | 2 +- testcase/syscalls/ltp.syscalls.utime06.sh | 2 +- testcase/syscalls/ltp.syscalls.utime07.sh | 4 ++-- testcase/syscalls/ltp.syscalls.utimensat01.sh | 2 +- testcase/syscalls/ltp.syscalls.utimes01.sh | 2 +- testcase/syscalls/ltp.syscalls.vfork01.sh | 2 +- testcase/syscalls/ltp.syscalls.vfork02.sh | 2 +- testcase/syscalls/ltp.syscalls.vhangup01.sh | 2 +- testcase/syscalls/ltp.syscalls.vhangup02.sh | 2 +- testcase/syscalls/ltp.syscalls.vmsplice01.sh | 2 +- testcase/syscalls/ltp.syscalls.vmsplice02.sh | 2 +- testcase/syscalls/ltp.syscalls.vmsplice03.sh | 2 +- testcase/syscalls/ltp.syscalls.vmsplice04.sh | 2 +- testcase/syscalls/ltp.syscalls.wait01.sh | 2 +- testcase/syscalls/ltp.syscalls.wait02.sh | 2 +- testcase/syscalls/ltp.syscalls.wait401.sh | 2 +- testcase/syscalls/ltp.syscalls.wait402.sh | 2 +- testcase/syscalls/ltp.syscalls.wait403.sh | 2 +- testcase/syscalls/ltp.syscalls.waitid01.sh | 2 +- testcase/syscalls/ltp.syscalls.waitid02.sh | 2 +- testcase/syscalls/ltp.syscalls.waitid03.sh | 2 +- testcase/syscalls/ltp.syscalls.waitid04.sh | 2 +- testcase/syscalls/ltp.syscalls.waitid05.sh | 2 +- testcase/syscalls/ltp.syscalls.waitid06.sh | 2 +- testcase/syscalls/ltp.syscalls.waitid07.sh | 2 +- testcase/syscalls/ltp.syscalls.waitid08.sh | 2 +- testcase/syscalls/ltp.syscalls.waitid09.sh | 2 +- testcase/syscalls/ltp.syscalls.waitid10.sh | 2 +- testcase/syscalls/ltp.syscalls.waitid11.sh | 2 +- testcase/syscalls/ltp.syscalls.waitpid01.sh | 2 +- testcase/syscalls/ltp.syscalls.waitpid03.sh | 2 +- testcase/syscalls/ltp.syscalls.waitpid04.sh | 2 +- testcase/syscalls/ltp.syscalls.waitpid06.sh | 2 +- testcase/syscalls/ltp.syscalls.waitpid07.sh | 2 +- testcase/syscalls/ltp.syscalls.waitpid08.sh | 2 +- testcase/syscalls/ltp.syscalls.waitpid09.sh | 2 +- testcase/syscalls/ltp.syscalls.waitpid10.sh | 2 +- testcase/syscalls/ltp.syscalls.waitpid11.sh | 2 +- testcase/syscalls/ltp.syscalls.waitpid12.sh | 2 +- testcase/syscalls/ltp.syscalls.waitpid13.sh | 2 +- testcase/syscalls/ltp.syscalls.write01.sh | 2 +- testcase/syscalls/ltp.syscalls.write02.sh | 2 +- testcase/syscalls/ltp.syscalls.write03.sh | 2 +- testcase/syscalls/ltp.syscalls.write04.sh | 2 +- testcase/syscalls/ltp.syscalls.write05.sh | 2 +- testcase/syscalls/ltp.syscalls.write06.sh | 2 +- testcase/syscalls/ltp.syscalls.writev01.sh | 2 +- testcase/syscalls/ltp.syscalls.writev02.sh | 2 +- testcase/syscalls/ltp.syscalls.writev03.sh | 2 +- testcase/syscalls/ltp.syscalls.writev05.sh | 2 +- testcase/syscalls/ltp.syscalls.writev06.sh | 2 +- testcase/syscalls/ltp.syscalls.writev07.sh | 2 +- testcase/tpm_tools/ltp.tpm_tools.tpm01.sh | 2 +- testcase/tpm_tools/ltp.tpm_tools.tpm02.sh | 2 +- testcase/tpm_tools/ltp.tpm_tools.tpm03.sh | 2 +- testcase/tpm_tools/ltp.tpm_tools.tpm04.sh | 2 +- testcase/tpm_tools/ltp.tpm_tools.tpm05.sh | 2 +- testcase/tpm_tools/ltp.tpm_tools.tpm06.sh | 2 +- testcase/tpm_tools/ltp.tpm_tools.tpm07.sh | 2 +- testcase/tpm_tools/ltp.tpm_tools.tpmtoken01.sh | 2 +- testcase/tpm_tools/ltp.tpm_tools.tpmtoken02.sh | 2 +- testcase/tpm_tools/ltp.tpm_tools.tpmtoken03.sh | 2 +- testcase/tpm_tools/ltp.tpm_tools.tpmtoken04.sh | 2 +- testcase/tpm_tools/ltp.tpm_tools.tpmtoken05.sh | 2 +- testcase/tracing/ltp.tracing.dynamic_debug01.sh | 2 +- testcase/tracing/ltp.tracing.ftrace-stress-test.sh | 2 +- testcase/tracing/ltp.tracing.ftrace_regression01.sh | 2 +- testcase/tracing/ltp.tracing.ftrace_regression02.sh | 2 +- testcase/tracing/ltp.tracing.pt_disable_branch.sh | 2 +- testcase/tracing/ltp.tracing.pt_ex_kernel.sh | 2 +- testcase/tracing/ltp.tracing.pt_ex_user.sh | 2 +- testcase/tracing/ltp.tracing.pt_full_trace_basic.sh | 2 +- testcase/tracing/ltp.tracing.pt_snapshot_trace_basic.sh | 2 +- testcase/uevent/ltp.uevent.uevent01.sh | 2 +- testcase/uevent/ltp.uevent.uevent02.sh | 2 +- testcase/uevent/ltp.uevent.uevent03.sh | 2 +- testcase/watchqueue/ltp.watchqueue.wqueue01.sh | 2 +- testcase/watchqueue/ltp.watchqueue.wqueue02.sh | 2 +- testcase/watchqueue/ltp.watchqueue.wqueue03.sh | 2 +- testcase/watchqueue/ltp.watchqueue.wqueue04.sh | 2 +- testcase/watchqueue/ltp.watchqueue.wqueue05.sh | 2 +- testcase/watchqueue/ltp.watchqueue.wqueue06.sh | 2 +- testcase/watchqueue/ltp.watchqueue.wqueue07.sh | 2 +- testcase/watchqueue/ltp.watchqueue.wqueue08.sh | 2 +- testcase/watchqueue/ltp.watchqueue.wqueue09.sh | 2 +- 4041 files changed, 4249 insertions(+), 4249 deletions(-) diff --git a/testcase/can/ltp.can.can_bcm01.sh b/testcase/can/ltp.can.can_bcm01.sh index 63af9b4..83434d8 100755 --- a/testcase/can/ltp.can.can_bcm01.sh +++ b/testcase/can/ltp.can.can_bcm01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/can/ltp.can.can_filter.sh b/testcase/can/ltp.can.can_filter.sh index 32b8e21..e6c3341 100755 --- a/testcase/can/ltp.can.can_filter.sh +++ b/testcase/can/ltp.can.can_filter.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/can/ltp.can.can_rcv_own_msgs.sh b/testcase/can/ltp.can.can_rcv_own_msgs.sh index 059fca1..6f803b6 100755 --- a/testcase/can/ltp.can.can_rcv_own_msgs.sh +++ b/testcase/can/ltp.can.can_rcv_own_msgs.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/capability/ltp.capability.cap_bounds.sh b/testcase/capability/ltp.capability.cap_bounds.sh index 51168d3..9cbdf2a 100755 --- a/testcase/capability/ltp.capability.cap_bounds.sh +++ b/testcase/capability/ltp.capability.cap_bounds.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/capability/ltp.capability.check_keepcaps01.sh b/testcase/capability/ltp.capability.check_keepcaps01.sh index 334a092..34972bf 100755 --- a/testcase/capability/ltp.capability.check_keepcaps01.sh +++ b/testcase/capability/ltp.capability.check_keepcaps01.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/capability/ltp.capability.check_keepcaps02.sh b/testcase/capability/ltp.capability.check_keepcaps02.sh index ad370bb..4527bd5 100755 --- a/testcase/capability/ltp.capability.check_keepcaps02.sh +++ b/testcase/capability/ltp.capability.check_keepcaps02.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/capability/ltp.capability.check_keepcaps03.sh b/testcase/capability/ltp.capability.check_keepcaps03.sh index a950fd0..13f9fc3 100755 --- a/testcase/capability/ltp.capability.check_keepcaps03.sh +++ b/testcase/capability/ltp.capability.check_keepcaps03.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/capability/ltp.capability.filecaps.sh b/testcase/capability/ltp.capability.filecaps.sh index 16c08f2..6669339 100755 --- a/testcase/capability/ltp.capability.filecaps.sh +++ b/testcase/capability/ltp.capability.filecaps.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/commands/ltp.commands.ar_sh.sh b/testcase/commands/ltp.commands.ar_sh.sh index bcf3753..2067e84 100755 --- a/testcase/commands/ltp.commands.ar_sh.sh +++ b/testcase/commands/ltp.commands.ar_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.cp01_sh.sh b/testcase/commands/ltp.commands.cp01_sh.sh index 1b6b7f6..3086fb7 100755 --- a/testcase/commands/ltp.commands.cp01_sh.sh +++ b/testcase/commands/ltp.commands.cp01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.cpio01_sh.sh b/testcase/commands/ltp.commands.cpio01_sh.sh index eadbd9c..85b9c07 100755 --- a/testcase/commands/ltp.commands.cpio01_sh.sh +++ b/testcase/commands/ltp.commands.cpio01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.df01_sh.sh b/testcase/commands/ltp.commands.df01_sh.sh index 16f11b4..aa7bd5e 100755 --- a/testcase/commands/ltp.commands.df01_sh.sh +++ b/testcase/commands/ltp.commands.df01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.du01_sh.sh b/testcase/commands/ltp.commands.du01_sh.sh index 64da061..8654034 100755 --- a/testcase/commands/ltp.commands.du01_sh.sh +++ b/testcase/commands/ltp.commands.du01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.file01_sh.sh b/testcase/commands/ltp.commands.file01_sh.sh index 035698f..24b2f30 100755 --- a/testcase/commands/ltp.commands.file01_sh.sh +++ b/testcase/commands/ltp.commands.file01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.gdb01_sh.sh b/testcase/commands/ltp.commands.gdb01_sh.sh index a1ea2dc..ea0e131 100755 --- a/testcase/commands/ltp.commands.gdb01_sh.sh +++ b/testcase/commands/ltp.commands.gdb01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.gzip01_sh.sh b/testcase/commands/ltp.commands.gzip01_sh.sh index ed89033..bc10b76 100755 --- a/testcase/commands/ltp.commands.gzip01_sh.sh +++ b/testcase/commands/ltp.commands.gzip01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.insmod01_sh.sh b/testcase/commands/ltp.commands.insmod01_sh.sh index 18736df..10cadeb 100755 --- a/testcase/commands/ltp.commands.insmod01_sh.sh +++ b/testcase/commands/ltp.commands.insmod01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.keyctl01_sh.sh b/testcase/commands/ltp.commands.keyctl01_sh.sh index ff06f71..4ec2bc1 100755 --- a/testcase/commands/ltp.commands.keyctl01_sh.sh +++ b/testcase/commands/ltp.commands.keyctl01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.ld01_sh.sh b/testcase/commands/ltp.commands.ld01_sh.sh index 0acdd28..3296f78 100755 --- a/testcase/commands/ltp.commands.ld01_sh.sh +++ b/testcase/commands/ltp.commands.ld01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.ldd01_sh.sh b/testcase/commands/ltp.commands.ldd01_sh.sh index 1e6689b..9930563 100755 --- a/testcase/commands/ltp.commands.ldd01_sh.sh +++ b/testcase/commands/ltp.commands.ldd01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.ln01_sh.sh b/testcase/commands/ltp.commands.ln01_sh.sh index 7ef8680..2c9aba2 100755 --- a/testcase/commands/ltp.commands.ln01_sh.sh +++ b/testcase/commands/ltp.commands.ln01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.logrotate_sh.sh b/testcase/commands/ltp.commands.logrotate_sh.sh index 09e325a..f6a403e 100755 --- a/testcase/commands/ltp.commands.logrotate_sh.sh +++ b/testcase/commands/ltp.commands.logrotate_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.lsmod01_sh.sh b/testcase/commands/ltp.commands.lsmod01_sh.sh index 1d210c1..b7adfd1 100755 --- a/testcase/commands/ltp.commands.lsmod01_sh.sh +++ b/testcase/commands/ltp.commands.lsmod01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.mkdir01_sh.sh b/testcase/commands/ltp.commands.mkdir01_sh.sh index 6805513..9ab29c1 100755 --- a/testcase/commands/ltp.commands.mkdir01_sh.sh +++ b/testcase/commands/ltp.commands.mkdir01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.mkfs01_btrfs_sh.sh b/testcase/commands/ltp.commands.mkfs01_btrfs_sh.sh index 8fb82cd..52d3469 100755 --- a/testcase/commands/ltp.commands.mkfs01_btrfs_sh.sh +++ b/testcase/commands/ltp.commands.mkfs01_btrfs_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.mkfs01_ext2_sh.sh b/testcase/commands/ltp.commands.mkfs01_ext2_sh.sh index 293cf12..63d2625 100755 --- a/testcase/commands/ltp.commands.mkfs01_ext2_sh.sh +++ b/testcase/commands/ltp.commands.mkfs01_ext2_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.mkfs01_ext3_sh.sh b/testcase/commands/ltp.commands.mkfs01_ext3_sh.sh index a0f6294..2347239 100755 --- a/testcase/commands/ltp.commands.mkfs01_ext3_sh.sh +++ b/testcase/commands/ltp.commands.mkfs01_ext3_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.mkfs01_ext4_sh.sh b/testcase/commands/ltp.commands.mkfs01_ext4_sh.sh index 6efe6ff..392a7ad 100755 --- a/testcase/commands/ltp.commands.mkfs01_ext4_sh.sh +++ b/testcase/commands/ltp.commands.mkfs01_ext4_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.mkfs01_minix_sh.sh b/testcase/commands/ltp.commands.mkfs01_minix_sh.sh index f55ddd0..81c4914 100755 --- a/testcase/commands/ltp.commands.mkfs01_minix_sh.sh +++ b/testcase/commands/ltp.commands.mkfs01_minix_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.mkfs01_msdos_sh.sh b/testcase/commands/ltp.commands.mkfs01_msdos_sh.sh index c4ac844..a1b3eef 100755 --- a/testcase/commands/ltp.commands.mkfs01_msdos_sh.sh +++ b/testcase/commands/ltp.commands.mkfs01_msdos_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.mkfs01_ntfs_sh.sh b/testcase/commands/ltp.commands.mkfs01_ntfs_sh.sh index 4fa27bf..aa870d3 100755 --- a/testcase/commands/ltp.commands.mkfs01_ntfs_sh.sh +++ b/testcase/commands/ltp.commands.mkfs01_ntfs_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.mkfs01_sh.sh b/testcase/commands/ltp.commands.mkfs01_sh.sh index 0a5f090..83f3590 100755 --- a/testcase/commands/ltp.commands.mkfs01_sh.sh +++ b/testcase/commands/ltp.commands.mkfs01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.mkfs01_vfat_sh.sh b/testcase/commands/ltp.commands.mkfs01_vfat_sh.sh index 6a51a0a..8980184 100755 --- a/testcase/commands/ltp.commands.mkfs01_vfat_sh.sh +++ b/testcase/commands/ltp.commands.mkfs01_vfat_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.mkfs01_xfs_sh.sh b/testcase/commands/ltp.commands.mkfs01_xfs_sh.sh index d5440f7..8e94f2b 100755 --- a/testcase/commands/ltp.commands.mkfs01_xfs_sh.sh +++ b/testcase/commands/ltp.commands.mkfs01_xfs_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.mkswap01_sh.sh b/testcase/commands/ltp.commands.mkswap01_sh.sh index a7cec9a..8bf8362 100755 --- a/testcase/commands/ltp.commands.mkswap01_sh.sh +++ b/testcase/commands/ltp.commands.mkswap01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.mv01_sh.sh b/testcase/commands/ltp.commands.mv01_sh.sh index 5c15596..3c9b006 100755 --- a/testcase/commands/ltp.commands.mv01_sh.sh +++ b/testcase/commands/ltp.commands.mv01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.nm01_sh.sh b/testcase/commands/ltp.commands.nm01_sh.sh index 6b7b7f2..f7b795f 100755 --- a/testcase/commands/ltp.commands.nm01_sh.sh +++ b/testcase/commands/ltp.commands.nm01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.shell_test01.sh b/testcase/commands/ltp.commands.shell_test01.sh index 69ddb0f..6841263 100755 --- a/testcase/commands/ltp.commands.shell_test01.sh +++ b/testcase/commands/ltp.commands.shell_test01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.sysctl01_sh.sh b/testcase/commands/ltp.commands.sysctl01_sh.sh index 6b5ffdc..ca1fb89 100755 --- a/testcase/commands/ltp.commands.sysctl01_sh.sh +++ b/testcase/commands/ltp.commands.sysctl01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.sysctl02_sh.sh b/testcase/commands/ltp.commands.sysctl02_sh.sh index e2f9aab..b3572f6 100755 --- a/testcase/commands/ltp.commands.sysctl02_sh.sh +++ b/testcase/commands/ltp.commands.sysctl02_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.tar01_sh.sh b/testcase/commands/ltp.commands.tar01_sh.sh index 31e6529..e4738d1 100755 --- a/testcase/commands/ltp.commands.tar01_sh.sh +++ b/testcase/commands/ltp.commands.tar01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.unshare01_sh.sh b/testcase/commands/ltp.commands.unshare01_sh.sh index dda12df..06857bb 100755 --- a/testcase/commands/ltp.commands.unshare01_sh.sh +++ b/testcase/commands/ltp.commands.unshare01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.unzip01_sh.sh b/testcase/commands/ltp.commands.unzip01_sh.sh index d2a6afe..2fc6d8e 100755 --- a/testcase/commands/ltp.commands.unzip01_sh.sh +++ b/testcase/commands/ltp.commands.unzip01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.wc01_sh.sh b/testcase/commands/ltp.commands.wc01_sh.sh index 7d34f06..176bc89 100755 --- a/testcase/commands/ltp.commands.wc01_sh.sh +++ b/testcase/commands/ltp.commands.wc01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/commands/ltp.commands.which01_sh.sh b/testcase/commands/ltp.commands.which01_sh.sh index 3c32c1f..e28fc69 100755 --- a/testcase/commands/ltp.commands.which01_sh.sh +++ b/testcase/commands/ltp.commands.which01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.clock_gettime03.sh b/testcase/containers/ltp.containers.clock_gettime03.sh index 9809db6..63c1e66 100755 --- a/testcase/containers/ltp.containers.clock_gettime03.sh +++ b/testcase/containers/ltp.containers.clock_gettime03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.clock_nanosleep03.sh b/testcase/containers/ltp.containers.clock_nanosleep03.sh index f090879..e22f5b0 100755 --- a/testcase/containers/ltp.containers.clock_nanosleep03.sh +++ b/testcase/containers/ltp.containers.clock_nanosleep03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.mesgq_nstest_clone.sh b/testcase/containers/ltp.containers.mesgq_nstest_clone.sh index b5eef54..5b6a68f 100755 --- a/testcase/containers/ltp.containers.mesgq_nstest_clone.sh +++ b/testcase/containers/ltp.containers.mesgq_nstest_clone.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.mesgq_nstest_none.sh b/testcase/containers/ltp.containers.mesgq_nstest_none.sh index cb0ed39..1605b18 100755 --- a/testcase/containers/ltp.containers.mesgq_nstest_none.sh +++ b/testcase/containers/ltp.containers.mesgq_nstest_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.mesgq_nstest_unshare.sh b/testcase/containers/ltp.containers.mesgq_nstest_unshare.sh index 64ed770..b6f0635 100755 --- a/testcase/containers/ltp.containers.mesgq_nstest_unshare.sh +++ b/testcase/containers/ltp.containers.mesgq_nstest_unshare.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.mountns01.sh b/testcase/containers/ltp.containers.mountns01.sh index 48bb404..1f264a0 100755 --- a/testcase/containers/ltp.containers.mountns01.sh +++ b/testcase/containers/ltp.containers.mountns01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.mountns02.sh b/testcase/containers/ltp.containers.mountns02.sh index ffbd6e6..054f428 100755 --- a/testcase/containers/ltp.containers.mountns02.sh +++ b/testcase/containers/ltp.containers.mountns02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.mountns03.sh b/testcase/containers/ltp.containers.mountns03.sh index 22a5bd3..70fc80c 100755 --- a/testcase/containers/ltp.containers.mountns03.sh +++ b/testcase/containers/ltp.containers.mountns03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.mountns04.sh b/testcase/containers/ltp.containers.mountns04.sh index b762971..a030737 100755 --- a/testcase/containers/ltp.containers.mountns04.sh +++ b/testcase/containers/ltp.containers.mountns04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.mqns_01.sh b/testcase/containers/ltp.containers.mqns_01.sh index 5b6f549..f5c1ad1 100755 --- a/testcase/containers/ltp.containers.mqns_01.sh +++ b/testcase/containers/ltp.containers.mqns_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.mqns_01_clone.sh b/testcase/containers/ltp.containers.mqns_01_clone.sh index 88a4594..47d802e 100755 --- a/testcase/containers/ltp.containers.mqns_01_clone.sh +++ b/testcase/containers/ltp.containers.mqns_01_clone.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.mqns_01_unshare.sh b/testcase/containers/ltp.containers.mqns_01_unshare.sh index 7dc242c..fe9f394 100755 --- a/testcase/containers/ltp.containers.mqns_01_unshare.sh +++ b/testcase/containers/ltp.containers.mqns_01_unshare.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/containers/ltp.containers.mqns_02.sh b/testcase/containers/ltp.containers.mqns_02.sh index adfafdb..9833f1e 100755 --- a/testcase/containers/ltp.containers.mqns_02.sh +++ b/testcase/containers/ltp.containers.mqns_02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.mqns_02_clone.sh b/testcase/containers/ltp.containers.mqns_02_clone.sh index ab5b56a..7e89f91 100755 --- a/testcase/containers/ltp.containers.mqns_02_clone.sh +++ b/testcase/containers/ltp.containers.mqns_02_clone.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.mqns_02_unshare.sh b/testcase/containers/ltp.containers.mqns_02_unshare.sh index 15d8f63..c7cef68 100755 --- a/testcase/containers/ltp.containers.mqns_02_unshare.sh +++ b/testcase/containers/ltp.containers.mqns_02_unshare.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/containers/ltp.containers.mqns_03_clone.sh b/testcase/containers/ltp.containers.mqns_03_clone.sh index 1ca5080..d6e8d92 100755 --- a/testcase/containers/ltp.containers.mqns_03_clone.sh +++ b/testcase/containers/ltp.containers.mqns_03_clone.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.mqns_03_unshare.sh b/testcase/containers/ltp.containers.mqns_03_unshare.sh index 8f540f4..5dccffc 100755 --- a/testcase/containers/ltp.containers.mqns_03_unshare.sh +++ b/testcase/containers/ltp.containers.mqns_03_unshare.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/containers/ltp.containers.mqns_04_clone.sh b/testcase/containers/ltp.containers.mqns_04_clone.sh index e85f7eb..49a6310 100755 --- a/testcase/containers/ltp.containers.mqns_04_clone.sh +++ b/testcase/containers/ltp.containers.mqns_04_clone.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.mqns_04_unshare.sh b/testcase/containers/ltp.containers.mqns_04_unshare.sh index 89ffe52..3437b7e 100755 --- a/testcase/containers/ltp.containers.mqns_04_unshare.sh +++ b/testcase/containers/ltp.containers.mqns_04_unshare.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/containers/ltp.containers.msg_comm.sh b/testcase/containers/ltp.containers.msg_comm.sh index 15bbbb3..8338852 100755 --- a/testcase/containers/ltp.containers.msg_comm.sh +++ b/testcase/containers/ltp.containers.msg_comm.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_breakns_ip_ipv4_ioctl.sh b/testcase/containers/ltp.containers.netns_breakns_ip_ipv4_ioctl.sh index d449e8e..9b7ae91 100755 --- a/testcase/containers/ltp.containers.netns_breakns_ip_ipv4_ioctl.sh +++ b/testcase/containers/ltp.containers.netns_breakns_ip_ipv4_ioctl.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_breakns_ip_ipv4_netlink.sh b/testcase/containers/ltp.containers.netns_breakns_ip_ipv4_netlink.sh index c584969..0633ea5 100755 --- a/testcase/containers/ltp.containers.netns_breakns_ip_ipv4_netlink.sh +++ b/testcase/containers/ltp.containers.netns_breakns_ip_ipv4_netlink.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_breakns_ip_ipv6_ioctl.sh b/testcase/containers/ltp.containers.netns_breakns_ip_ipv6_ioctl.sh index ebe1b85..150f3f2 100755 --- a/testcase/containers/ltp.containers.netns_breakns_ip_ipv6_ioctl.sh +++ b/testcase/containers/ltp.containers.netns_breakns_ip_ipv6_ioctl.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_breakns_ip_ipv6_netlink.sh b/testcase/containers/ltp.containers.netns_breakns_ip_ipv6_netlink.sh index c5fbd7e..67e0f0e 100755 --- a/testcase/containers/ltp.containers.netns_breakns_ip_ipv6_netlink.sh +++ b/testcase/containers/ltp.containers.netns_breakns_ip_ipv6_netlink.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv4_ioctl.sh b/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv4_ioctl.sh index b50d0f3..7bc3e79 100755 --- a/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv4_ioctl.sh +++ b/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv4_ioctl.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv4_netlink.sh b/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv4_netlink.sh index 5b79ba8..738bf5d 100755 --- a/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv4_netlink.sh +++ b/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv4_netlink.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv6_ioctl.sh b/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv6_ioctl.sh index 6c37bdd..6beeec4 100755 --- a/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv6_ioctl.sh +++ b/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv6_ioctl.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv6_netlink.sh b/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv6_netlink.sh index db00a27..a7b3670 100755 --- a/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv6_netlink.sh +++ b/testcase/containers/ltp.containers.netns_breakns_ns_exec_ipv6_netlink.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_comm_ip_ipv4_ioctl.sh b/testcase/containers/ltp.containers.netns_comm_ip_ipv4_ioctl.sh index 4fbc447..9e8d341 100755 --- a/testcase/containers/ltp.containers.netns_comm_ip_ipv4_ioctl.sh +++ b/testcase/containers/ltp.containers.netns_comm_ip_ipv4_ioctl.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_comm_ip_ipv4_netlink.sh b/testcase/containers/ltp.containers.netns_comm_ip_ipv4_netlink.sh index 6e9d0fc..870e89e 100755 --- a/testcase/containers/ltp.containers.netns_comm_ip_ipv4_netlink.sh +++ b/testcase/containers/ltp.containers.netns_comm_ip_ipv4_netlink.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_comm_ip_ipv6_ioctl.sh b/testcase/containers/ltp.containers.netns_comm_ip_ipv6_ioctl.sh index e1c8445..d8586ca 100755 --- a/testcase/containers/ltp.containers.netns_comm_ip_ipv6_ioctl.sh +++ b/testcase/containers/ltp.containers.netns_comm_ip_ipv6_ioctl.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_comm_ip_ipv6_netlink.sh b/testcase/containers/ltp.containers.netns_comm_ip_ipv6_netlink.sh index 5057aae..b5a9ec8 100755 --- a/testcase/containers/ltp.containers.netns_comm_ip_ipv6_netlink.sh +++ b/testcase/containers/ltp.containers.netns_comm_ip_ipv6_netlink.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv4_ioctl.sh b/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv4_ioctl.sh index a4ce51b..b92eb90 100755 --- a/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv4_ioctl.sh +++ b/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv4_ioctl.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv4_netlink.sh b/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv4_netlink.sh index 78bef19..baa8b3b 100755 --- a/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv4_netlink.sh +++ b/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv4_netlink.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv6_ioctl.sh b/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv6_ioctl.sh index 2ac508e..6f03866 100755 --- a/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv6_ioctl.sh +++ b/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv6_ioctl.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv6_netlink.sh b/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv6_netlink.sh index 8e6752d..cacc166 100755 --- a/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv6_netlink.sh +++ b/testcase/containers/ltp.containers.netns_comm_ns_exec_ipv6_netlink.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_netlink.sh b/testcase/containers/ltp.containers.netns_netlink.sh index 09a393c..69185c5 100755 --- a/testcase/containers/ltp.containers.netns_netlink.sh +++ b/testcase/containers/ltp.containers.netns_netlink.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.netns_sysfs.sh b/testcase/containers/ltp.containers.netns_sysfs.sh index ae0744f..000fc43 100755 --- a/testcase/containers/ltp.containers.netns_sysfs.sh +++ b/testcase/containers/ltp.containers.netns_sysfs.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.pidns01.sh b/testcase/containers/ltp.containers.pidns01.sh index 4336377..90e4e0d 100755 --- a/testcase/containers/ltp.containers.pidns01.sh +++ b/testcase/containers/ltp.containers.pidns01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.pidns02.sh b/testcase/containers/ltp.containers.pidns02.sh index 7536867..f8eeb58 100755 --- a/testcase/containers/ltp.containers.pidns02.sh +++ b/testcase/containers/ltp.containers.pidns02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.pidns03.sh b/testcase/containers/ltp.containers.pidns03.sh index a19a04d..33ddc24 100755 --- a/testcase/containers/ltp.containers.pidns03.sh +++ b/testcase/containers/ltp.containers.pidns03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.pidns04.sh b/testcase/containers/ltp.containers.pidns04.sh index ed7c43b..66eb078 100755 --- a/testcase/containers/ltp.containers.pidns04.sh +++ b/testcase/containers/ltp.containers.pidns04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.pidns05.sh b/testcase/containers/ltp.containers.pidns05.sh index 02a4903..ff2cdeb 100755 --- a/testcase/containers/ltp.containers.pidns05.sh +++ b/testcase/containers/ltp.containers.pidns05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.pidns06.sh b/testcase/containers/ltp.containers.pidns06.sh index 801fcab..a8c119d 100755 --- a/testcase/containers/ltp.containers.pidns06.sh +++ b/testcase/containers/ltp.containers.pidns06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.pidns10.sh b/testcase/containers/ltp.containers.pidns10.sh index 55f0421..aa6336e 100755 --- a/testcase/containers/ltp.containers.pidns10.sh +++ b/testcase/containers/ltp.containers.pidns10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.pidns12.sh b/testcase/containers/ltp.containers.pidns12.sh index 4aaefed..decfc67 100755 --- a/testcase/containers/ltp.containers.pidns12.sh +++ b/testcase/containers/ltp.containers.pidns12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.pidns13.sh b/testcase/containers/ltp.containers.pidns13.sh index 4bdc76c..8a72d97 100755 --- a/testcase/containers/ltp.containers.pidns13.sh +++ b/testcase/containers/ltp.containers.pidns13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.pidns16.sh b/testcase/containers/ltp.containers.pidns16.sh index 230e07f..7c65477 100755 --- a/testcase/containers/ltp.containers.pidns16.sh +++ b/testcase/containers/ltp.containers.pidns16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.pidns17.sh b/testcase/containers/ltp.containers.pidns17.sh index 7d354bf..c2e1cd9 100755 --- a/testcase/containers/ltp.containers.pidns17.sh +++ b/testcase/containers/ltp.containers.pidns17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.pidns20.sh b/testcase/containers/ltp.containers.pidns20.sh index afefd35..f19ad13 100755 --- a/testcase/containers/ltp.containers.pidns20.sh +++ b/testcase/containers/ltp.containers.pidns20.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.pidns30.sh b/testcase/containers/ltp.containers.pidns30.sh index fa3c040..e20da9a 100755 --- a/testcase/containers/ltp.containers.pidns30.sh +++ b/testcase/containers/ltp.containers.pidns30.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.pidns31.sh b/testcase/containers/ltp.containers.pidns31.sh index 0120d0f..4d7ab82 100755 --- a/testcase/containers/ltp.containers.pidns31.sh +++ b/testcase/containers/ltp.containers.pidns31.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.pidns32.sh b/testcase/containers/ltp.containers.pidns32.sh index f3b8355..d996e53 100755 --- a/testcase/containers/ltp.containers.pidns32.sh +++ b/testcase/containers/ltp.containers.pidns32.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.sem_comm.sh b/testcase/containers/ltp.containers.sem_comm.sh index fe57c9b..9a9f378 100755 --- a/testcase/containers/ltp.containers.sem_comm.sh +++ b/testcase/containers/ltp.containers.sem_comm.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.sem_nstest_clone.sh b/testcase/containers/ltp.containers.sem_nstest_clone.sh index 2197fe5..2312251 100755 --- a/testcase/containers/ltp.containers.sem_nstest_clone.sh +++ b/testcase/containers/ltp.containers.sem_nstest_clone.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.sem_nstest_none.sh b/testcase/containers/ltp.containers.sem_nstest_none.sh index f2b7dfb..e88e973 100755 --- a/testcase/containers/ltp.containers.sem_nstest_none.sh +++ b/testcase/containers/ltp.containers.sem_nstest_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.sem_nstest_unshare.sh b/testcase/containers/ltp.containers.sem_nstest_unshare.sh index 08ab552..bd318d1 100755 --- a/testcase/containers/ltp.containers.sem_nstest_unshare.sh +++ b/testcase/containers/ltp.containers.sem_nstest_unshare.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.semtest_2ns_clone.sh b/testcase/containers/ltp.containers.semtest_2ns_clone.sh index 463d9a1..41bafc1 100755 --- a/testcase/containers/ltp.containers.semtest_2ns_clone.sh +++ b/testcase/containers/ltp.containers.semtest_2ns_clone.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.semtest_2ns_none.sh b/testcase/containers/ltp.containers.semtest_2ns_none.sh index 8b299eb..9bcb881 100755 --- a/testcase/containers/ltp.containers.semtest_2ns_none.sh +++ b/testcase/containers/ltp.containers.semtest_2ns_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.semtest_2ns_unshare.sh b/testcase/containers/ltp.containers.semtest_2ns_unshare.sh index 9b4fb76..4a813c0 100755 --- a/testcase/containers/ltp.containers.semtest_2ns_unshare.sh +++ b/testcase/containers/ltp.containers.semtest_2ns_unshare.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.shm_comm.sh b/testcase/containers/ltp.containers.shm_comm.sh index b74cb86..511de27 100755 --- a/testcase/containers/ltp.containers.shm_comm.sh +++ b/testcase/containers/ltp.containers.shm_comm.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.shmem_2nstest_clone.sh b/testcase/containers/ltp.containers.shmem_2nstest_clone.sh index 65b72a9..944867e 100755 --- a/testcase/containers/ltp.containers.shmem_2nstest_clone.sh +++ b/testcase/containers/ltp.containers.shmem_2nstest_clone.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.shmem_2nstest_none.sh b/testcase/containers/ltp.containers.shmem_2nstest_none.sh index 2c2964e..3de5c43 100755 --- a/testcase/containers/ltp.containers.shmem_2nstest_none.sh +++ b/testcase/containers/ltp.containers.shmem_2nstest_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.shmem_2nstest_unshare.sh b/testcase/containers/ltp.containers.shmem_2nstest_unshare.sh index 5854f5b..dff4b20 100755 --- a/testcase/containers/ltp.containers.shmem_2nstest_unshare.sh +++ b/testcase/containers/ltp.containers.shmem_2nstest_unshare.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.shmnstest_clone.sh b/testcase/containers/ltp.containers.shmnstest_clone.sh index a1935e4..326e03a 100755 --- a/testcase/containers/ltp.containers.shmnstest_clone.sh +++ b/testcase/containers/ltp.containers.shmnstest_clone.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.shmnstest_none.sh b/testcase/containers/ltp.containers.shmnstest_none.sh index eaef3a7..ac7bed6 100755 --- a/testcase/containers/ltp.containers.shmnstest_none.sh +++ b/testcase/containers/ltp.containers.shmnstest_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.shmnstest_unshare.sh b/testcase/containers/ltp.containers.shmnstest_unshare.sh index 3b0801b..9bd115f 100755 --- a/testcase/containers/ltp.containers.shmnstest_unshare.sh +++ b/testcase/containers/ltp.containers.shmnstest_unshare.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.sysinfo03.sh b/testcase/containers/ltp.containers.sysinfo03.sh index 1d25d8b..e189277 100755 --- a/testcase/containers/ltp.containers.sysinfo03.sh +++ b/testcase/containers/ltp.containers.sysinfo03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.timens01.sh b/testcase/containers/ltp.containers.timens01.sh index 5e8827e..d4d525d 100755 --- a/testcase/containers/ltp.containers.timens01.sh +++ b/testcase/containers/ltp.containers.timens01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.timerfd04.sh b/testcase/containers/ltp.containers.timerfd04.sh index 9132b4d..e35b590 100755 --- a/testcase/containers/ltp.containers.timerfd04.sh +++ b/testcase/containers/ltp.containers.timerfd04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.userns01.sh b/testcase/containers/ltp.containers.userns01.sh index 6f569e7..946baaa 100755 --- a/testcase/containers/ltp.containers.userns01.sh +++ b/testcase/containers/ltp.containers.userns01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.userns02.sh b/testcase/containers/ltp.containers.userns02.sh index 4f0eec2..475451c 100755 --- a/testcase/containers/ltp.containers.userns02.sh +++ b/testcase/containers/ltp.containers.userns02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.userns03.sh b/testcase/containers/ltp.containers.userns03.sh index a37c5c1..6abaf44 100755 --- a/testcase/containers/ltp.containers.userns03.sh +++ b/testcase/containers/ltp.containers.userns03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.userns04.sh b/testcase/containers/ltp.containers.userns04.sh index 40409a6..bc1ed5d 100755 --- a/testcase/containers/ltp.containers.userns04.sh +++ b/testcase/containers/ltp.containers.userns04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.userns05.sh b/testcase/containers/ltp.containers.userns05.sh index c418475..dab4388 100755 --- a/testcase/containers/ltp.containers.userns05.sh +++ b/testcase/containers/ltp.containers.userns05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.userns06.sh b/testcase/containers/ltp.containers.userns06.sh index 13de9f1..5c1fc31 100755 --- a/testcase/containers/ltp.containers.userns06.sh +++ b/testcase/containers/ltp.containers.userns06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.userns07.sh b/testcase/containers/ltp.containers.userns07.sh index 6403238..6675a20 100755 --- a/testcase/containers/ltp.containers.userns07.sh +++ b/testcase/containers/ltp.containers.userns07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.userns08.sh b/testcase/containers/ltp.containers.userns08.sh index e1b3c78..78dec6d 100755 --- a/testcase/containers/ltp.containers.userns08.sh +++ b/testcase/containers/ltp.containers.userns08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.utsname01.sh b/testcase/containers/ltp.containers.utsname01.sh index 50383f7..afbc874 100755 --- a/testcase/containers/ltp.containers.utsname01.sh +++ b/testcase/containers/ltp.containers.utsname01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.utsname02.sh b/testcase/containers/ltp.containers.utsname02.sh index 84e3ce2..efa30a5 100755 --- a/testcase/containers/ltp.containers.utsname02.sh +++ b/testcase/containers/ltp.containers.utsname02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.utsname03_clone.sh b/testcase/containers/ltp.containers.utsname03_clone.sh index 3b6d2c4..36cd1ac 100755 --- a/testcase/containers/ltp.containers.utsname03_clone.sh +++ b/testcase/containers/ltp.containers.utsname03_clone.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.utsname03_unshare.sh b/testcase/containers/ltp.containers.utsname03_unshare.sh index b65a797..d6f7a7c 100755 --- a/testcase/containers/ltp.containers.utsname03_unshare.sh +++ b/testcase/containers/ltp.containers.utsname03_unshare.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.utsname04_clone.sh b/testcase/containers/ltp.containers.utsname04_clone.sh index fafcb9c..948013a 100755 --- a/testcase/containers/ltp.containers.utsname04_clone.sh +++ b/testcase/containers/ltp.containers.utsname04_clone.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/containers/ltp.containers.utsname04_unshare.sh b/testcase/containers/ltp.containers.utsname04_unshare.sh index 14662e0..436708a 100755 --- a/testcase/containers/ltp.containers.utsname04_unshare.sh +++ b/testcase/containers/ltp.containers.utsname04_unshare.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup.sh b/testcase/controllers/ltp.controllers.cgroup.sh index 133f2f3..73d0330 100755 --- a/testcase/controllers/ltp.controllers.cgroup.sh +++ b/testcase/controllers/ltp.controllers.cgroup.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_core01.sh b/testcase/controllers/ltp.controllers.cgroup_core01.sh index c36a605..ac3c22e 100755 --- a/testcase/controllers/ltp.controllers.cgroup_core01.sh +++ b/testcase/controllers/ltp.controllers.cgroup_core01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_core02.sh b/testcase/controllers/ltp.controllers.cgroup_core02.sh index c04e8d9..2f508e2 100755 --- a/testcase/controllers/ltp.controllers.cgroup_core02.sh +++ b/testcase/controllers/ltp.controllers.cgroup_core02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_core03.sh b/testcase/controllers/ltp.controllers.cgroup_core03.sh index 05fe7d6..966c6b3 100755 --- a/testcase/controllers/ltp.controllers.cgroup_core03.sh +++ b/testcase/controllers/ltp.controllers.cgroup_core03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_blkio.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_blkio.sh index dbf792e..4ca39aa 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_function_blkio.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_blkio.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_cpu.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_cpu.sh index 1ea58d2..9fc33c0 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_function_cpu.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_cpu.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_cpuacct.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_cpuacct.sh index cbeebc2..4b8b1c9 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_function_cpuacct.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_cpuacct.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_cpuset.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_cpuset.sh index 2b8a867..9d0cce5 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_function_cpuset.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_cpuset.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_debug.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_debug.sh index 580af1a..17d83a8 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_function_debug.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_debug.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_devices.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_devices.sh index e7f247f..2d57e44 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_function_devices.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_devices.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_freezer.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_freezer.sh index c269280..7f94b80 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_function_freezer.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_freezer.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_hugetlb.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_hugetlb.sh index 07abf62..bf3ffdf 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_function_hugetlb.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_hugetlb.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_memory.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_memory.sh index b13476f..3a2f5d4 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_function_memory.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_memory.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_net_cls.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_net_cls.sh index 0461214..2c23ad2 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_function_net_cls.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_net_cls.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_net_prio.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_net_prio.sh index d89b782..4ef939f 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_function_net_prio.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_net_prio.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_function_perf_event.sh b/testcase/controllers/ltp.controllers.cgroup_fj_function_perf_event.sh index 918a0e6..bca06c7 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_function_perf_event.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_function_perf_event.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_each.sh index a93ed86..87e2e6b 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_none.sh index 0a4455d..03e453d 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_one.sh index 131e2c9..b820cae 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_10_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_each.sh index efb9b8f..0e34fba 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_none.sh index b627234..c849b83 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_one.sh index 58b435d..b73d79c 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_1_200_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_each.sh index c90af3a..8eac858 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_none.sh index 08eac69..9355d89 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_one.sh index 1e7df17..e006e04 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_200_1_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_each.sh index 2e08bf1..d56d145 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_none.sh index f86dce7..bf29704 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_one.sh index f8c3f04..5e275c7 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_2_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_each.sh index be69246..c15ee18 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_none.sh index 69ff9b1..8023d02 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_one.sh index 678a345..c494f7e 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_2_9_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_each.sh index 7b1f0f3..9703133 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_none.sh index 5c647af..03f23e8 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_one.sh index 5329bac..fc4efd5 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_3_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_each.sh index a47ec0a..7ca8cb5 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_none.sh index 7fdc6e0..5ae56c5 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_one.sh index 47b8963..73142ca 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_blkio_4_4_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_each.sh index f1a2de5..f6dad41 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_none.sh index 9275367..02c2221 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_one.sh index 460d2c0..d3a0789 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_10_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_each.sh index 9c82455..f76dea7 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_none.sh index 588af39..080a5eb 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_one.sh index 11a88c9..5de6dd2 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_1_200_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_each.sh index a3eb17a..7f80bf7 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_none.sh index 0504970..80138e3 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_one.sh index 8661a3b..337c1dc 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_200_1_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_each.sh index 473ab6b..480074c 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_none.sh index 142221c..991b88e 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_one.sh index 1b7ef79..2dc512f 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_2_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_each.sh index 09e38c6..3064914 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_none.sh index 80d1633..121ebe3 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_one.sh index 5d77d2a..49b35e3 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_2_9_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_each.sh index bcec878..a6ae22d 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_none.sh index 80d92d5..812c3b4 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_one.sh index 867de63..fcb685d 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_3_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_each.sh index 959c2ba..34fced8 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_none.sh index bafad26..f3ab46c 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_one.sh index 80ccf07..611f9dd 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpu_4_4_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_each.sh index 8b5e4f7..56971d5 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_none.sh index 61c77cb..260310f 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_one.sh index c6c5023..f1f08b3 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_10_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_each.sh index dd8b07a..0c7af03 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_none.sh index b289391..5f30958 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_one.sh index 5333af0..0aaccee 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_1_200_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_each.sh index df72f64..e6b31da 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_none.sh index 63c64b1..a54b1e1 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_one.sh index 3904c46..ad72992 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_200_1_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_each.sh index 543f438..5f39b4b 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_none.sh index 0e4bfb7..79ddd83 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_one.sh index c90d5b6..4135b79 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_2_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_each.sh index 499a795..2a917e8 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_none.sh index 6368a37..34f0338 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_one.sh index 50f9e23..7ef4c0f 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_2_9_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_each.sh index b1a18d8..5127e62 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_none.sh index 1a342d3..5a1019d 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_one.sh index c6b7338..b3fffe9 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_3_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_each.sh index 00b40b7..47b8087 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_none.sh index 446ad78..677334c 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_one.sh index def7248..f1cd34a 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuacct_4_4_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_each.sh index a7a688f..99a7847 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_none.sh index c05af04..d263c87 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_one.sh index ee1d2f1..d1dcf2f 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_10_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_each.sh index 3a211ba..1564564 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_none.sh index 16ae5e8..a3303b7 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_one.sh index 95abae2..ac30819 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_1_200_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_each.sh index d31a693..7c751ca 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_none.sh index 37fbca6..25443ee 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_one.sh index 9fafcd5..2815ed4 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_200_1_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_each.sh index ad0b822..b433f30 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_none.sh index b0294aa..141d929 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_one.sh index 31a79dc..4cb3434 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_2_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_each.sh index 5f51f2b..c897ec4 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_none.sh index ee955c7..6a7334c 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_one.sh index b3119db..627b38b 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_2_9_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_each.sh index 1909b5c..de10e1e 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_none.sh index 9317cec..0e0b5a0 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_one.sh index 9313858..4403d1c 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_3_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_each.sh index b1556eb..31113ab 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_none.sh index 606d8c2..edda308 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_one.sh index 4c5d5e2..cd187a7 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_cpuset_4_4_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_each.sh index 66e4f30..1d95a03 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_none.sh index cc74436..030de05 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_one.sh index d1d5da7..7c05780 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_10_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_each.sh index 35c40b8..44ef6d1 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_none.sh index bd34d4b..0678e89 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_one.sh index 5a91c5d..68c7867 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_1_200_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_each.sh index 118e537..da37343 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_none.sh index 739f896..878ed46 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_one.sh index 65ea7a7..056803e 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_200_1_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_each.sh index b8ae757..d4bf2d2 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_none.sh index 7c39452..7cd9086 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_one.sh index 71ae3f5..f18911e 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_2_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_each.sh index d7597a3..17095be 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_none.sh index 9ef16fa..6b479d8 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_one.sh index 8d0770d..eb23885 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_2_9_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_each.sh index 2e9d59f..069df14 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_none.sh index 066444f..55049f3 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_one.sh index 1c3e127..a585526 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_3_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_each.sh index 7a1ce73..088521a 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_none.sh index ff6bb72..fe05989 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_one.sh index fb920e6..3979adc 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_debug_4_4_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_each.sh index 51db475..38547f0 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_none.sh index 4ac661e..173d04d 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_one.sh index cfa66fc..e38ded4 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_10_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_each.sh index 0558e6c..6656895 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_none.sh index 8dbafcf..1c796fc 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_one.sh index 29520a9..f308f18 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_1_200_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_each.sh index e25fd03..55fa712 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_none.sh index ecdcb8e..da44a58 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_one.sh index 07bd2bc..2d0af3a 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_200_1_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_each.sh index ddc2da1..a218b82 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_none.sh index 0906f33..390500d 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_one.sh index ab6f8ba..0752a6f 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_2_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_each.sh index b43da23..aa2eb10 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_none.sh index d470e5f..17f2d17 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_one.sh index cc03189..5861b0e 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_2_9_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_each.sh index 731dbf5..9c76882 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_none.sh index 3a7c86e..1e6e293 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_one.sh index fe0551e..e42600c 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_3_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_each.sh index a990803..9d70d26 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_none.sh index d3ffe7d..7968abb 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_one.sh index 8d72942..000d16e 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_devices_4_4_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_each.sh index b796ebf..b1559ee 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_none.sh index 8f0e1f9..925d78b 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_one.sh index 1d2e479..4b0714f 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_10_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_each.sh index 8fc5ffa..465e9c1 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_none.sh index b97b40a..b559a08 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_one.sh index ee3981d..8bec98c 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_1_200_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_each.sh index caf9220..b0b3e4e 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_none.sh index 3450cb9..35a1a89 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_one.sh index f57a048..a497b72 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_200_1_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_each.sh index 8dc10be..a3c2485 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_none.sh index be48f88..798dd74 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_one.sh index 05d4414..7a1beb7 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_2_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_each.sh index 71e052e..0d0d1dc 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_none.sh index 8eba61b..12eefbc 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_one.sh index 6542e7e..33628d3 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_2_9_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_each.sh index e08a5dc..9f98ab5 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_none.sh index a8f9acd..74be359 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_one.sh index 42d6dd6..ecc3205 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_3_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_each.sh index 8ab5401..62219b0 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_none.sh index 3444989..ddde496 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_one.sh index d502784..8eb0623 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_freezer_4_4_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_each.sh index 6310b57..8239dbb 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_none.sh index 247453f..e1e61f7 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_one.sh index f417602..8cffaca 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_10_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_each.sh index a6b63ef..8c3f11a 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_none.sh index ca98c08..1da616a 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_one.sh index 198dad3..7559e96 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_1_200_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_each.sh index d2ce9ee..cf58a6e 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_none.sh index 2053cdb..06e475d 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_one.sh index 779fa55..52c49b7 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_200_1_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_each.sh index b74d5b3..7b359e1 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_none.sh index cc4496e..c8955df 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_one.sh index fb28b18..435b8ff 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_2_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_each.sh index eaa9cd3..a0f6349 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_none.sh index 773cfea..ff10ea9 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_one.sh index 77e8a8b..ca44845 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_2_9_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_each.sh index aed0a09..b3951b5 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_none.sh index 4c64e24..09f6f6f 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_one.sh index f1e9f6f..a1ae0e4 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_3_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_each.sh index 56b2ce3..2db8358 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_none.sh index ddb1997..39a9277 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_one.sh index 0118628..6673ed4 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_hugetlb_4_4_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_each.sh index 713e38b..0d88780 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_none.sh index 764783f..04bf65d 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_one.sh index 0805f8e..e59554c 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_10_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_each.sh index bd806f9..3ddf7b1 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_none.sh index 2b492af..93c67da 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_one.sh index 29330b5..8458993 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_1_200_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_each.sh index 218fa5d..9e33df5 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_none.sh index 64e0eea..d1c4e6c 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_one.sh index c938b42..9f31d72 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_200_1_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_each.sh index 48ec466..9be7a88 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_none.sh index 5d737e9..dc78b18 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_one.sh index fac0240..512fa83 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_2_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_each.sh index 242eda0..faeb8c9 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_none.sh index 6af8cbe..b0fb8b0 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_one.sh index 5404de9..a6dbf53 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_2_9_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_each.sh index ae4f7ed..ae173f1 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_none.sh index b748718..e518076 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_one.sh index 9b59efa..65ab9c1 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_3_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_each.sh index b9b7c4c..9b141fd 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_none.sh index cdb7bd4..e37800e 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_one.sh index 9be4647..8987bd0 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_memory_4_4_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_each.sh index 36683d1..509c752 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_none.sh index f9bf180..59c3646 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_one.sh index 86df215..07e551a 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_10_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_each.sh index e3d28b8..dd8663e 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_none.sh index 06f5296..bed099d 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_one.sh index cef8765..c5c2bb8 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_1_200_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_each.sh index 52aa951..ec5aade 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_none.sh index 60372b5..f62b82c 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_one.sh index f9edb1e..3bb4fe0 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_200_1_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_each.sh index bfce400..c5e1d53 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_none.sh index dbc29ff..165b5a9 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_one.sh index 95f2c23..465c518 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_2_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_each.sh index c7db107..e9f2404 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_none.sh index 2dea095..5d61c8f 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_one.sh index 9b5022c..c50c43a 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_2_9_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_each.sh index 628058e..0d8b46a 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_none.sh index 4afdcec..e911abc 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_one.sh index 5c5b9ba..d8d021f 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_3_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_each.sh index 38e7dd4..b212cee 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_none.sh index 21ee02f..f3a1477 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_one.sh index 606d26e..dd41e81 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_cls_4_4_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_each.sh index a780eaa..38060e9 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_none.sh index ebb39d1..59f4627 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_one.sh index 59fd8b9..b274c76 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_10_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_each.sh index 8bce282..f801eef 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_none.sh index e58ba6d..c164977 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_one.sh index 9a6f746..2911e50 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_1_200_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_each.sh index 36b6809..fbda1f5 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_none.sh index eb749a2..cbe6e32 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_one.sh index 8b7b732..60ce07f 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_200_1_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_each.sh index 799bfe8..b99b25d 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_none.sh index 006c8a8..969b705 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_one.sh index d264954..5ae3303 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_2_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_each.sh index be2e9d7..760e14c 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_none.sh index 79f19c4..67bd902 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_one.sh index c3db7ea..77cd9ac 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_2_9_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_each.sh index 9b91bcc..fb2e4cc 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_none.sh index 4229994..5ce562b 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_one.sh index 44eac72..ca02880 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_3_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_each.sh index 43c99f8..c0011f9 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_none.sh index e6a554b..bf16f4a 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_one.sh index 9390b1e..420e565 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_net_prio_4_4_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_each.sh index 3eba15f..21e091a 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_none.sh index 9376177..8618c1b 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_one.sh index 6e06e58..dee8df6 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_10_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_each.sh index cdd903c..d415f86 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_none.sh index d2d1749..843f6f4 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_one.sh index 679e7d5..85c3da3 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_1_200_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_each.sh index e8da2a2..b46c530 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_none.sh index 4298248..00a7d6a 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_one.sh index f19ee53..f1dd02d 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_200_1_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_each.sh index 7a4a227..1e0827d 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_none.sh index c5c2573..2d363f9 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_one.sh index 293066e..54dce41 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_2_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_each.sh index c81971e..0d58e3a 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_none.sh index cee62d4..3c912e1 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_one.sh index c000be4..0071061 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_2_9_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_each.sh index 9854763..6d22c4f 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_none.sh index d8c53ce..d960865 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_one.sh index 5b956f5..d69b7cc 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_3_3_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_each.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_each.sh index 9875456..3ebf55c 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_each.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_each.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_none.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_none.sh index b4a21df..d9b6e8d 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_none.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_none.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_one.sh b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_one.sh index d578d4b..e985e79 100755 --- a/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_one.sh +++ b/testcase/controllers/ltp.controllers.cgroup_fj_stress_perf_event_4_4_one.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cgroup_xattr.sh b/testcase/controllers/ltp.controllers.cgroup_xattr.sh index 518eccf..34a2219 100755 --- a/testcase/controllers/ltp.controllers.cgroup_xattr.sh +++ b/testcase/controllers/ltp.controllers.cgroup_xattr.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.controllers.sh b/testcase/controllers/ltp.controllers.controllers.sh index 5fb7022..362ce84 100755 --- a/testcase/controllers/ltp.controllers.controllers.sh +++ b/testcase/controllers/ltp.controllers.controllers.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuacct_100_1.sh b/testcase/controllers/ltp.controllers.cpuacct_100_1.sh index 85eb285..7d57c22 100755 --- a/testcase/controllers/ltp.controllers.cpuacct_100_1.sh +++ b/testcase/controllers/ltp.controllers.cpuacct_100_1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuacct_100_100.sh b/testcase/controllers/ltp.controllers.cpuacct_100_100.sh index a8e6850..8d4bdc2 100755 --- a/testcase/controllers/ltp.controllers.cpuacct_100_100.sh +++ b/testcase/controllers/ltp.controllers.cpuacct_100_100.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuacct_10_10.sh b/testcase/controllers/ltp.controllers.cpuacct_10_10.sh index 4ecfdd1..0ce1433 100755 --- a/testcase/controllers/ltp.controllers.cpuacct_10_10.sh +++ b/testcase/controllers/ltp.controllers.cpuacct_10_10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuacct_1_1.sh b/testcase/controllers/ltp.controllers.cpuacct_1_1.sh index 59c583a..5805747 100755 --- a/testcase/controllers/ltp.controllers.cpuacct_1_1.sh +++ b/testcase/controllers/ltp.controllers.cpuacct_1_1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuacct_1_10.sh b/testcase/controllers/ltp.controllers.cpuacct_1_10.sh index ecd300d..1fed134 100755 --- a/testcase/controllers/ltp.controllers.cpuacct_1_10.sh +++ b/testcase/controllers/ltp.controllers.cpuacct_1_10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuacct_1_100.sh b/testcase/controllers/ltp.controllers.cpuacct_1_100.sh index 49a5eb5..ac53767 100755 --- a/testcase/controllers/ltp.controllers.cpuacct_1_100.sh +++ b/testcase/controllers/ltp.controllers.cpuacct_1_100.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuset_base_ops.sh b/testcase/controllers/ltp.controllers.cpuset_base_ops.sh index 64075fe..c66501d 100755 --- a/testcase/controllers/ltp.controllers.cpuset_base_ops.sh +++ b/testcase/controllers/ltp.controllers.cpuset_base_ops.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuset_exclusive.sh b/testcase/controllers/ltp.controllers.cpuset_exclusive.sh index f1e2989..08b2418 100755 --- a/testcase/controllers/ltp.controllers.cpuset_exclusive.sh +++ b/testcase/controllers/ltp.controllers.cpuset_exclusive.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuset_hierarchy.sh b/testcase/controllers/ltp.controllers.cpuset_hierarchy.sh index 51c7d24..97a2985 100755 --- a/testcase/controllers/ltp.controllers.cpuset_hierarchy.sh +++ b/testcase/controllers/ltp.controllers.cpuset_hierarchy.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuset_hotplug.sh b/testcase/controllers/ltp.controllers.cpuset_hotplug.sh index 24b6788..b3d4baa 100755 --- a/testcase/controllers/ltp.controllers.cpuset_hotplug.sh +++ b/testcase/controllers/ltp.controllers.cpuset_hotplug.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuset_inherit.sh b/testcase/controllers/ltp.controllers.cpuset_inherit.sh index e288d5d..3c6dd77 100755 --- a/testcase/controllers/ltp.controllers.cpuset_inherit.sh +++ b/testcase/controllers/ltp.controllers.cpuset_inherit.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuset_load_balance.sh b/testcase/controllers/ltp.controllers.cpuset_load_balance.sh index 2491068..11c811d 100755 --- a/testcase/controllers/ltp.controllers.cpuset_load_balance.sh +++ b/testcase/controllers/ltp.controllers.cpuset_load_balance.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuset_memory.sh b/testcase/controllers/ltp.controllers.cpuset_memory.sh index a25a4d3..356b80a 100755 --- a/testcase/controllers/ltp.controllers.cpuset_memory.sh +++ b/testcase/controllers/ltp.controllers.cpuset_memory.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuset_memory_pressure.sh b/testcase/controllers/ltp.controllers.cpuset_memory_pressure.sh index a1162ab..49290be 100755 --- a/testcase/controllers/ltp.controllers.cpuset_memory_pressure.sh +++ b/testcase/controllers/ltp.controllers.cpuset_memory_pressure.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuset_memory_spread.sh b/testcase/controllers/ltp.controllers.cpuset_memory_spread.sh index 4582793..887fe69 100755 --- a/testcase/controllers/ltp.controllers.cpuset_memory_spread.sh +++ b/testcase/controllers/ltp.controllers.cpuset_memory_spread.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuset_regression_test.sh b/testcase/controllers/ltp.controllers.cpuset_regression_test.sh index d335b55..63eeaa3 100755 --- a/testcase/controllers/ltp.controllers.cpuset_regression_test.sh +++ b/testcase/controllers/ltp.controllers.cpuset_regression_test.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuset_sched_domains.sh b/testcase/controllers/ltp.controllers.cpuset_sched_domains.sh index 5e324c6..1b35736 100755 --- a/testcase/controllers/ltp.controllers.cpuset_sched_domains.sh +++ b/testcase/controllers/ltp.controllers.cpuset_sched_domains.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.cpuset_syscall.sh b/testcase/controllers/ltp.controllers.cpuset_syscall.sh index 64766b2..8f3a6e3 100755 --- a/testcase/controllers/ltp.controllers.cpuset_syscall.sh +++ b/testcase/controllers/ltp.controllers.cpuset_syscall.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.io_control01.sh b/testcase/controllers/ltp.controllers.io_control01.sh index 8f246c7..991e82d 100755 --- a/testcase/controllers/ltp.controllers.io_control01.sh +++ b/testcase/controllers/ltp.controllers.io_control01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcg_control.sh b/testcase/controllers/ltp.controllers.memcg_control.sh index bb73638..6e9c170 100755 --- a/testcase/controllers/ltp.controllers.memcg_control.sh +++ b/testcase/controllers/ltp.controllers.memcg_control.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcg_failcnt.sh b/testcase/controllers/ltp.controllers.memcg_failcnt.sh index 1b62d88..3f50e65 100755 --- a/testcase/controllers/ltp.controllers.memcg_failcnt.sh +++ b/testcase/controllers/ltp.controllers.memcg_failcnt.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcg_force_empty.sh b/testcase/controllers/ltp.controllers.memcg_force_empty.sh index 883a7eb..81e48f6 100755 --- a/testcase/controllers/ltp.controllers.memcg_force_empty.sh +++ b/testcase/controllers/ltp.controllers.memcg_force_empty.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcg_limit_in_bytes.sh b/testcase/controllers/ltp.controllers.memcg_limit_in_bytes.sh index 213fccb..a5ee4f2 100755 --- a/testcase/controllers/ltp.controllers.memcg_limit_in_bytes.sh +++ b/testcase/controllers/ltp.controllers.memcg_limit_in_bytes.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcg_max_usage_in_bytes.sh b/testcase/controllers/ltp.controllers.memcg_max_usage_in_bytes.sh index baddcce..62ad527 100755 --- a/testcase/controllers/ltp.controllers.memcg_max_usage_in_bytes.sh +++ b/testcase/controllers/ltp.controllers.memcg_max_usage_in_bytes.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcg_memsw_limit_in_bytes.sh b/testcase/controllers/ltp.controllers.memcg_memsw_limit_in_bytes.sh index 0ead08a..6f3ff70 100755 --- a/testcase/controllers/ltp.controllers.memcg_memsw_limit_in_bytes.sh +++ b/testcase/controllers/ltp.controllers.memcg_memsw_limit_in_bytes.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcg_move_charge_at_immigrate.sh b/testcase/controllers/ltp.controllers.memcg_move_charge_at_immigrate.sh index 2da259c..1e75f38 100755 --- a/testcase/controllers/ltp.controllers.memcg_move_charge_at_immigrate.sh +++ b/testcase/controllers/ltp.controllers.memcg_move_charge_at_immigrate.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcg_regression.sh b/testcase/controllers/ltp.controllers.memcg_regression.sh index 9db7cbe..19b568d 100755 --- a/testcase/controllers/ltp.controllers.memcg_regression.sh +++ b/testcase/controllers/ltp.controllers.memcg_regression.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcg_stat.sh b/testcase/controllers/ltp.controllers.memcg_stat.sh index 2a5a435..e91638a 100755 --- a/testcase/controllers/ltp.controllers.memcg_stat.sh +++ b/testcase/controllers/ltp.controllers.memcg_stat.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcg_stat_rss.sh b/testcase/controllers/ltp.controllers.memcg_stat_rss.sh index e0c26af..5dc7d9d 100755 --- a/testcase/controllers/ltp.controllers.memcg_stat_rss.sh +++ b/testcase/controllers/ltp.controllers.memcg_stat_rss.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcg_stress.sh b/testcase/controllers/ltp.controllers.memcg_stress.sh index 361ad41..d16a9db 100755 --- a/testcase/controllers/ltp.controllers.memcg_stress.sh +++ b/testcase/controllers/ltp.controllers.memcg_stress.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcg_subgroup_charge.sh b/testcase/controllers/ltp.controllers.memcg_subgroup_charge.sh index 05944bb..030cf4d 100755 --- a/testcase/controllers/ltp.controllers.memcg_subgroup_charge.sh +++ b/testcase/controllers/ltp.controllers.memcg_subgroup_charge.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcg_test_3.sh b/testcase/controllers/ltp.controllers.memcg_test_3.sh index 3df8337..ff3d6b2 100755 --- a/testcase/controllers/ltp.controllers.memcg_test_3.sh +++ b/testcase/controllers/ltp.controllers.memcg_test_3.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcg_usage_in_bytes.sh b/testcase/controllers/ltp.controllers.memcg_usage_in_bytes.sh index 2c2f7f5..2f9cb61 100755 --- a/testcase/controllers/ltp.controllers.memcg_usage_in_bytes.sh +++ b/testcase/controllers/ltp.controllers.memcg_usage_in_bytes.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcg_use_hierarchy.sh b/testcase/controllers/ltp.controllers.memcg_use_hierarchy.sh index 0f31ca0..2d783f4 100755 --- a/testcase/controllers/ltp.controllers.memcg_use_hierarchy.sh +++ b/testcase/controllers/ltp.controllers.memcg_use_hierarchy.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcontrol01.sh b/testcase/controllers/ltp.controllers.memcontrol01.sh index 511034c..f5d35e0 100755 --- a/testcase/controllers/ltp.controllers.memcontrol01.sh +++ b/testcase/controllers/ltp.controllers.memcontrol01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcontrol02.sh b/testcase/controllers/ltp.controllers.memcontrol02.sh index 9612b0b..655b0e0 100755 --- a/testcase/controllers/ltp.controllers.memcontrol02.sh +++ b/testcase/controllers/ltp.controllers.memcontrol02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcontrol03.sh b/testcase/controllers/ltp.controllers.memcontrol03.sh index 78ff892..7cbe96f 100755 --- a/testcase/controllers/ltp.controllers.memcontrol03.sh +++ b/testcase/controllers/ltp.controllers.memcontrol03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.memcontrol04.sh b/testcase/controllers/ltp.controllers.memcontrol04.sh index 3d86c2d..25e13b4 100755 --- a/testcase/controllers/ltp.controllers.memcontrol04.sh +++ b/testcase/controllers/ltp.controllers.memcontrol04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_1_1.sh b/testcase/controllers/ltp.controllers.pids_1_1.sh index 96c3873..5d84773 100755 --- a/testcase/controllers/ltp.controllers.pids_1_1.sh +++ b/testcase/controllers/ltp.controllers.pids_1_1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_1_10.sh b/testcase/controllers/ltp.controllers.pids_1_10.sh index d98d688..ec79843 100755 --- a/testcase/controllers/ltp.controllers.pids_1_10.sh +++ b/testcase/controllers/ltp.controllers.pids_1_10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_1_100.sh b/testcase/controllers/ltp.controllers.pids_1_100.sh index 26c0304..201beac 100755 --- a/testcase/controllers/ltp.controllers.pids_1_100.sh +++ b/testcase/controllers/ltp.controllers.pids_1_100.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_1_2.sh b/testcase/controllers/ltp.controllers.pids_1_2.sh index 95ebee6..17f195d 100755 --- a/testcase/controllers/ltp.controllers.pids_1_2.sh +++ b/testcase/controllers/ltp.controllers.pids_1_2.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_1_50.sh b/testcase/controllers/ltp.controllers.pids_1_50.sh index 34d47c3..56c8702 100755 --- a/testcase/controllers/ltp.controllers.pids_1_50.sh +++ b/testcase/controllers/ltp.controllers.pids_1_50.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_2_1.sh b/testcase/controllers/ltp.controllers.pids_2_1.sh index 4279d3e..0c39326 100755 --- a/testcase/controllers/ltp.controllers.pids_2_1.sh +++ b/testcase/controllers/ltp.controllers.pids_2_1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_2_10.sh b/testcase/controllers/ltp.controllers.pids_2_10.sh index e68f362..c89e651 100755 --- a/testcase/controllers/ltp.controllers.pids_2_10.sh +++ b/testcase/controllers/ltp.controllers.pids_2_10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_2_100.sh b/testcase/controllers/ltp.controllers.pids_2_100.sh index 16321dd..cb34b8c 100755 --- a/testcase/controllers/ltp.controllers.pids_2_100.sh +++ b/testcase/controllers/ltp.controllers.pids_2_100.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_2_2.sh b/testcase/controllers/ltp.controllers.pids_2_2.sh index c5e88e7..1a01d44 100755 --- a/testcase/controllers/ltp.controllers.pids_2_2.sh +++ b/testcase/controllers/ltp.controllers.pids_2_2.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_2_50.sh b/testcase/controllers/ltp.controllers.pids_2_50.sh index b3ce066..abf0d95 100755 --- a/testcase/controllers/ltp.controllers.pids_2_50.sh +++ b/testcase/controllers/ltp.controllers.pids_2_50.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_3_0.sh b/testcase/controllers/ltp.controllers.pids_3_0.sh index b44e696..63d1729 100755 --- a/testcase/controllers/ltp.controllers.pids_3_0.sh +++ b/testcase/controllers/ltp.controllers.pids_3_0.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_3_1.sh b/testcase/controllers/ltp.controllers.pids_3_1.sh index 0022573..532196a 100755 --- a/testcase/controllers/ltp.controllers.pids_3_1.sh +++ b/testcase/controllers/ltp.controllers.pids_3_1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_3_10.sh b/testcase/controllers/ltp.controllers.pids_3_10.sh index 364a7a9..fb74fde 100755 --- a/testcase/controllers/ltp.controllers.pids_3_10.sh +++ b/testcase/controllers/ltp.controllers.pids_3_10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_3_100.sh b/testcase/controllers/ltp.controllers.pids_3_100.sh index 8d40659..9fa655e 100755 --- a/testcase/controllers/ltp.controllers.pids_3_100.sh +++ b/testcase/controllers/ltp.controllers.pids_3_100.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_3_50.sh b/testcase/controllers/ltp.controllers.pids_3_50.sh index 7e1c6e1..93a89eb 100755 --- a/testcase/controllers/ltp.controllers.pids_3_50.sh +++ b/testcase/controllers/ltp.controllers.pids_3_50.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_4_1.sh b/testcase/controllers/ltp.controllers.pids_4_1.sh index 7d9f4b5..a4a8c80 100755 --- a/testcase/controllers/ltp.controllers.pids_4_1.sh +++ b/testcase/controllers/ltp.controllers.pids_4_1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_4_10.sh b/testcase/controllers/ltp.controllers.pids_4_10.sh index c78121b..3139451 100755 --- a/testcase/controllers/ltp.controllers.pids_4_10.sh +++ b/testcase/controllers/ltp.controllers.pids_4_10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_4_100.sh b/testcase/controllers/ltp.controllers.pids_4_100.sh index 9a06728..6409561 100755 --- a/testcase/controllers/ltp.controllers.pids_4_100.sh +++ b/testcase/controllers/ltp.controllers.pids_4_100.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_4_2.sh b/testcase/controllers/ltp.controllers.pids_4_2.sh index af23d14..3208216 100755 --- a/testcase/controllers/ltp.controllers.pids_4_2.sh +++ b/testcase/controllers/ltp.controllers.pids_4_2.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_4_50.sh b/testcase/controllers/ltp.controllers.pids_4_50.sh index 59177da..893f8da 100755 --- a/testcase/controllers/ltp.controllers.pids_4_50.sh +++ b/testcase/controllers/ltp.controllers.pids_4_50.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_5_1.sh b/testcase/controllers/ltp.controllers.pids_5_1.sh index bc0dc46..67cacfa 100755 --- a/testcase/controllers/ltp.controllers.pids_5_1.sh +++ b/testcase/controllers/ltp.controllers.pids_5_1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_6_1.sh b/testcase/controllers/ltp.controllers.pids_6_1.sh index e2f7ff6..11797ac 100755 --- a/testcase/controllers/ltp.controllers.pids_6_1.sh +++ b/testcase/controllers/ltp.controllers.pids_6_1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_6_10.sh b/testcase/controllers/ltp.controllers.pids_6_10.sh index e8d31eb..1140e56 100755 --- a/testcase/controllers/ltp.controllers.pids_6_10.sh +++ b/testcase/controllers/ltp.controllers.pids_6_10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_6_100.sh b/testcase/controllers/ltp.controllers.pids_6_100.sh index 250fa7a..b3eab19 100755 --- a/testcase/controllers/ltp.controllers.pids_6_100.sh +++ b/testcase/controllers/ltp.controllers.pids_6_100.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_6_2.sh b/testcase/controllers/ltp.controllers.pids_6_2.sh index 3b869c7..66599d3 100755 --- a/testcase/controllers/ltp.controllers.pids_6_2.sh +++ b/testcase/controllers/ltp.controllers.pids_6_2.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_6_50.sh b/testcase/controllers/ltp.controllers.pids_6_50.sh index b4b0d8f..b1c5de0 100755 --- a/testcase/controllers/ltp.controllers.pids_6_50.sh +++ b/testcase/controllers/ltp.controllers.pids_6_50.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_7_10.sh b/testcase/controllers/ltp.controllers.pids_7_10.sh index 4b1a294..b275106 100755 --- a/testcase/controllers/ltp.controllers.pids_7_10.sh +++ b/testcase/controllers/ltp.controllers.pids_7_10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_7_100.sh b/testcase/controllers/ltp.controllers.pids_7_100.sh index 93f7029..6683e92 100755 --- a/testcase/controllers/ltp.controllers.pids_7_100.sh +++ b/testcase/controllers/ltp.controllers.pids_7_100.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_7_1000.sh b/testcase/controllers/ltp.controllers.pids_7_1000.sh index fbca56a..d15489a 100755 --- a/testcase/controllers/ltp.controllers.pids_7_1000.sh +++ b/testcase/controllers/ltp.controllers.pids_7_1000.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_7_50.sh b/testcase/controllers/ltp.controllers.pids_7_50.sh index baf0581..f7dbeb7 100755 --- a/testcase/controllers/ltp.controllers.pids_7_50.sh +++ b/testcase/controllers/ltp.controllers.pids_7_50.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_7_500.sh b/testcase/controllers/ltp.controllers.pids_7_500.sh index 6f26563..ab28bdb 100755 --- a/testcase/controllers/ltp.controllers.pids_7_500.sh +++ b/testcase/controllers/ltp.controllers.pids_7_500.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_8_10.sh b/testcase/controllers/ltp.controllers.pids_8_10.sh index 08cd226..b1007d2 100755 --- a/testcase/controllers/ltp.controllers.pids_8_10.sh +++ b/testcase/controllers/ltp.controllers.pids_8_10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_8_100.sh b/testcase/controllers/ltp.controllers.pids_8_100.sh index 1481f64..dcb3430 100755 --- a/testcase/controllers/ltp.controllers.pids_8_100.sh +++ b/testcase/controllers/ltp.controllers.pids_8_100.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_8_2.sh b/testcase/controllers/ltp.controllers.pids_8_2.sh index e079ae8..4efa68a 100755 --- a/testcase/controllers/ltp.controllers.pids_8_2.sh +++ b/testcase/controllers/ltp.controllers.pids_8_2.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_8_50.sh b/testcase/controllers/ltp.controllers.pids_8_50.sh index b76e7e5..5e5aac4 100755 --- a/testcase/controllers/ltp.controllers.pids_8_50.sh +++ b/testcase/controllers/ltp.controllers.pids_8_50.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_9_10.sh b/testcase/controllers/ltp.controllers.pids_9_10.sh index 6fb2fd6..2e74509 100755 --- a/testcase/controllers/ltp.controllers.pids_9_10.sh +++ b/testcase/controllers/ltp.controllers.pids_9_10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_9_100.sh b/testcase/controllers/ltp.controllers.pids_9_100.sh index fdd7f3d..26052f9 100755 --- a/testcase/controllers/ltp.controllers.pids_9_100.sh +++ b/testcase/controllers/ltp.controllers.pids_9_100.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_9_2.sh b/testcase/controllers/ltp.controllers.pids_9_2.sh index 499cce8..b8aa0b9 100755 --- a/testcase/controllers/ltp.controllers.pids_9_2.sh +++ b/testcase/controllers/ltp.controllers.pids_9_2.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/controllers/ltp.controllers.pids_9_50.sh b/testcase/controllers/ltp.controllers.pids_9_50.sh index 56988f7..3cfe3eb 100755 --- a/testcase/controllers/ltp.controllers.pids_9_50.sh +++ b/testcase/controllers/ltp.controllers.pids_9_50.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug02.sh b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug02.sh index 53e0822..0567977 100755 --- a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug02.sh +++ b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug03.sh b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug03.sh index c30616a..3ad2fce 100755 --- a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug03.sh +++ b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug04.sh b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug04.sh index e7c4942..a8c4dea 100755 --- a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug04.sh +++ b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug05.sh b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug05.sh index 8963655..9d2c077 100755 --- a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug05.sh +++ b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug06.sh b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug06.sh index b689dd3..66034bd 100755 --- a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug06.sh +++ b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug07.sh b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug07.sh index 97c4214..026deda 100755 --- a/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug07.sh +++ b/testcase/cpuhotplug/ltp.cpuhotplug.cpuhotplug07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/crashme/ltp.crashme.crash01.sh b/testcase/crashme/ltp.crashme.crash01.sh index 11450b8..ee989a4 100755 --- a/testcase/crashme/ltp.crashme.crash01.sh +++ b/testcase/crashme/ltp.crashme.crash01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/crashme/ltp.crashme.crash02.sh b/testcase/crashme/ltp.crashme.crash02.sh index fc93ed0..646ce92 100755 --- a/testcase/crashme/ltp.crashme.crash02.sh +++ b/testcase/crashme/ltp.crashme.crash02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/crashme/ltp.crashme.f00f.sh b/testcase/crashme/ltp.crashme.f00f.sh index 8ab5224..9fc3456 100755 --- a/testcase/crashme/ltp.crashme.f00f.sh +++ b/testcase/crashme/ltp.crashme.f00f.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/crypto/ltp.crypto.af_alg01.sh b/testcase/crypto/ltp.crypto.af_alg01.sh index dc5e87a..9246225 100755 --- a/testcase/crypto/ltp.crypto.af_alg01.sh +++ b/testcase/crypto/ltp.crypto.af_alg01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/crypto/ltp.crypto.af_alg02.sh b/testcase/crypto/ltp.crypto.af_alg02.sh index c4f2d53..5d22d5c 100755 --- a/testcase/crypto/ltp.crypto.af_alg02.sh +++ b/testcase/crypto/ltp.crypto.af_alg02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/crypto/ltp.crypto.af_alg03.sh b/testcase/crypto/ltp.crypto.af_alg03.sh index b24dfc7..ed26efa 100755 --- a/testcase/crypto/ltp.crypto.af_alg03.sh +++ b/testcase/crypto/ltp.crypto.af_alg03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/crypto/ltp.crypto.af_alg04.sh b/testcase/crypto/ltp.crypto.af_alg04.sh index 9ea77f6..1a5d988 100755 --- a/testcase/crypto/ltp.crypto.af_alg04.sh +++ b/testcase/crypto/ltp.crypto.af_alg04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/crypto/ltp.crypto.af_alg05.sh b/testcase/crypto/ltp.crypto.af_alg05.sh index 6a9d19a..49110b6 100755 --- a/testcase/crypto/ltp.crypto.af_alg05.sh +++ b/testcase/crypto/ltp.crypto.af_alg05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/crypto/ltp.crypto.af_alg06.sh b/testcase/crypto/ltp.crypto.af_alg06.sh index 513a89c..4abd63b 100755 --- a/testcase/crypto/ltp.crypto.af_alg06.sh +++ b/testcase/crypto/ltp.crypto.af_alg06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/crypto/ltp.crypto.af_alg07.sh b/testcase/crypto/ltp.crypto.af_alg07.sh index 6fa0679..20c66de 100755 --- a/testcase/crypto/ltp.crypto.af_alg07.sh +++ b/testcase/crypto/ltp.crypto.af_alg07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/crypto/ltp.crypto.crypto_user01.sh b/testcase/crypto/ltp.crypto.crypto_user01.sh index 86d2010..fda6f45 100755 --- a/testcase/crypto/ltp.crypto.crypto_user01.sh +++ b/testcase/crypto/ltp.crypto.crypto_user01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/crypto/ltp.crypto.crypto_user02.sh b/testcase/crypto/ltp.crypto.crypto_user02.sh index 9a3b56e..ee3e12e 100755 --- a/testcase/crypto/ltp.crypto.crypto_user02.sh +++ b/testcase/crypto/ltp.crypto.crypto_user02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/crypto/ltp.crypto.pcrypt_aead01.sh b/testcase/crypto/ltp.crypto.pcrypt_aead01.sh index e21d11b..cde52d2 100755 --- a/testcase/crypto/ltp.crypto.pcrypt_aead01.sh +++ b/testcase/crypto/ltp.crypto.pcrypt_aead01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2011-0999.sh b/testcase/cve/ltp.cve.cve-2011-0999.sh index 7877a0c..9571d78 100755 --- a/testcase/cve/ltp.cve.cve-2011-0999.sh +++ b/testcase/cve/ltp.cve.cve-2011-0999.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2011-2183.sh b/testcase/cve/ltp.cve.cve-2011-2183.sh index 36dd397..beb84a9 100755 --- a/testcase/cve/ltp.cve.cve-2011-2183.sh +++ b/testcase/cve/ltp.cve.cve-2011-2183.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2011-2496.sh b/testcase/cve/ltp.cve.cve-2011-2496.sh index 25fb73e..f5bb821 100755 --- a/testcase/cve/ltp.cve.cve-2011-2496.sh +++ b/testcase/cve/ltp.cve.cve-2011-2496.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2012-0957.sh b/testcase/cve/ltp.cve.cve-2012-0957.sh index dba77d4..c8aa317 100755 --- a/testcase/cve/ltp.cve.cve-2012-0957.sh +++ b/testcase/cve/ltp.cve.cve-2012-0957.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2014-0196.sh b/testcase/cve/ltp.cve.cve-2014-0196.sh index 23f709f..f80b858 100755 --- a/testcase/cve/ltp.cve.cve-2014-0196.sh +++ b/testcase/cve/ltp.cve.cve-2014-0196.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2015-0235.sh b/testcase/cve/ltp.cve.cve-2015-0235.sh index 4b4841c..d4d65cf 100755 --- a/testcase/cve/ltp.cve.cve-2015-0235.sh +++ b/testcase/cve/ltp.cve.cve-2015-0235.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2015-3290.sh b/testcase/cve/ltp.cve.cve-2015-3290.sh index 6093dee..3158532 100755 --- a/testcase/cve/ltp.cve.cve-2015-3290.sh +++ b/testcase/cve/ltp.cve.cve-2015-3290.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2015-7550.sh b/testcase/cve/ltp.cve.cve-2015-7550.sh index 5c27b2e..694ee1b 100755 --- a/testcase/cve/ltp.cve.cve-2015-7550.sh +++ b/testcase/cve/ltp.cve.cve-2015-7550.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2016-10044.sh b/testcase/cve/ltp.cve.cve-2016-10044.sh index 13504ce..773959f 100755 --- a/testcase/cve/ltp.cve.cve-2016-10044.sh +++ b/testcase/cve/ltp.cve.cve-2016-10044.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2016-4470.sh b/testcase/cve/ltp.cve.cve-2016-4470.sh index ae4ccfc..83a001e 100755 --- a/testcase/cve/ltp.cve.cve-2016-4470.sh +++ b/testcase/cve/ltp.cve.cve-2016-4470.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2016-4997.sh b/testcase/cve/ltp.cve.cve-2016-4997.sh index 319c45e..b608553 100755 --- a/testcase/cve/ltp.cve.cve-2016-4997.sh +++ b/testcase/cve/ltp.cve.cve-2016-4997.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2016-5195.sh b/testcase/cve/ltp.cve.cve-2016-5195.sh index ab876c4..7d3dfc5 100755 --- a/testcase/cve/ltp.cve.cve-2016-5195.sh +++ b/testcase/cve/ltp.cve.cve-2016-5195.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2016-7042.sh b/testcase/cve/ltp.cve.cve-2016-7042.sh index d7acf4c..40aef92 100755 --- a/testcase/cve/ltp.cve.cve-2016-7042.sh +++ b/testcase/cve/ltp.cve.cve-2016-7042.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2016-7117.sh b/testcase/cve/ltp.cve.cve-2016-7117.sh index 2ecad72..ebe7cd4 100755 --- a/testcase/cve/ltp.cve.cve-2016-7117.sh +++ b/testcase/cve/ltp.cve.cve-2016-7117.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2016-8655.sh b/testcase/cve/ltp.cve.cve-2016-8655.sh index 258b8c2..2e3318c 100755 --- a/testcase/cve/ltp.cve.cve-2016-8655.sh +++ b/testcase/cve/ltp.cve.cve-2016-8655.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2016-9604.sh b/testcase/cve/ltp.cve.cve-2016-9604.sh index 61a530d..2c58ab5 100755 --- a/testcase/cve/ltp.cve.cve-2016-9604.sh +++ b/testcase/cve/ltp.cve.cve-2016-9604.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2016-9793.sh b/testcase/cve/ltp.cve.cve-2016-9793.sh index c26a580..7542e0c 100755 --- a/testcase/cve/ltp.cve.cve-2016-9793.sh +++ b/testcase/cve/ltp.cve.cve-2016-9793.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-1000111.sh b/testcase/cve/ltp.cve.cve-2017-1000111.sh index db87171..60d70f6 100755 --- a/testcase/cve/ltp.cve.cve-2017-1000111.sh +++ b/testcase/cve/ltp.cve.cve-2017-1000111.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-1000112.sh b/testcase/cve/ltp.cve.cve-2017-1000112.sh index fa5cfc9..666f6a6 100755 --- a/testcase/cve/ltp.cve.cve-2017-1000112.sh +++ b/testcase/cve/ltp.cve.cve-2017-1000112.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-1000364.sh b/testcase/cve/ltp.cve.cve-2017-1000364.sh index d4f45ea..a419246 100755 --- a/testcase/cve/ltp.cve.cve-2017-1000364.sh +++ b/testcase/cve/ltp.cve.cve-2017-1000364.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-1000380.sh b/testcase/cve/ltp.cve.cve-2017-1000380.sh index 44c748a..1a21091 100755 --- a/testcase/cve/ltp.cve.cve-2017-1000380.sh +++ b/testcase/cve/ltp.cve.cve-2017-1000380.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-1000405.sh b/testcase/cve/ltp.cve.cve-2017-1000405.sh index 1cde424..aa2fea8 100755 --- a/testcase/cve/ltp.cve.cve-2017-1000405.sh +++ b/testcase/cve/ltp.cve.cve-2017-1000405.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-10661.sh b/testcase/cve/ltp.cve.cve-2017-10661.sh index 9be2a16..e23299c 100755 --- a/testcase/cve/ltp.cve.cve-2017-10661.sh +++ b/testcase/cve/ltp.cve.cve-2017-10661.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-12192.sh b/testcase/cve/ltp.cve.cve-2017-12192.sh index bcea3b3..721a23a 100755 --- a/testcase/cve/ltp.cve.cve-2017-12192.sh +++ b/testcase/cve/ltp.cve.cve-2017-12192.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-12193.sh b/testcase/cve/ltp.cve.cve-2017-12193.sh index 3f6a86d..da3eef2 100755 --- a/testcase/cve/ltp.cve.cve-2017-12193.sh +++ b/testcase/cve/ltp.cve.cve-2017-12193.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-15274.sh b/testcase/cve/ltp.cve.cve-2017-15274.sh index c8ebf4e..fb87d91 100755 --- a/testcase/cve/ltp.cve.cve-2017-15274.sh +++ b/testcase/cve/ltp.cve.cve-2017-15274.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-15299.sh b/testcase/cve/ltp.cve.cve-2017-15299.sh index 2e62535..18e7e83 100755 --- a/testcase/cve/ltp.cve.cve-2017-15299.sh +++ b/testcase/cve/ltp.cve.cve-2017-15299.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-15537.sh b/testcase/cve/ltp.cve.cve-2017-15537.sh index bbaf01d..9ef9ab5 100755 --- a/testcase/cve/ltp.cve.cve-2017-15537.sh +++ b/testcase/cve/ltp.cve.cve-2017-15537.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-15649.sh b/testcase/cve/ltp.cve.cve-2017-15649.sh index 05c29b8..c1cf785 100755 --- a/testcase/cve/ltp.cve.cve-2017-15649.sh +++ b/testcase/cve/ltp.cve.cve-2017-15649.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-15951.sh b/testcase/cve/ltp.cve.cve-2017-15951.sh index c042cb4..944e3bd 100755 --- a/testcase/cve/ltp.cve.cve-2017-15951.sh +++ b/testcase/cve/ltp.cve.cve-2017-15951.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-16939.sh b/testcase/cve/ltp.cve.cve-2017-16939.sh index f3ea450..8c1b9c1 100755 --- a/testcase/cve/ltp.cve.cve-2017-16939.sh +++ b/testcase/cve/ltp.cve.cve-2017-16939.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-16995.sh b/testcase/cve/ltp.cve.cve-2017-16995.sh index b7464c1..94e6827 100755 --- a/testcase/cve/ltp.cve.cve-2017-16995.sh +++ b/testcase/cve/ltp.cve.cve-2017-16995.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-17052.sh b/testcase/cve/ltp.cve.cve-2017-17052.sh index 231da9f..a7cdc25 100755 --- a/testcase/cve/ltp.cve.cve-2017-17052.sh +++ b/testcase/cve/ltp.cve.cve-2017-17052.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-17053.sh b/testcase/cve/ltp.cve.cve-2017-17053.sh index b665178..61f108f 100755 --- a/testcase/cve/ltp.cve.cve-2017-17053.sh +++ b/testcase/cve/ltp.cve.cve-2017-17053.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-17712.sh b/testcase/cve/ltp.cve.cve-2017-17712.sh index 9122a7f..4cf62f9 100755 --- a/testcase/cve/ltp.cve.cve-2017-17712.sh +++ b/testcase/cve/ltp.cve.cve-2017-17712.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-17805.sh b/testcase/cve/ltp.cve.cve-2017-17805.sh index 83afe95..1812dfe 100755 --- a/testcase/cve/ltp.cve.cve-2017-17805.sh +++ b/testcase/cve/ltp.cve.cve-2017-17805.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-17806.sh b/testcase/cve/ltp.cve.cve-2017-17806.sh index ba46d99..3152342 100755 --- a/testcase/cve/ltp.cve.cve-2017-17806.sh +++ b/testcase/cve/ltp.cve.cve-2017-17806.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-17807.sh b/testcase/cve/ltp.cve.cve-2017-17807.sh index 89f49cd..0992372 100755 --- a/testcase/cve/ltp.cve.cve-2017-17807.sh +++ b/testcase/cve/ltp.cve.cve-2017-17807.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-18075.sh b/testcase/cve/ltp.cve.cve-2017-18075.sh index 7e1ace2..db3efd0 100755 --- a/testcase/cve/ltp.cve.cve-2017-18075.sh +++ b/testcase/cve/ltp.cve.cve-2017-18075.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-18344.sh b/testcase/cve/ltp.cve.cve-2017-18344.sh index fbb8282..fc700d6 100755 --- a/testcase/cve/ltp.cve.cve-2017-18344.sh +++ b/testcase/cve/ltp.cve.cve-2017-18344.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/cve/ltp.cve.cve-2017-2618.sh b/testcase/cve/ltp.cve.cve-2017-2618.sh index 088868c..12b8b4a 100755 --- a/testcase/cve/ltp.cve.cve-2017-2618.sh +++ b/testcase/cve/ltp.cve.cve-2017-2618.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-2636.sh b/testcase/cve/ltp.cve.cve-2017-2636.sh index cbe5b0e..3e522c7 100755 --- a/testcase/cve/ltp.cve.cve-2017-2636.sh +++ b/testcase/cve/ltp.cve.cve-2017-2636.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-2671.sh b/testcase/cve/ltp.cve.cve-2017-2671.sh index 54721c8..e0ddb36 100755 --- a/testcase/cve/ltp.cve.cve-2017-2671.sh +++ b/testcase/cve/ltp.cve.cve-2017-2671.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-5754.sh b/testcase/cve/ltp.cve.cve-2017-5754.sh index 1da8401..b766291 100755 --- a/testcase/cve/ltp.cve.cve-2017-5754.sh +++ b/testcase/cve/ltp.cve.cve-2017-5754.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-6951.sh b/testcase/cve/ltp.cve.cve-2017-6951.sh index 126326d..85163e1 100755 --- a/testcase/cve/ltp.cve.cve-2017-6951.sh +++ b/testcase/cve/ltp.cve.cve-2017-6951.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-7308.sh b/testcase/cve/ltp.cve.cve-2017-7308.sh index eefcb21..0a0fef9 100755 --- a/testcase/cve/ltp.cve.cve-2017-7308.sh +++ b/testcase/cve/ltp.cve.cve-2017-7308.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-7472.sh b/testcase/cve/ltp.cve.cve-2017-7472.sh index 6438527..0ed5713 100755 --- a/testcase/cve/ltp.cve.cve-2017-7472.sh +++ b/testcase/cve/ltp.cve.cve-2017-7472.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-7616.sh b/testcase/cve/ltp.cve.cve-2017-7616.sh index 19d9664..72bc735 100755 --- a/testcase/cve/ltp.cve.cve-2017-7616.sh +++ b/testcase/cve/ltp.cve.cve-2017-7616.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2017-8890.sh b/testcase/cve/ltp.cve.cve-2017-8890.sh index ea31bcc..81b974e 100755 --- a/testcase/cve/ltp.cve.cve-2017-8890.sh +++ b/testcase/cve/ltp.cve.cve-2017-8890.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/cve/ltp.cve.cve-2018-1000001.sh b/testcase/cve/ltp.cve.cve-2018-1000001.sh index 5422b26..f2cc225 100755 --- a/testcase/cve/ltp.cve.cve-2018-1000001.sh +++ b/testcase/cve/ltp.cve.cve-2018-1000001.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2018-1000199.sh b/testcase/cve/ltp.cve.cve-2018-1000199.sh index ed015ee..32e29c9 100755 --- a/testcase/cve/ltp.cve.cve-2018-1000199.sh +++ b/testcase/cve/ltp.cve.cve-2018-1000199.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2018-1000204.sh b/testcase/cve/ltp.cve.cve-2018-1000204.sh index 1b249b5..7dd5c8b 100755 --- a/testcase/cve/ltp.cve.cve-2018-1000204.sh +++ b/testcase/cve/ltp.cve.cve-2018-1000204.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2018-10124.sh b/testcase/cve/ltp.cve.cve-2018-10124.sh index 8df4ea3..eef73e2 100755 --- a/testcase/cve/ltp.cve.cve-2018-10124.sh +++ b/testcase/cve/ltp.cve.cve-2018-10124.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2018-11508.sh b/testcase/cve/ltp.cve.cve-2018-11508.sh index 284c526..541f7a2 100755 --- a/testcase/cve/ltp.cve.cve-2018-11508.sh +++ b/testcase/cve/ltp.cve.cve-2018-11508.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/cve/ltp.cve.cve-2018-12896.sh b/testcase/cve/ltp.cve.cve-2018-12896.sh index 2ba2ed4..f715b04 100755 --- a/testcase/cve/ltp.cve.cve-2018-12896.sh +++ b/testcase/cve/ltp.cve.cve-2018-12896.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2018-13405.sh b/testcase/cve/ltp.cve.cve-2018-13405.sh index 7909d48..0bd1cb3 100755 --- a/testcase/cve/ltp.cve.cve-2018-13405.sh +++ b/testcase/cve/ltp.cve.cve-2018-13405.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2018-18445.sh b/testcase/cve/ltp.cve.cve-2018-18445.sh index 77f1df8..ede383f 100755 --- a/testcase/cve/ltp.cve.cve-2018-18445.sh +++ b/testcase/cve/ltp.cve.cve-2018-18445.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2018-18559.sh b/testcase/cve/ltp.cve.cve-2018-18559.sh index ae07fd0..0b331e2 100755 --- a/testcase/cve/ltp.cve.cve-2018-18559.sh +++ b/testcase/cve/ltp.cve.cve-2018-18559.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2018-18955.sh b/testcase/cve/ltp.cve.cve-2018-18955.sh index a824e27..8d616ff 100755 --- a/testcase/cve/ltp.cve.cve-2018-18955.sh +++ b/testcase/cve/ltp.cve.cve-2018-18955.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2018-19854.sh b/testcase/cve/ltp.cve.cve-2018-19854.sh index 2faecb4..786ebbb 100755 --- a/testcase/cve/ltp.cve.cve-2018-19854.sh +++ b/testcase/cve/ltp.cve.cve-2018-19854.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2018-5803.sh b/testcase/cve/ltp.cve.cve-2018-5803.sh index 73f4df9..5abe7fb 100755 --- a/testcase/cve/ltp.cve.cve-2018-5803.sh +++ b/testcase/cve/ltp.cve.cve-2018-5803.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2018-6927.sh b/testcase/cve/ltp.cve.cve-2018-6927.sh index fc0e64a..13511b6 100755 --- a/testcase/cve/ltp.cve.cve-2018-6927.sh +++ b/testcase/cve/ltp.cve.cve-2018-6927.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/cve/ltp.cve.cve-2018-7566.sh b/testcase/cve/ltp.cve.cve-2018-7566.sh index d2fde8b..aa26028 100755 --- a/testcase/cve/ltp.cve.cve-2018-7566.sh +++ b/testcase/cve/ltp.cve.cve-2018-7566.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2018-8897.sh b/testcase/cve/ltp.cve.cve-2018-8897.sh index d0062dc..0cadcb3 100755 --- a/testcase/cve/ltp.cve.cve-2018-8897.sh +++ b/testcase/cve/ltp.cve.cve-2018-8897.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2018-9568.sh b/testcase/cve/ltp.cve.cve-2018-9568.sh index 4185bbd..1dd7942 100755 --- a/testcase/cve/ltp.cve.cve-2018-9568.sh +++ b/testcase/cve/ltp.cve.cve-2018-9568.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2019-8912.sh b/testcase/cve/ltp.cve.cve-2019-8912.sh index 4f24ff6..66efbb2 100755 --- a/testcase/cve/ltp.cve.cve-2019-8912.sh +++ b/testcase/cve/ltp.cve.cve-2019-8912.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2020-11494.sh b/testcase/cve/ltp.cve.cve-2020-11494.sh index cb83d4a..9f5adc6 100755 --- a/testcase/cve/ltp.cve.cve-2020-11494.sh +++ b/testcase/cve/ltp.cve.cve-2020-11494.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2020-14386.sh b/testcase/cve/ltp.cve.cve-2020-14386.sh index 45d1180..c69073e 100755 --- a/testcase/cve/ltp.cve.cve-2020-14386.sh +++ b/testcase/cve/ltp.cve.cve-2020-14386.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2020-14416.sh b/testcase/cve/ltp.cve.cve-2020-14416.sh index e2cf781..af6ee04 100755 --- a/testcase/cve/ltp.cve.cve-2020-14416.sh +++ b/testcase/cve/ltp.cve.cve-2020-14416.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2020-25704.sh b/testcase/cve/ltp.cve.cve-2020-25704.sh index 3de7ad7..87df719 100755 --- a/testcase/cve/ltp.cve.cve-2020-25704.sh +++ b/testcase/cve/ltp.cve.cve-2020-25704.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2020-25705.sh b/testcase/cve/ltp.cve.cve-2020-25705.sh index c991b5e..6e213be 100755 --- a/testcase/cve/ltp.cve.cve-2020-25705.sh +++ b/testcase/cve/ltp.cve.cve-2020-25705.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2020-29373.sh b/testcase/cve/ltp.cve.cve-2020-29373.sh index 9370e4b..e6f3e4d 100755 --- a/testcase/cve/ltp.cve.cve-2020-29373.sh +++ b/testcase/cve/ltp.cve.cve-2020-29373.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2020-36557.sh b/testcase/cve/ltp.cve.cve-2020-36557.sh index 36c92bb..a12b17e 100755 --- a/testcase/cve/ltp.cve.cve-2020-36557.sh +++ b/testcase/cve/ltp.cve.cve-2020-36557.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/cve/ltp.cve.cve-2021-22555.sh b/testcase/cve/ltp.cve.cve-2021-22555.sh index 2cbc26f..1f3c5ca 100755 --- a/testcase/cve/ltp.cve.cve-2021-22555.sh +++ b/testcase/cve/ltp.cve.cve-2021-22555.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2021-22600.sh b/testcase/cve/ltp.cve.cve-2021-22600.sh index 4d7492a..3e71d74 100755 --- a/testcase/cve/ltp.cve.cve-2021-22600.sh +++ b/testcase/cve/ltp.cve.cve-2021-22600.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2021-26708.sh b/testcase/cve/ltp.cve.cve-2021-26708.sh index 3c1012e..c11854d 100755 --- a/testcase/cve/ltp.cve.cve-2021-26708.sh +++ b/testcase/cve/ltp.cve.cve-2021-26708.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2021-3444.sh b/testcase/cve/ltp.cve.cve-2021-3444.sh index 9696158..9330f58 100755 --- a/testcase/cve/ltp.cve.cve-2021-3444.sh +++ b/testcase/cve/ltp.cve.cve-2021-3444.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2021-3609.sh b/testcase/cve/ltp.cve.cve-2021-3609.sh index c8a26bd..3da3716 100755 --- a/testcase/cve/ltp.cve.cve-2021-3609.sh +++ b/testcase/cve/ltp.cve.cve-2021-3609.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2021-38604.sh b/testcase/cve/ltp.cve.cve-2021-38604.sh index 46ba0a5..1d2ae23 100755 --- a/testcase/cve/ltp.cve.cve-2021-38604.sh +++ b/testcase/cve/ltp.cve.cve-2021-38604.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2021-4034.sh b/testcase/cve/ltp.cve.cve-2021-4034.sh index c3ceb98..77f10cb 100755 --- a/testcase/cve/ltp.cve.cve-2021-4034.sh +++ b/testcase/cve/ltp.cve.cve-2021-4034.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2021-4197_1.sh b/testcase/cve/ltp.cve.cve-2021-4197_1.sh index 79f04fc..7622541 100755 --- a/testcase/cve/ltp.cve.cve-2021-4197_1.sh +++ b/testcase/cve/ltp.cve.cve-2021-4197_1.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/cve/ltp.cve.cve-2021-4197_2.sh b/testcase/cve/ltp.cve.cve-2021-4197_2.sh index 2e6ecf8..a9d6206 100755 --- a/testcase/cve/ltp.cve.cve-2021-4197_2.sh +++ b/testcase/cve/ltp.cve.cve-2021-4197_2.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/cve/ltp.cve.cve-2021-4204.sh b/testcase/cve/ltp.cve.cve-2021-4204.sh index 96f6935..7be7c43 100755 --- a/testcase/cve/ltp.cve.cve-2021-4204.sh +++ b/testcase/cve/ltp.cve.cve-2021-4204.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/cve/ltp.cve.cve-2022-0185.sh b/testcase/cve/ltp.cve.cve-2022-0185.sh index ed67d6f..ef240a6 100755 --- a/testcase/cve/ltp.cve.cve-2022-0185.sh +++ b/testcase/cve/ltp.cve.cve-2022-0185.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2022-0847.sh b/testcase/cve/ltp.cve.cve-2022-0847.sh index edba6cf..56a3905 100755 --- a/testcase/cve/ltp.cve.cve-2022-0847.sh +++ b/testcase/cve/ltp.cve.cve-2022-0847.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2022-23222.sh b/testcase/cve/ltp.cve.cve-2022-23222.sh index 72f5ade..270ec34 100755 --- a/testcase/cve/ltp.cve.cve-2022-23222.sh +++ b/testcase/cve/ltp.cve.cve-2022-23222.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/cve/ltp.cve.cve-2022-2590.sh b/testcase/cve/ltp.cve.cve-2022-2590.sh index d36b186..f03e4e3 100755 --- a/testcase/cve/ltp.cve.cve-2022-2590.sh +++ b/testcase/cve/ltp.cve.cve-2022-2590.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2022-4378.sh b/testcase/cve/ltp.cve.cve-2022-4378.sh index 7e35cbc..8388483 100755 --- a/testcase/cve/ltp.cve.cve-2022-4378.sh +++ b/testcase/cve/ltp.cve.cve-2022-4378.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/cve/ltp.cve.cve-2023-0461.sh b/testcase/cve/ltp.cve.cve-2023-0461.sh index 598460a..52a1de9 100755 --- a/testcase/cve/ltp.cve.cve-2023-0461.sh +++ b/testcase/cve/ltp.cve.cve-2023-0461.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/cve/ltp.cve.cve-2023-1829.sh b/testcase/cve/ltp.cve.cve-2023-1829.sh index 3f4402d..4302d65 100755 --- a/testcase/cve/ltp.cve.cve-2023-1829.sh +++ b/testcase/cve/ltp.cve.cve-2023-1829.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/cve/ltp.cve.cve-2023-31248.sh b/testcase/cve/ltp.cve.cve-2023-31248.sh index d56ce7d..34e7ff3 100755 --- a/testcase/cve/ltp.cve.cve-2023-31248.sh +++ b/testcase/cve/ltp.cve.cve-2023-31248.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/dio/ltp.dio.dio01.sh b/testcase/dio/ltp.dio.dio01.sh index 1c5038d..2bff622 100755 --- a/testcase/dio/ltp.dio.dio01.sh +++ b/testcase/dio/ltp.dio.dio01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio02.sh b/testcase/dio/ltp.dio.dio02.sh index ada380f..6ad1202 100755 --- a/testcase/dio/ltp.dio.dio02.sh +++ b/testcase/dio/ltp.dio.dio02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio03.sh b/testcase/dio/ltp.dio.dio03.sh index 5daea65..a875a3c 100755 --- a/testcase/dio/ltp.dio.dio03.sh +++ b/testcase/dio/ltp.dio.dio03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio04.sh b/testcase/dio/ltp.dio.dio04.sh index 31f045b..844e53e 100755 --- a/testcase/dio/ltp.dio.dio04.sh +++ b/testcase/dio/ltp.dio.dio04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio05.sh b/testcase/dio/ltp.dio.dio05.sh index 040e96d..6c92cc8 100755 --- a/testcase/dio/ltp.dio.dio05.sh +++ b/testcase/dio/ltp.dio.dio05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio06.sh b/testcase/dio/ltp.dio.dio06.sh index 13032e4..478adb0 100755 --- a/testcase/dio/ltp.dio.dio06.sh +++ b/testcase/dio/ltp.dio.dio06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio07.sh b/testcase/dio/ltp.dio.dio07.sh index 97764c0..d4b4cd6 100755 --- a/testcase/dio/ltp.dio.dio07.sh +++ b/testcase/dio/ltp.dio.dio07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio08.sh b/testcase/dio/ltp.dio.dio08.sh index e3f6289..eddfca4 100755 --- a/testcase/dio/ltp.dio.dio08.sh +++ b/testcase/dio/ltp.dio.dio08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio09.sh b/testcase/dio/ltp.dio.dio09.sh index 1173bc7..3f2dbb7 100755 --- a/testcase/dio/ltp.dio.dio09.sh +++ b/testcase/dio/ltp.dio.dio09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio10.sh b/testcase/dio/ltp.dio.dio10.sh index 5408cae..eaabd98 100755 --- a/testcase/dio/ltp.dio.dio10.sh +++ b/testcase/dio/ltp.dio.dio10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio11.sh b/testcase/dio/ltp.dio.dio11.sh index 13b690e..52be123 100755 --- a/testcase/dio/ltp.dio.dio11.sh +++ b/testcase/dio/ltp.dio.dio11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio12.sh b/testcase/dio/ltp.dio.dio12.sh index 3cf0adb..7403451 100755 --- a/testcase/dio/ltp.dio.dio12.sh +++ b/testcase/dio/ltp.dio.dio12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio13.sh b/testcase/dio/ltp.dio.dio13.sh index 4e5fa6c..65063e0 100755 --- a/testcase/dio/ltp.dio.dio13.sh +++ b/testcase/dio/ltp.dio.dio13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio14.sh b/testcase/dio/ltp.dio.dio14.sh index 6dd0114..3f23aca 100755 --- a/testcase/dio/ltp.dio.dio14.sh +++ b/testcase/dio/ltp.dio.dio14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio15.sh b/testcase/dio/ltp.dio.dio15.sh index 291d795..39e4250 100755 --- a/testcase/dio/ltp.dio.dio15.sh +++ b/testcase/dio/ltp.dio.dio15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio16.sh b/testcase/dio/ltp.dio.dio16.sh index 8995ad2..f5d7e87 100755 --- a/testcase/dio/ltp.dio.dio16.sh +++ b/testcase/dio/ltp.dio.dio16.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio17.sh b/testcase/dio/ltp.dio.dio17.sh index c6eca62..a86e478 100755 --- a/testcase/dio/ltp.dio.dio17.sh +++ b/testcase/dio/ltp.dio.dio17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio18.sh b/testcase/dio/ltp.dio.dio18.sh index c668f09..ca50c6f 100755 --- a/testcase/dio/ltp.dio.dio18.sh +++ b/testcase/dio/ltp.dio.dio18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio19.sh b/testcase/dio/ltp.dio.dio19.sh index a209a5e..5dd7a53 100755 --- a/testcase/dio/ltp.dio.dio19.sh +++ b/testcase/dio/ltp.dio.dio19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio20.sh b/testcase/dio/ltp.dio.dio20.sh index e00ab4d..c8e1a33 100755 --- a/testcase/dio/ltp.dio.dio20.sh +++ b/testcase/dio/ltp.dio.dio20.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio21.sh b/testcase/dio/ltp.dio.dio21.sh index 4f3d540..534d3fb 100755 --- a/testcase/dio/ltp.dio.dio21.sh +++ b/testcase/dio/ltp.dio.dio21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio22.sh b/testcase/dio/ltp.dio.dio22.sh index 8a86506..aa1bfce 100755 --- a/testcase/dio/ltp.dio.dio22.sh +++ b/testcase/dio/ltp.dio.dio22.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio23.sh b/testcase/dio/ltp.dio.dio23.sh index d0971b4..cde8ade 100755 --- a/testcase/dio/ltp.dio.dio23.sh +++ b/testcase/dio/ltp.dio.dio23.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio24.sh b/testcase/dio/ltp.dio.dio24.sh index 1232226..6133ddb 100755 --- a/testcase/dio/ltp.dio.dio24.sh +++ b/testcase/dio/ltp.dio.dio24.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio25.sh b/testcase/dio/ltp.dio.dio25.sh index bbf3ce7..77d4d4a 100755 --- a/testcase/dio/ltp.dio.dio25.sh +++ b/testcase/dio/ltp.dio.dio25.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio26.sh b/testcase/dio/ltp.dio.dio26.sh index 32720d2..27aac77 100755 --- a/testcase/dio/ltp.dio.dio26.sh +++ b/testcase/dio/ltp.dio.dio26.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio27.sh b/testcase/dio/ltp.dio.dio27.sh index be06219..1d4d670 100755 --- a/testcase/dio/ltp.dio.dio27.sh +++ b/testcase/dio/ltp.dio.dio27.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio28.sh b/testcase/dio/ltp.dio.dio28.sh index d76fd0c..753e46b 100755 --- a/testcase/dio/ltp.dio.dio28.sh +++ b/testcase/dio/ltp.dio.dio28.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio29.sh b/testcase/dio/ltp.dio.dio29.sh index fc9dedc..200433c 100755 --- a/testcase/dio/ltp.dio.dio29.sh +++ b/testcase/dio/ltp.dio.dio29.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dio/ltp.dio.dio30.sh b/testcase/dio/ltp.dio.dio30.sh index 040f77f..f926477 100755 --- a/testcase/dio/ltp.dio.dio30.sh +++ b/testcase/dio/ltp.dio.dio30.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest1.sh b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest1.sh index 3400160..71e0437 100755 --- a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest1.sh +++ b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest2.sh b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest2.sh index 6426c2a..e2143ee 100755 --- a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest2.sh +++ b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest2.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest3.sh b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest3.sh index 8d013c0..ee201fc 100755 --- a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest3.sh +++ b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest3.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest4.sh b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest4.sh index 802c7a7..8c622bf 100755 --- a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest4.sh +++ b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest4.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest5.sh b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest5.sh index 6a2197b..616a913 100755 --- a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest5.sh +++ b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest5.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest6.sh b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest6.sh index c96264f..23d3954 100755 --- a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest6.sh +++ b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest7.sh b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest7.sh index 2f959be..bf173a2 100755 --- a/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest7.sh +++ b/testcase/dma_thread_diotest/ltp.dma_thread_diotest.dma_thread_diotest7.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fcntl-locktests/ltp.fcntl-locktests.FCNTL_LOCKTESTS.sh b/testcase/fcntl-locktests/ltp.fcntl-locktests.FCNTL_LOCKTESTS.sh index d0b353f..5fb4e95 100755 --- a/testcase/fcntl-locktests/ltp.fcntl-locktests.FCNTL_LOCKTESTS.sh +++ b/testcase/fcntl-locktests/ltp.fcntl-locktests.FCNTL_LOCKTESTS.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.binfmt_misc01.sh b/testcase/fs/ltp.fs.binfmt_misc01.sh index 96dfb28..3830ebd 100755 --- a/testcase/fs/ltp.fs.binfmt_misc01.sh +++ b/testcase/fs/ltp.fs.binfmt_misc01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.binfmt_misc02.sh b/testcase/fs/ltp.fs.binfmt_misc02.sh index 974dd9d..9ae2395 100755 --- a/testcase/fs/ltp.fs.binfmt_misc02.sh +++ b/testcase/fs/ltp.fs.binfmt_misc02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.fs_di.sh b/testcase/fs/ltp.fs.fs_di.sh index 21b639d..c9358af 100755 --- a/testcase/fs/ltp.fs.fs_di.sh +++ b/testcase/fs/ltp.fs.fs_di.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.fs_fill.sh b/testcase/fs/ltp.fs.fs_fill.sh index acaf471..39c9029 100755 --- a/testcase/fs/ltp.fs.fs_fill.sh +++ b/testcase/fs/ltp.fs.fs_fill.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.fs_inod01.sh b/testcase/fs/ltp.fs.fs_inod01.sh index aafb6a3..283fd0f 100755 --- a/testcase/fs/ltp.fs.fs_inod01.sh +++ b/testcase/fs/ltp.fs.fs_inod01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.fs_racer.sh b/testcase/fs/ltp.fs.fs_racer.sh index 6d49aec..2819418 100755 --- a/testcase/fs/ltp.fs.fs_racer.sh +++ b/testcase/fs/ltp.fs.fs_racer.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.ftest01.sh b/testcase/fs/ltp.fs.ftest01.sh index 05e7346..70aa230 100755 --- a/testcase/fs/ltp.fs.ftest01.sh +++ b/testcase/fs/ltp.fs.ftest01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.ftest02.sh b/testcase/fs/ltp.fs.ftest02.sh index ecad63c..33581e8 100755 --- a/testcase/fs/ltp.fs.ftest02.sh +++ b/testcase/fs/ltp.fs.ftest02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.ftest03.sh b/testcase/fs/ltp.fs.ftest03.sh index ad6d70a..4f5744c 100755 --- a/testcase/fs/ltp.fs.ftest03.sh +++ b/testcase/fs/ltp.fs.ftest03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.ftest04.sh b/testcase/fs/ltp.fs.ftest04.sh index aaf66d0..640467c 100755 --- a/testcase/fs/ltp.fs.ftest04.sh +++ b/testcase/fs/ltp.fs.ftest04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.ftest05.sh b/testcase/fs/ltp.fs.ftest05.sh index c169a65..bf1e081 100755 --- a/testcase/fs/ltp.fs.ftest05.sh +++ b/testcase/fs/ltp.fs.ftest05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.ftest06.sh b/testcase/fs/ltp.fs.ftest06.sh index 027eee3..2e92b4d 100755 --- a/testcase/fs/ltp.fs.ftest06.sh +++ b/testcase/fs/ltp.fs.ftest06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.ftest07.sh b/testcase/fs/ltp.fs.ftest07.sh index a06861d..66aa8fb 100755 --- a/testcase/fs/ltp.fs.ftest07.sh +++ b/testcase/fs/ltp.fs.ftest07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.ftest08.sh b/testcase/fs/ltp.fs.ftest08.sh index a6e291f..f424f24 100755 --- a/testcase/fs/ltp.fs.ftest08.sh +++ b/testcase/fs/ltp.fs.ftest08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf01.sh b/testcase/fs/ltp.fs.gf01.sh index 146ffa1..d2e7432 100755 --- a/testcase/fs/ltp.fs.gf01.sh +++ b/testcase/fs/ltp.fs.gf01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf02.sh b/testcase/fs/ltp.fs.gf02.sh index 9ac949c..69e8a16 100755 --- a/testcase/fs/ltp.fs.gf02.sh +++ b/testcase/fs/ltp.fs.gf02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf03.sh b/testcase/fs/ltp.fs.gf03.sh index 5cd02c1..a4ebc3f 100755 --- a/testcase/fs/ltp.fs.gf03.sh +++ b/testcase/fs/ltp.fs.gf03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf04.sh b/testcase/fs/ltp.fs.gf04.sh index 8c44cd7..71783a1 100755 --- a/testcase/fs/ltp.fs.gf04.sh +++ b/testcase/fs/ltp.fs.gf04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf05.sh b/testcase/fs/ltp.fs.gf05.sh index 1b2537f..3d93617 100755 --- a/testcase/fs/ltp.fs.gf05.sh +++ b/testcase/fs/ltp.fs.gf05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf06.sh b/testcase/fs/ltp.fs.gf06.sh index a759183..b75c708 100755 --- a/testcase/fs/ltp.fs.gf06.sh +++ b/testcase/fs/ltp.fs.gf06.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf07.sh b/testcase/fs/ltp.fs.gf07.sh index 535bad0..973b096 100755 --- a/testcase/fs/ltp.fs.gf07.sh +++ b/testcase/fs/ltp.fs.gf07.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf08.sh b/testcase/fs/ltp.fs.gf08.sh index d114cb1..caee82e 100755 --- a/testcase/fs/ltp.fs.gf08.sh +++ b/testcase/fs/ltp.fs.gf08.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf09.sh b/testcase/fs/ltp.fs.gf09.sh index 7d37e4f..285a998 100755 --- a/testcase/fs/ltp.fs.gf09.sh +++ b/testcase/fs/ltp.fs.gf09.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf10.sh b/testcase/fs/ltp.fs.gf10.sh index d7fdd71..d9db197 100755 --- a/testcase/fs/ltp.fs.gf10.sh +++ b/testcase/fs/ltp.fs.gf10.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf11.sh b/testcase/fs/ltp.fs.gf11.sh index fec9c6e..5eb3211 100755 --- a/testcase/fs/ltp.fs.gf11.sh +++ b/testcase/fs/ltp.fs.gf11.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf12.sh b/testcase/fs/ltp.fs.gf12.sh index afb5d16..aa97f77 100755 --- a/testcase/fs/ltp.fs.gf12.sh +++ b/testcase/fs/ltp.fs.gf12.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf13.sh b/testcase/fs/ltp.fs.gf13.sh index 7820650..6cef044 100755 --- a/testcase/fs/ltp.fs.gf13.sh +++ b/testcase/fs/ltp.fs.gf13.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf14.sh b/testcase/fs/ltp.fs.gf14.sh index 70c221b..99f4f4e 100755 --- a/testcase/fs/ltp.fs.gf14.sh +++ b/testcase/fs/ltp.fs.gf14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf15.sh b/testcase/fs/ltp.fs.gf15.sh index 124e143..263ee03 100755 --- a/testcase/fs/ltp.fs.gf15.sh +++ b/testcase/fs/ltp.fs.gf15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf16.sh b/testcase/fs/ltp.fs.gf16.sh index 311e674..ad5e109 100755 --- a/testcase/fs/ltp.fs.gf16.sh +++ b/testcase/fs/ltp.fs.gf16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf17.sh b/testcase/fs/ltp.fs.gf17.sh index e6781bd..f2659cc 100755 --- a/testcase/fs/ltp.fs.gf17.sh +++ b/testcase/fs/ltp.fs.gf17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf18.sh b/testcase/fs/ltp.fs.gf18.sh index 6967b8e..2b11208 100755 --- a/testcase/fs/ltp.fs.gf18.sh +++ b/testcase/fs/ltp.fs.gf18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf19.sh b/testcase/fs/ltp.fs.gf19.sh index de87f19..7d2089b 100755 --- a/testcase/fs/ltp.fs.gf19.sh +++ b/testcase/fs/ltp.fs.gf19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf20.sh b/testcase/fs/ltp.fs.gf20.sh index 7d9097d..78eeb3d 100755 --- a/testcase/fs/ltp.fs.gf20.sh +++ b/testcase/fs/ltp.fs.gf20.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf21.sh b/testcase/fs/ltp.fs.gf21.sh index 7724b60..69896ac 100755 --- a/testcase/fs/ltp.fs.gf21.sh +++ b/testcase/fs/ltp.fs.gf21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf22.sh b/testcase/fs/ltp.fs.gf22.sh index 27fd846..71d7a05 100755 --- a/testcase/fs/ltp.fs.gf22.sh +++ b/testcase/fs/ltp.fs.gf22.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf23.sh b/testcase/fs/ltp.fs.gf23.sh index b543a66..c429874 100755 --- a/testcase/fs/ltp.fs.gf23.sh +++ b/testcase/fs/ltp.fs.gf23.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf24.sh b/testcase/fs/ltp.fs.gf24.sh index 9f01bb8..62c5d76 100755 --- a/testcase/fs/ltp.fs.gf24.sh +++ b/testcase/fs/ltp.fs.gf24.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf25.sh b/testcase/fs/ltp.fs.gf25.sh index 2c34f7b..5a73059 100755 --- a/testcase/fs/ltp.fs.gf25.sh +++ b/testcase/fs/ltp.fs.gf25.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf26.sh b/testcase/fs/ltp.fs.gf26.sh index f4bf284..222f57a 100755 --- a/testcase/fs/ltp.fs.gf26.sh +++ b/testcase/fs/ltp.fs.gf26.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf27.sh b/testcase/fs/ltp.fs.gf27.sh index 5e8f26b..f63f5a5 100755 --- a/testcase/fs/ltp.fs.gf27.sh +++ b/testcase/fs/ltp.fs.gf27.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf28.sh b/testcase/fs/ltp.fs.gf28.sh index 10e7a41..f22d3ec 100755 --- a/testcase/fs/ltp.fs.gf28.sh +++ b/testcase/fs/ltp.fs.gf28.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf29.sh b/testcase/fs/ltp.fs.gf29.sh index 1aa2b41..4be7576 100755 --- a/testcase/fs/ltp.fs.gf29.sh +++ b/testcase/fs/ltp.fs.gf29.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.gf30.sh b/testcase/fs/ltp.fs.gf30.sh index 0aebdf9..8bb860d 100755 --- a/testcase/fs/ltp.fs.gf30.sh +++ b/testcase/fs/ltp.fs.gf30.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.inode01.sh b/testcase/fs/ltp.fs.inode01.sh index d617b19..46ab1f0 100755 --- a/testcase/fs/ltp.fs.inode01.sh +++ b/testcase/fs/ltp.fs.inode01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.inode02.sh b/testcase/fs/ltp.fs.inode02.sh index 3b85d56..618b496 100755 --- a/testcase/fs/ltp.fs.inode02.sh +++ b/testcase/fs/ltp.fs.inode02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.iogen01.sh b/testcase/fs/ltp.fs.iogen01.sh index 84fbff6..31ddb62 100755 --- a/testcase/fs/ltp.fs.iogen01.sh +++ b/testcase/fs/ltp.fs.iogen01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.isofs.sh b/testcase/fs/ltp.fs.isofs.sh index b7bbe3e..6b96e33 100755 --- a/testcase/fs/ltp.fs.isofs.sh +++ b/testcase/fs/ltp.fs.isofs.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.lftest01.sh b/testcase/fs/ltp.fs.lftest01.sh index ea9bbe2..8170fb3 100755 --- a/testcase/fs/ltp.fs.lftest01.sh +++ b/testcase/fs/ltp.fs.lftest01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.linker01.sh b/testcase/fs/ltp.fs.linker01.sh index 102b7d7..f2d3fcd 100755 --- a/testcase/fs/ltp.fs.linker01.sh +++ b/testcase/fs/ltp.fs.linker01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.openfile01.sh b/testcase/fs/ltp.fs.openfile01.sh index 7673c98..085a6e9 100755 --- a/testcase/fs/ltp.fs.openfile01.sh +++ b/testcase/fs/ltp.fs.openfile01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.proc01.sh b/testcase/fs/ltp.fs.proc01.sh index eb37ab9..88fd0d1 100755 --- a/testcase/fs/ltp.fs.proc01.sh +++ b/testcase/fs/ltp.fs.proc01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.quota_remount_test01.sh b/testcase/fs/ltp.fs.quota_remount_test01.sh index 000fc49..130bad4 100755 --- a/testcase/fs/ltp.fs.quota_remount_test01.sh +++ b/testcase/fs/ltp.fs.quota_remount_test01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.read_all_dev.sh b/testcase/fs/ltp.fs.read_all_dev.sh index f3b030d..e545f24 100755 --- a/testcase/fs/ltp.fs.read_all_dev.sh +++ b/testcase/fs/ltp.fs.read_all_dev.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.read_all_proc.sh b/testcase/fs/ltp.fs.read_all_proc.sh index a8e377a..d950eaf 100755 --- a/testcase/fs/ltp.fs.read_all_proc.sh +++ b/testcase/fs/ltp.fs.read_all_proc.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.read_all_sys.sh b/testcase/fs/ltp.fs.read_all_sys.sh index f40ca29..9f91f10 100755 --- a/testcase/fs/ltp.fs.read_all_sys.sh +++ b/testcase/fs/ltp.fs.read_all_sys.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.rwtest01.sh b/testcase/fs/ltp.fs.rwtest01.sh index 3f8dad6..6c4361d 100755 --- a/testcase/fs/ltp.fs.rwtest01.sh +++ b/testcase/fs/ltp.fs.rwtest01.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.rwtest02.sh b/testcase/fs/ltp.fs.rwtest02.sh index 4774af6..2dd97f7 100755 --- a/testcase/fs/ltp.fs.rwtest02.sh +++ b/testcase/fs/ltp.fs.rwtest02.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.rwtest03.sh b/testcase/fs/ltp.fs.rwtest03.sh index 099ce32..2a0527a 100755 --- a/testcase/fs/ltp.fs.rwtest03.sh +++ b/testcase/fs/ltp.fs.rwtest03.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.rwtest04.sh b/testcase/fs/ltp.fs.rwtest04.sh index 66e2a74..75acd00 100755 --- a/testcase/fs/ltp.fs.rwtest04.sh +++ b/testcase/fs/ltp.fs.rwtest04.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.rwtest05.sh b/testcase/fs/ltp.fs.rwtest05.sh index 0803317..358d010 100755 --- a/testcase/fs/ltp.fs.rwtest05.sh +++ b/testcase/fs/ltp.fs.rwtest05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.squashfs01.sh b/testcase/fs/ltp.fs.squashfs01.sh index 979054c..efdf70c 100755 --- a/testcase/fs/ltp.fs.squashfs01.sh +++ b/testcase/fs/ltp.fs.squashfs01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.stream01.sh b/testcase/fs/ltp.fs.stream01.sh index e309124..62eab0a 100755 --- a/testcase/fs/ltp.fs.stream01.sh +++ b/testcase/fs/ltp.fs.stream01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.stream02.sh b/testcase/fs/ltp.fs.stream02.sh index 536140b..afe09dd 100755 --- a/testcase/fs/ltp.fs.stream02.sh +++ b/testcase/fs/ltp.fs.stream02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.stream03.sh b/testcase/fs/ltp.fs.stream03.sh index a402a4d..09542c2 100755 --- a/testcase/fs/ltp.fs.stream03.sh +++ b/testcase/fs/ltp.fs.stream03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.stream04.sh b/testcase/fs/ltp.fs.stream04.sh index 36e3fb0..cc2ea5a 100755 --- a/testcase/fs/ltp.fs.stream04.sh +++ b/testcase/fs/ltp.fs.stream04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.stream05.sh b/testcase/fs/ltp.fs.stream05.sh index 7428e9c..2740e66 100755 --- a/testcase/fs/ltp.fs.stream05.sh +++ b/testcase/fs/ltp.fs.stream05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs/ltp.fs.writetest01.sh b/testcase/fs/ltp.fs.writetest01.sh index 60e6e10..05ae2c0 100755 --- a/testcase/fs/ltp.fs.writetest01.sh +++ b/testcase/fs/ltp.fs.writetest01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind01_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind01_sh.sh index a51b27c..bf0f4e4 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind01_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind02_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind02_sh.sh index 0015d7a..c349279 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind02_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind02_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind03_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind03_sh.sh index 48ce685..e685d7c 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind03_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind03_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind04_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind04_sh.sh index 77387c5..50a93c9 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind04_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind04_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind05_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind05_sh.sh index 119278c..c906e6d 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind05_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind05_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind06_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind06_sh.sh index 9c9a78d..cde8ccf 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind06_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind06_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind07-2_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind07-2_sh.sh index 997884e..b516c4e 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind07-2_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind07-2_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind07_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind07_sh.sh index cdf640e..b2c2ea0 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind07_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind07_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind08_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind08_sh.sh index 7496a92..1576712 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind08_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind08_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind09_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind09_sh.sh index 13cb829..52c10fd 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind09_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind09_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind10_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind10_sh.sh index ca625f9..8b49570 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind10_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind10_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind11_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind11_sh.sh index 12e8c80..4836877 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind11_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind11_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind12_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind12_sh.sh index c32021e..da5bc0c 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind12_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind12_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind13_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind13_sh.sh index fea90b3..4dd9a43 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind13_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind13_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind14_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind14_sh.sh index b799350..2b7fbe0 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind14_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind14_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind15_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind15_sh.sh index d5f756a..5bdd1e8 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind15_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind15_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind16_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind16_sh.sh index a043ea0..6780d6f 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind16_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind16_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind17_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind17_sh.sh index 2a925b1..0f06579 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind17_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind17_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind18_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind18_sh.sh index 06c9ebd..9c04e3f 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind18_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind18_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind19_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind19_sh.sh index 4b3eb1b..9487388 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind19_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind19_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind20_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind20_sh.sh index 12bd937..1897f26 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind20_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind20_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind21_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind21_sh.sh index c6e8e19..53e0c87 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind21_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind21_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind22_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind22_sh.sh index eaf60a6..0fc4ed4 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind22_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind22_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind23_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind23_sh.sh index 515c1b6..ac9ca00 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind23_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind23_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind24_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind24_sh.sh index afb7ce2..93088cf 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind24_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind24_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS01_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS01_sh.sh index ce348de..0e47486 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS01_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS02_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS02_sh.sh index 83da113..ff9a7b6 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS02_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS02_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS03_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS03_sh.sh index 6b7153f..1cb892d 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS03_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS03_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS04_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS04_sh.sh index 7d05d7e..06e86c0 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS04_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS04_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS05_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS05_sh.sh index 6a34211..3c9a44e 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS05_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS05_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS06_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS06_sh.sh index cc8c081..77c1df9 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS06_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS06_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS07_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS07_sh.sh index f7620f9..5cf968a 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS07_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_cloneNS07_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move01_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move01_sh.sh index 8d4f7dd..4d0a5b5 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move01_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move02_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move02_sh.sh index cb4710e..9504bf9 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move02_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move02_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move03_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move03_sh.sh index 6cbc9f4..2308309 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move03_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move03_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move04_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move04_sh.sh index 66ea905..542b4b9 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move04_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move04_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move05_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move05_sh.sh index a557b00..9619f45 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move05_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move05_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move06_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move06_sh.sh index d40ded0..02025bb 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move06_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move06_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move07_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move07_sh.sh index 990aa62..314a73e 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move07_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move07_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move08_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move08_sh.sh index 1c6d75b..0f80339 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move08_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move08_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move09_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move09_sh.sh index b5f94a7..473a206 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move09_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move09_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move10_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move10_sh.sh index aec9f55..1019378 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move10_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move10_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move11_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move11_sh.sh index 6fa6ef1..4c1a63a 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move11_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move11_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move12_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move12_sh.sh index 56c0365..36a78ac 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move12_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move12_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move13_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move13_sh.sh index be50751..17fa959 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move13_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move13_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move14_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move14_sh.sh index 02c38be..8fea67f 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move14_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move14_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move15_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move15_sh.sh index 3bda487..e966780 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move15_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move15_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move16_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move16_sh.sh index b9643f9..937a128 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move16_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move16_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move17_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move17_sh.sh index f4ea09e..e8e6b04 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move17_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move17_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move18_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move18_sh.sh index ed4d34a..a928aca 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move18_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move18_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move19_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move19_sh.sh index d78dff9..2cd71e0 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move19_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move19_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move20_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move20_sh.sh index efb5682..770658f 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move20_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move20_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move21_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move21_sh.sh index ac2bb81..4f5a307 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move21_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move21_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_move22_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_move22_sh.sh index 0aede6f..cdb160b 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_move22_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_move22_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind01_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind01_sh.sh index 1932306..b558122 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind01_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind02_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind02_sh.sh index 0a2ebd1..4e664e9 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind02_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind02_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind03_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind03_sh.sh index 0ffbe84..b38a69e 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind03_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind03_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind04_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind04_sh.sh index 5974cfd..0c54b19 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind04_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind04_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind05_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind05_sh.sh index 1b3a249..ac63012 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind05_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind05_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind06_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind06_sh.sh index 50f52b5..2165cc5 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind06_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind06_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07-2_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07-2_sh.sh index 9e9e801..3743170 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07-2_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07-2_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07_sh.sh index 98ec54e..911b6f0 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind07_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind08_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind08_sh.sh index 69bbc55..8d07872 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind08_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind08_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind09_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind09_sh.sh index cba499d..f54cf3b 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind09_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind09_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind10_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind10_sh.sh index 9973967..317044d 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind10_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind10_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind11_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind11_sh.sh index 941bb3b..c42e9f8 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind11_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind11_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind12_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind12_sh.sh index 3661875..e968c42 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind12_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind12_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind13_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind13_sh.sh index 0c7480d..6fd3ac6 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind13_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind13_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind14_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind14_sh.sh index e6c1dbf..02b92d6 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind14_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind14_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind15_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind15_sh.sh index bdb3270..1b229cf 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind15_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind15_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind16_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind16_sh.sh index af5b67a..d2a4bda 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind16_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind16_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind17_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind17_sh.sh index a894a39..f2acdf6 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind17_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind17_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind18_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind18_sh.sh index c1c3649..6fed341 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind18_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind18_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind19_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind19_sh.sh index 74648de..4b6443e 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind19_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind19_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind20_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind20_sh.sh index 9676f87..3d704b9 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind20_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind20_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind21_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind21_sh.sh index 940a48f..da152c7 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind21_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind21_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind22_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind22_sh.sh index 53cb36d..57de0a8 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind22_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind22_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind23_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind23_sh.sh index 1b15e12..5cbdd7e 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind23_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind23_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind24_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind24_sh.sh index 20d93b3..180524d 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind24_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind24_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind25_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind25_sh.sh index 26d2201..212a89a 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind25_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind25_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind26_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind26_sh.sh index fe8c5d3..dc0da0d 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind26_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind26_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind27_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind27_sh.sh index 0f452f0..0b10d05 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind27_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind27_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind28_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind28_sh.sh index 4e989b1..9be84f2 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind28_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind28_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind29_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind29_sh.sh index a1ebc9e..276d271 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind29_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind29_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind30_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind30_sh.sh index 99d7ca1..88e03a4 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind30_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind30_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind31_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind31_sh.sh index d66b403..102a406 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind31_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind31_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind32_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind32_sh.sh index 8f9cb37..023845b 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind32_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind32_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind33_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind33_sh.sh index d480dbe..6069c5d 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind33_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind33_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind34_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind34_sh.sh index 4174201..af720b1 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind34_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind34_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind35_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind35_sh.sh index f283c4e..92e08e6 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind35_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind35_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind36_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind36_sh.sh index 672606d..c3a72c2 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind36_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind36_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind37_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind37_sh.sh index a318aff..3a9ca47 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind37_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind37_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind38_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind38_sh.sh index d11000f..2d23af6 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind38_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind38_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind39_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind39_sh.sh index c832e2e..0991155 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind39_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_rbind39_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_bind/ltp.fs_bind.fs_bind_regression_sh.sh b/testcase/fs_bind/ltp.fs_bind.fs_bind_regression_sh.sh index f6ff80c..9a1b4fa 100755 --- a/testcase/fs_bind/ltp.fs_bind.fs_bind_regression_sh.sh +++ b/testcase/fs_bind/ltp.fs_bind.fs_bind_regression_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms01.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms01.sh index c464844..c3823d8 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms01.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms02.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms02.sh index 3e39516..d075b4d 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms02.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms03.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms03.sh index 6d241d5..95054db 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms03.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms04.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms04.sh index 835cf3f..e38bb9b 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms04.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms05.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms05.sh index 67fecfe..731fe84 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms05.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms06.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms06.sh index effcf1a..3f7ecbf 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms06.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms07.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms07.sh index e28830b..ba4dde2 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms07.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms08.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms08.sh index 9fcd595..186d3b5 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms08.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms09.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms09.sh index 104a15d..4494812 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms09.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms10.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms10.sh index f83f482..09a53a8 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms10.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms11.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms11.sh index 013018f..dc95b5b 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms11.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms12.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms12.sh index 72cbaf3..cfa3adb 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms12.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms13.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms13.sh index 121641c..73612cf 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms13.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms14.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms14.sh index f628848..d345e6d 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms14.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms15.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms15.sh index 5521d08..593641c 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms15.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms16.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms16.sh index b2be035..6f00a63 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms16.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms17.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms17.sh index 67acd77..be005ed 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms17.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms18.sh b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms18.sh index aa5b3b4..d9472d5 100755 --- a/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms18.sh +++ b/testcase/fs_perms_simple/ltp.fs_perms_simple.fs_perms18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind01.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind01.sh index 93ef854..5ce1c34 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind01.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind02.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind02.sh index c9be839..0a75831 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind02.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind03.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind03.sh index 8ffefa3..aee13b2 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind03.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind04.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind04.sh index 8c063fa..5c4fc96 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind04.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind05.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind05.sh index b740a69..277d4d8 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind05.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind06.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind06.sh index 5838920..066f40c 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind06.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind07.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind07.sh index a2ae431..17bfc20 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind07.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind08.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind08.sh index 8516e8f..383d02a 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind08.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind09.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind09.sh index 48fbd1b..353cdba 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind09.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind10.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind10.sh index b89f726..c1a5945 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind10.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind11.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind11.sh index 9a89ebc..2dbeaa2 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind11.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind12.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind12.sh index d34d3b0..f11d9ad 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind12.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind13.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind13.sh index 90b354e..2f0cb4f 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind13.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind14.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind14.sh index be39472..04d8872 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind14.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind15.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind15.sh index 3b67e45..9926a29 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind15.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind16.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind16.sh index 4bbfa9d..00b505d 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind16.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind17.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind17.sh index 3d5b0ad..a58f8b1 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind17.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind18.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind18.sh index 37b6769..4edf33b 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind18.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind19.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind19.sh index e06a7c5..e03ac61 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind19.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind20.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind20.sh index e80b0cb..7261972 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind20.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind20.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind21.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind21.sh index 92edea3..de98125 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind21.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind22.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind22.sh index 64298fa..edff9fc 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind22.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind22.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind23.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind23.sh index 67fca33..9fcaed5 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind23.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind23.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind24.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind24.sh index abe7362..28554bf 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind24.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind24.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind25.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind25.sh index 102ea5c..b59f0ef 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind25.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind25.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind26.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind26.sh index 2193829..e58e003 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind26.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind26.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind27.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind27.sh index a5ca759..2f44223 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind27.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind27.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind28.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind28.sh index 2cb5098..e58a056 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind28.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind28.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind29.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind29.sh index 42f7b33..05c0a8d 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind29.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind29.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind30.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind30.sh index 982d5e5..0da58b9 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind30.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind30.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind31.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind31.sh index dcf5e84..22ea345 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind31.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind31.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind32.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind32.sh index da5e33b..938bbdd 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind32.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind32.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind33.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind33.sh index c4bf0ce..25f0f69 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind33.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind33.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind34.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind34.sh index 765ad6e..99076c8 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind34.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind34.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind35.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind35.sh index 97b8b5e..5603c4d 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind35.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind35.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind36.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind36.sh index 324bc3e..4eb7254 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind36.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind36.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind37.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind37.sh index 267d40b..f974ee7 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind37.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind37.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind38.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind38.sh index 2c81e08..e999a58 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind38.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind38.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind39.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind39.sh index 15e3bfd..14d74d8 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind39.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind39.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind40.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind40.sh index 78cf0df..ead8036 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind40.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind40.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind41.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind41.sh index cd177b2..246fdaf 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind41.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind41.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind42.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind42.sh index 9657c31..95f281f 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind42.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind42.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind43.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind43.sh index 8f78372..80ecd71 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind43.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind43.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind44.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind44.sh index 6ac8c84..3d32ceb 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind44.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind44.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind45.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind45.sh index 257a8db..317dfdd 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind45.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind45.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind46.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind46.sh index 1780164..fcaac98 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind46.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind46.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind47.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind47.sh index b4182a2..de42e24 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind47.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind47.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind48.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind48.sh index 7a6a876..2b6f64b 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind48.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind48.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind49.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind49.sh index 32190c2..f8a9a6c 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind49.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind49.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind50.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind50.sh index 4e7628e..0336bf6 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind50.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind50.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind51.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind51.sh index aa0f3aa..194ee9e 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind51.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind51.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind52.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind52.sh index f935c8e..5138c44 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind52.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind52.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind53.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind53.sh index e341172..1e515bd 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind53.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind53.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind54.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind54.sh index b577ff6..7c1e98d 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind54.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind54.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/fs_readonly/ltp.fs_readonly.test_robind55.sh b/testcase/fs_readonly/ltp.fs_readonly.test_robind55.sh index 05ef832..fe96721 100755 --- a/testcase/fs_readonly/ltp.fs_readonly.test_robind55.sh +++ b/testcase/fs_readonly/ltp.fs_readonly.test_robind55.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugefallocate01.sh b/testcase/hugetlb/ltp.hugetlb.hugefallocate01.sh index a6fdf79..d0a6797 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugefallocate01.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugefallocate01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugefallocate02.sh b/testcase/hugetlb/ltp.hugetlb.hugefallocate02.sh index a19992f..231024d 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugefallocate02.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugefallocate02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugefork01.sh b/testcase/hugetlb/ltp.hugetlb.hugefork01.sh index ef013fb..c485825 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugefork01.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugefork01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugefork02.sh b/testcase/hugetlb/ltp.hugetlb.hugefork02.sh index cb58bd4..d3ac40e 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugefork02.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugefork02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap01.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap01.sh index b7a4157..d0d49ad 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap01.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap02.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap02.sh index 7f868a4..2dd4eb1 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap02.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap04.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap04.sh index f76f7db..66e06f3 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap04.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap05.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap05.sh index 7ea92fc..324d5ff 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap05.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap05_1.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap05_1.sh index 686ee25..3c3b77c 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap05_1.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap05_1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap05_2.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap05_2.sh index e2d191a..2cc8312 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap05_2.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap05_2.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap05_3.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap05_3.sh index c2f32dd..f2fa405 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap05_3.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap05_3.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap06.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap06.sh index 972d2ba..38b8448 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap06.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap07.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap07.sh index a88fc4d..6183444 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap07.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap08.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap08.sh index 007acef..b397f0f 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap08.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap09.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap09.sh index dcdeaad..a20c839 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap09.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap10.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap10.sh index 95b4980..31801c8 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap10.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap11.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap11.sh index 047fb6e..73c8640 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap11.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap12.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap12.sh index 684b629..fd02b04 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap12.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap13.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap13.sh index 5301fa8..2351cae 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap13.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap14.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap14.sh index f925c63..5b72462 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap14.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap15.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap15.sh index f87386c..804319f 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap15.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap16.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap16.sh index b54bfe8..b687a31 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap16.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap17.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap17.sh index a39d089..3790ad1 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap17.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap18.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap18.sh index 9f77fa7..33cf4cd 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap18.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap19.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap19.sh index dcb7d1d..44735d2 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap19.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap20.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap20.sh index e1965a5..eddf464 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap20.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap20.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap21.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap21.sh index e065062..91e7a9c 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap21.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap22.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap22.sh index 68a976d..78bce27 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap22.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap22.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap23.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap23.sh index 907260e..e301e62 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap23.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap23.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap24.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap24.sh index edf8224..47f280a 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap24.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap24.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap25.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap25.sh index cc51646..7f75238 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap25.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap25.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap26.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap26.sh index e6f385a..d647533 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap26.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap26.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap27.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap27.sh index 1fa6c70..7fabf61 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap27.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap27.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap28.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap28.sh index 1402bf7..d915d31 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap28.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap28.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap29.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap29.sh index e38993b..a198acf 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap29.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap29.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap30.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap30.sh index 01b4c32..bc67403 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap30.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap30.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap31.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap31.sh index 8173d79..a64f774 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap31.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap31.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap32.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap32.sh index b6de2b0..a56a0b1 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugemmap32.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap32.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmat01.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmat01.sh index 8ad4a15..f242fc6 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugeshmat01.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmat02.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmat02.sh index 5daed9f..86e8fb4 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugeshmat02.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmat02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmat03.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmat03.sh index 1714cc9..03881c1 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugeshmat03.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmat03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmat04.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmat04.sh index 20f732e..240033c 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugeshmat04.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmat04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmat05.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmat05.sh index cec7bf8..24745e4 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugeshmat05.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmat05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmctl01.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmctl01.sh index 97a4ad0..164774b 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugeshmctl01.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmctl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmctl02.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmctl02.sh index 5d01aea..08203f2 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugeshmctl02.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmctl02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmctl03.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmctl03.sh index d74d19e..63a469e 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugeshmctl03.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmctl03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmdt01.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmdt01.sh index 8ad1347..8f4e3ed 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugeshmdt01.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmdt01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmget01.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmget01.sh index c655e39..1d84c18 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugeshmget01.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmget01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmget02.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmget02.sh index 21ce9c8..35dffba 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugeshmget02.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmget02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmget03.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmget03.sh index 3153099..9a1a49a 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugeshmget03.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmget03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmget05.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmget05.sh index 6fac8d0..ef7ddcf 100755 --- a/testcase/hugetlb/ltp.hugetlb.hugeshmget05.sh +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmget05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hyperthreading/ltp.hyperthreading.smt_smp_affinity.sh b/testcase/hyperthreading/ltp.hyperthreading.smt_smp_affinity.sh index b874ca2..7051e27 100755 --- a/testcase/hyperthreading/ltp.hyperthreading.smt_smp_affinity.sh +++ b/testcase/hyperthreading/ltp.hyperthreading.smt_smp_affinity.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/hyperthreading/ltp.hyperthreading.smt_smp_enabled.sh b/testcase/hyperthreading/ltp.hyperthreading.smt_smp_enabled.sh index 7e9037b..b40c38b 100755 --- a/testcase/hyperthreading/ltp.hyperthreading.smt_smp_enabled.sh +++ b/testcase/hyperthreading/ltp.hyperthreading.smt_smp_enabled.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ima/ltp.ima.evm_overlay.sh b/testcase/ima/ltp.ima.evm_overlay.sh index 961af45..06e140b 100755 --- a/testcase/ima/ltp.ima.evm_overlay.sh +++ b/testcase/ima/ltp.ima.evm_overlay.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ima/ltp.ima.ima_conditionals.sh b/testcase/ima/ltp.ima.ima_conditionals.sh index 12dce6b..af73338 100755 --- a/testcase/ima/ltp.ima.ima_conditionals.sh +++ b/testcase/ima/ltp.ima.ima_conditionals.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ima/ltp.ima.ima_kexec.sh b/testcase/ima/ltp.ima.ima_kexec.sh index 692e144..ccc6394 100755 --- a/testcase/ima/ltp.ima.ima_kexec.sh +++ b/testcase/ima/ltp.ima.ima_kexec.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ima/ltp.ima.ima_keys.sh b/testcase/ima/ltp.ima.ima_keys.sh index 03992cd..4a36599 100755 --- a/testcase/ima/ltp.ima.ima_keys.sh +++ b/testcase/ima/ltp.ima.ima_keys.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ima/ltp.ima.ima_measurements.sh b/testcase/ima/ltp.ima.ima_measurements.sh index 1985b03..4b447a0 100755 --- a/testcase/ima/ltp.ima.ima_measurements.sh +++ b/testcase/ima/ltp.ima.ima_measurements.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ima/ltp.ima.ima_policy.sh b/testcase/ima/ltp.ima.ima_policy.sh index dd3d36a..8eccc16 100755 --- a/testcase/ima/ltp.ima.ima_policy.sh +++ b/testcase/ima/ltp.ima.ima_policy.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ima/ltp.ima.ima_selinux.sh b/testcase/ima/ltp.ima.ima_selinux.sh index fcd913e..25b123b 100755 --- a/testcase/ima/ltp.ima.ima_selinux.sh +++ b/testcase/ima/ltp.ima.ima_selinux.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ima/ltp.ima.ima_tpm.sh b/testcase/ima/ltp.ima.ima_tpm.sh index 7543fea..bebf381 100755 --- a/testcase/ima/ltp.ima.ima_tpm.sh +++ b/testcase/ima/ltp.ima.ima_tpm.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ima/ltp.ima.ima_violations.sh b/testcase/ima/ltp.ima.ima_violations.sh index 30e3496..154e301 100755 --- a/testcase/ima/ltp.ima.ima_violations.sh +++ b/testcase/ima/ltp.ima.ima_violations.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/input/ltp.input.input01.sh b/testcase/input/ltp.input.input01.sh index c911854..2d53d89 100755 --- a/testcase/input/ltp.input.input01.sh +++ b/testcase/input/ltp.input.input01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/input/ltp.input.input02.sh b/testcase/input/ltp.input.input02.sh index 9bb4ea5..7714c2b 100755 --- a/testcase/input/ltp.input.input02.sh +++ b/testcase/input/ltp.input.input02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/input/ltp.input.input03.sh b/testcase/input/ltp.input.input03.sh index f26de4d..1d512b8 100755 --- a/testcase/input/ltp.input.input03.sh +++ b/testcase/input/ltp.input.input03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/input/ltp.input.input04.sh b/testcase/input/ltp.input.input04.sh index 584d41a..e18191a 100755 --- a/testcase/input/ltp.input.input04.sh +++ b/testcase/input/ltp.input.input04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/input/ltp.input.input05.sh b/testcase/input/ltp.input.input05.sh index 08f898e..ab02fd0 100755 --- a/testcase/input/ltp.input.input05.sh +++ b/testcase/input/ltp.input.input05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/input/ltp.input.input06.sh b/testcase/input/ltp.input.input06.sh index 7177088..fea6d71 100755 --- a/testcase/input/ltp.input.input06.sh +++ b/testcase/input/ltp.input.input06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ipc/ltp.ipc.pipeio_1.sh b/testcase/ipc/ltp.ipc.pipeio_1.sh index 9ba7d6e..37e2086 100755 --- a/testcase/ipc/ltp.ipc.pipeio_1.sh +++ b/testcase/ipc/ltp.ipc.pipeio_1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ipc/ltp.ipc.pipeio_3.sh b/testcase/ipc/ltp.ipc.pipeio_3.sh index 81adab1..e1bd43f 100755 --- a/testcase/ipc/ltp.ipc.pipeio_3.sh +++ b/testcase/ipc/ltp.ipc.pipeio_3.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ipc/ltp.ipc.pipeio_4.sh b/testcase/ipc/ltp.ipc.pipeio_4.sh index 2c2a8d0..085ded5 100755 --- a/testcase/ipc/ltp.ipc.pipeio_4.sh +++ b/testcase/ipc/ltp.ipc.pipeio_4.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ipc/ltp.ipc.pipeio_5.sh b/testcase/ipc/ltp.ipc.pipeio_5.sh index bff50ad..03f4832 100755 --- a/testcase/ipc/ltp.ipc.pipeio_5.sh +++ b/testcase/ipc/ltp.ipc.pipeio_5.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ipc/ltp.ipc.pipeio_6.sh b/testcase/ipc/ltp.ipc.pipeio_6.sh index 8e95b43..9bec961 100755 --- a/testcase/ipc/ltp.ipc.pipeio_6.sh +++ b/testcase/ipc/ltp.ipc.pipeio_6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ipc/ltp.ipc.pipeio_8.sh b/testcase/ipc/ltp.ipc.pipeio_8.sh index ba57ad2..0482732 100755 --- a/testcase/ipc/ltp.ipc.pipeio_8.sh +++ b/testcase/ipc/ltp.ipc.pipeio_8.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/irq/ltp.irq.irqbalance01.sh b/testcase/irq/ltp.irq.irqbalance01.sh index 54a7164..65705ab 100755 --- a/testcase/irq/ltp.irq.irqbalance01.sh +++ b/testcase/irq/ltp.irq.irqbalance01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kernel_misc/ltp.kernel_misc.aslr01.sh b/testcase/kernel_misc/ltp.kernel_misc.aslr01.sh index d3d3f94..9d5a7db 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.aslr01.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.aslr01.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/kernel_misc/ltp.kernel_misc.block_dev.sh b/testcase/kernel_misc/ltp.kernel_misc.block_dev.sh index 900580c..9e17012 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.block_dev.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.block_dev.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kernel_misc/ltp.kernel_misc.cn_pec_sh.sh b/testcase/kernel_misc/ltp.kernel_misc.cn_pec_sh.sh index 37100ca..5b69f07 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.cn_pec_sh.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.cn_pec_sh.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/kernel_misc/ltp.kernel_misc.cpufreq_boost.sh b/testcase/kernel_misc/ltp.kernel_misc.cpufreq_boost.sh index 97841d1..72724a7 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.cpufreq_boost.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.cpufreq_boost.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kernel_misc/ltp.kernel_misc.fw_load.sh b/testcase/kernel_misc/ltp.kernel_misc.fw_load.sh index bc8afa1..decb550 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.fw_load.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.fw_load.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kernel_misc/ltp.kernel_misc.kmsg01.sh b/testcase/kernel_misc/ltp.kernel_misc.kmsg01.sh index 38d589b..d4ce5f3 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.kmsg01.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.kmsg01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kernel_misc/ltp.kernel_misc.lock_torture.sh b/testcase/kernel_misc/ltp.kernel_misc.lock_torture.sh index bd06083..fbb8d9e 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.lock_torture.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.lock_torture.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kernel_misc/ltp.kernel_misc.ltp_acpi.sh b/testcase/kernel_misc/ltp.kernel_misc.ltp_acpi.sh index dbb0a31..409237b 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.ltp_acpi.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.ltp_acpi.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kernel_misc/ltp.kernel_misc.rcu_torture.sh b/testcase/kernel_misc/ltp.kernel_misc.rcu_torture.sh index abaea2c..774715b 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.rcu_torture.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.rcu_torture.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kernel_misc/ltp.kernel_misc.rtc01.sh b/testcase/kernel_misc/ltp.kernel_misc.rtc01.sh index 42e2abd..f5019db 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.rtc01.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.rtc01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kernel_misc/ltp.kernel_misc.rtc02.sh b/testcase/kernel_misc/ltp.kernel_misc.rtc02.sh index efe9b47..ee2c037 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.rtc02.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.rtc02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kernel_misc/ltp.kernel_misc.tbio.sh b/testcase/kernel_misc/ltp.kernel_misc.tbio.sh index 3f88a0f..c56829c 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.tbio.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.tbio.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kernel_misc/ltp.kernel_misc.tpci.sh b/testcase/kernel_misc/ltp.kernel_misc.tpci.sh index 4c9061a..d1314b6 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.tpci.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.tpci.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kernel_misc/ltp.kernel_misc.uaccess.sh b/testcase/kernel_misc/ltp.kernel_misc.uaccess.sh index 14174e7..16fc9cc 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.uaccess.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.uaccess.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kernel_misc/ltp.kernel_misc.umip_basic_test.sh b/testcase/kernel_misc/ltp.kernel_misc.umip_basic_test.sh index 0958d0b..1278507 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.umip_basic_test.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.umip_basic_test.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kernel_misc/ltp.kernel_misc.zram01.sh b/testcase/kernel_misc/ltp.kernel_misc.zram01.sh index cc1d750..8ae886a 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.zram01.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.zram01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kernel_misc/ltp.kernel_misc.zram02.sh b/testcase/kernel_misc/ltp.kernel_misc.zram02.sh index d4b3927..70171a9 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.zram02.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.zram02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kernel_misc/ltp.kernel_misc.zram03.sh b/testcase/kernel_misc/ltp.kernel_misc.zram03.sh index 1acbc6e..2d5ab4d 100755 --- a/testcase/kernel_misc/ltp.kernel_misc.zram03.sh +++ b/testcase/kernel_misc/ltp.kernel_misc.zram03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kvm/ltp.kvm.kvm_pagefault01.sh b/testcase/kvm/ltp.kvm.kvm_pagefault01.sh index 07e01d0..96a868e 100755 --- a/testcase/kvm/ltp.kvm.kvm_pagefault01.sh +++ b/testcase/kvm/ltp.kvm.kvm_pagefault01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kvm/ltp.kvm.kvm_svm01.sh b/testcase/kvm/ltp.kvm.kvm_svm01.sh index a8fea69..bf0022d 100755 --- a/testcase/kvm/ltp.kvm.kvm_svm01.sh +++ b/testcase/kvm/ltp.kvm.kvm_svm01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/kvm/ltp.kvm.kvm_svm02.sh b/testcase/kvm/ltp.kvm.kvm_svm02.sh index d4b25e4..512b1f0 100755 --- a/testcase/kvm/ltp.kvm.kvm_svm02.sh +++ b/testcase/kvm/ltp.kvm.kvm_svm02.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/kvm/ltp.kvm.kvm_svm03.sh b/testcase/kvm/ltp.kvm.kvm_svm03.sh index 73d4c2d..ea81f6d 100755 --- a/testcase/kvm/ltp.kvm.kvm_svm03.sh +++ b/testcase/kvm/ltp.kvm.kvm_svm03.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/kvm/ltp.kvm.kvm_svm04.sh b/testcase/kvm/ltp.kvm.kvm_svm04.sh index 52cece7..a1791d0 100755 --- a/testcase/kvm/ltp.kvm.kvm_svm04.sh +++ b/testcase/kvm/ltp.kvm.kvm_svm04.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1000.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1000.sh index bf25f04..be133ef 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1000.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1000.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1001.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1001.sh index 59502bb..09c62db 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1001.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1001.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1002.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1002.sh index 8a8cf15..b7a52ee 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1002.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1002.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1003.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1003.sh index 54c930b..5cb4865 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1003.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1003.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1004.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1004.sh index e18e68a..44e9f3e 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1004.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1004.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1005.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1005.sh index 2d43f35..8d90198 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1005.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1005.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1006.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1006.sh index 8ecd2b6..879091d 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1006.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1006.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1007.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1007.sh index 3465074..73f44f5 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1007.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1007.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1008.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1008.sh index 8223021..dc15733 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1008.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1008.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1009.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1009.sh index b4be039..89c34af 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1009.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1009.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1010.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1010.sh index f338f3f..317614a 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1010.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1010.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1011.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1011.sh index 0d4c11e..4ce80f7 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1011.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1011.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1012.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1012.sh index ce773bb..3ea97dd 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1012.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1012.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1013.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1013.sh index 79e870b..1f5a84c 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1013.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1013.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1014.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1014.sh index a661c5d..f48cf04 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1014.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1014.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1015.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1015.sh index 252e5cd..5d4bb98 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1015.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1015.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1016.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1016.sh index d8bd3f9..d0a004b 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1016.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1016.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1017.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1017.sh index dfc14b2..76855ce 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1017.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1017.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1018.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1018.sh index 72d6c0f..2866d7f 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1018.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1018.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1019.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1019.sh index ea364dd..8262589 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1019.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1019.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1020.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1020.sh index 89cbc0d..669abf6 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1020.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1020.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1021.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1021.sh index 939f3f5..5c0b556 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1021.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1021.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1022.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1022.sh index b99c5d2..dd58b5d 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1022.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1022.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1023.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1023.sh index 6a11145..68bd43e 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1023.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1023.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1024.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1024.sh index 798b724..034945f 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1024.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1024.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1025.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1025.sh index d10200c..b0a4807 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1025.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1025.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1026.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1026.sh index 97e6ca6..8b924df 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1026.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1026.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1027.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1027.sh index a32ef1d..635f304 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1027.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1027.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1028.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1028.sh index 649b325..6261d8d 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1028.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1028.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1029.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1029.sh index f1a41fc..af7c36d 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1029.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1029.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1030.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1030.sh index 9dde391..f116463 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1030.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1030.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1031.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1031.sh index ef37e51..e1b6b2c 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1031.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1031.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1032.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1032.sh index 622eeaa..8494c7a 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1032.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1032.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1033.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1033.sh index f1d6b1b..cfefd8c 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1033.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1033.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1034.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1034.sh index 9328151..727ca16 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1034.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1034.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1035.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1035.sh index 2d48b1c..31d49a8 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1035.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1035.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1036.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1036.sh index d29de2e..2155a62 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1036.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1036.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1037.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1037.sh index 3fd77b0..32b7fe7 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1037.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1037.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1038.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1038.sh index ac0ea05..3a93e6d 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1038.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1038.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1039.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1039.sh index e62d79c..9575322 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1039.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1039.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1040.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1040.sh index 78b5d5a..81e9c23 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1040.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1040.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1041.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1041.sh index e764edb..6b37041 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1041.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1041.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1042.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1042.sh index 6d44c4a..0a3ee97 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1042.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1042.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1043.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1043.sh index 1d8c43c..ace9e1c 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1043.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1043.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1044.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1044.sh index 58fd643..582b383 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1044.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1044.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1045.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1045.sh index a84c0cd..0af1e7c 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1045.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1045.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1046.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1046.sh index 0d3efa8..06bbeb5 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1046.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1046.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1047.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1047.sh index e8bcdcd..d1ed7d1 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1047.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1047.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1048.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1048.sh index 7407db9..39bb4f7 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1048.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1048.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1049.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1049.sh index 79c1b40..4904fba 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1049.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1049.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1050.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1050.sh index 5749b97..088d54d 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1050.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1050.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1051.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1051.sh index 9fd1e63..b0533ca 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1051.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1051.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1052.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1052.sh index 0b5c382..0481b11 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1052.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1052.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1053.sh b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1053.sh index 8f69672..a77fb29 100755 --- a/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1053.sh +++ b/testcase/ltp-aio-stress/ltp.ltp-aio-stress.ADS1053.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD001.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD001.sh index ab4d680..6902463 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD001.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD001.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD002.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD002.sh index 1bf3afd..441b06f 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD002.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD002.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD003.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD003.sh index b25001d..5a0e3b5 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD003.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD003.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD004.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD004.sh index 13299c4..d7b0e05 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD004.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD004.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD005.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD005.sh index 3a988bc..203ca00 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD005.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD005.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD006.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD006.sh index d8dbfee..8881bf6 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD006.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD006.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD007.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD007.sh index 3d3255d..db49147 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD007.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD007.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD008.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD008.sh index 8540d92..47db8fd 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD008.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD008.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD009.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD009.sh index 541d3dd..9d01f5c 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD009.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD009.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD010.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD010.sh index 77685df..d7ef334 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD010.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD010.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD011.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD011.sh index fbe6c85..ff5b433 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD011.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD011.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD012.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD012.sh index 3d0e2c1..76331e2 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD012.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD012.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD013.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD013.sh index 31c26b7..27f76c7 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD013.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD013.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD014.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD014.sh index 4a807a6..4f076c0 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD014.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD014.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD015.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD015.sh index 42c7a3a..b0705a4 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD015.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD015.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD016.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD016.sh index 5297564..472fddf 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD016.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD016.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD017.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD017.sh index c554a58..e7ddefe 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD017.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD017.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD018.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD018.sh index 5a7f8df..b61111c 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD018.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD018.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD019.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD019.sh index e898b3c..6873afb 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD019.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD019.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD020.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD020.sh index 1eccb1e..849f55a 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD020.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD020.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD021.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD021.sh index f5a9b35..d7ac1ec 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD021.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD021.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD022.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD022.sh index 7a9fde5..53f4bac 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD022.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD022.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD023.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD023.sh index 8c0ed40..851e4b0 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD023.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD023.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD024.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD024.sh index e1a6920..9b56a6d 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD024.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD024.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD025.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD025.sh index a137959..8a54127 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD025.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD025.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD026.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD026.sh index 44bea49..0dad063 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD026.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD026.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD027.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD027.sh index 442aefc..f6708b8 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD027.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD027.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD028.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD028.sh index aee90ff..91fa697 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD028.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD028.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD029.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD029.sh index 6c741b1..fbcd853 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD029.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD029.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD030.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD030.sh index 8c35f1b..b1c2d5e 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD030.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD030.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD031.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD031.sh index 10398d9..1fce34f 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD031.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD031.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD032.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD032.sh index 823813e..cc28e6e 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD032.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD032.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD033.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD033.sh index 6533e1e..7aabf29 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD033.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD033.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD034.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD034.sh index 87af55f..7ac1ffb 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD034.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD034.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD035.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD035.sh index 0aaff02..50c2d2e 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD035.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD035.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD036.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD036.sh index 6e9580a..568dbb7 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD036.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD036.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD037.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD037.sh index ca55830..bb03de8 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD037.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD037.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD038.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD038.sh index 6ccbfc3..752d1ab 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD038.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD038.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD039.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD039.sh index a738d47..1bd7350 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD039.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD039.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD040.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD040.sh index 1176df7..d78f0c5 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD040.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD040.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD041.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD041.sh index fc569cc..590202b 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD041.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD041.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD042.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD042.sh index 0154b7c..ffcb306 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD042.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD042.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD043.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD043.sh index 380c4e8..e537c12 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD043.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD043.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD044.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD044.sh index 02c8b01..aaa05ca 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD044.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD044.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD045.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD045.sh index 34b4a85..0af8ba5 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD045.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD045.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD046.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD046.sh index 05cd1c7..5bca887 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD046.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD046.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD047.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD047.sh index 9cb579b..64351d9 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD047.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD047.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD048.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD048.sh index df826ec..60b13ba 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD048.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD048.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD049.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD049.sh index 03c1cf6..b909ef2 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD049.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD049.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD050.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD050.sh index 4e5e4b6..f9fce63 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD050.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD050.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD051.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD051.sh index 7fba931..64d3356 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD051.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD051.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD052.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD052.sh index 3ecf7ea..6d61163 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD052.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD052.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD053.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD053.sh index 59afc33..fa0dd62 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD053.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD053.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD054.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD054.sh index c8db25b..a69ccc6 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD054.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD054.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD055.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD055.sh index 1cd41c6..f2bc8c2 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD055.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD055.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD056.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD056.sh index 223557b..1253c29 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD056.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD056.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD057.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD057.sh index 500ba0d..d0611ee 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD057.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD057.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD058.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD058.sh index 4ee6da4..94f15c6 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD058.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD058.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD059.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD059.sh index e48d35c..1e7e5d2 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD059.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD059.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD060.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD060.sh index a5c56d0..e11284d 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD060.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD060.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD061.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD061.sh index eaa6cdf..ecece73 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD061.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD061.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD062.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD062.sh index ee88ef8..ea4664c 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD062.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD062.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD063.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD063.sh index 79aee76..24e5549 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD063.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD063.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD064.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD064.sh index 6f4783e..9db9901 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD064.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD064.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD065.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD065.sh index 0280f63..98c1136 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD065.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD065.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD066.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD066.sh index 2457e04..66a4f47 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD066.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD066.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD067.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD067.sh index 247900a..4cf5412 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD067.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD067.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD068.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD068.sh index 15ff035..66a1a04 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD068.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD068.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD069.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD069.sh index d8227fd..00e8be5 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD069.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD069.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD070.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD070.sh index d1925b3..aaca3f5 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD070.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD070.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD071.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD071.sh index 75ecb39..47254f9 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD071.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD071.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD072.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD072.sh index 66d2a0c..65bb46e 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD072.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD072.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD073.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD073.sh index 540dc3a..688a55a 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD073.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD073.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD074.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD074.sh index 5cc88cc..61ceab6 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD074.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD074.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD075.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD075.sh index 349daa8..91b9c90 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD075.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD075.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD076.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD076.sh index 9405822..2adfc4c 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD076.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD076.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD077.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD077.sh index 208748b..cc13368 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD077.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD077.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD078.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD078.sh index 5094c27..7504c15 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD078.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD078.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD079.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD079.sh index afab818..94844d3 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD079.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD079.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD080.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD080.sh index c1443ff..30ca3e4 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD080.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD080.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD081.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD081.sh index 69d1c38..aa62f7d 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD081.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD081.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD082.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD082.sh index 1283bc3..9145953 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD082.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD082.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD083.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD083.sh index 68ef41e..40efe70 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD083.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD083.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD084.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD084.sh index 023813a..c082b71 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD084.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD084.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD085.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD085.sh index b8f80d0..da4a37c 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD085.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD085.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD086.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD086.sh index 10240b8..5302520 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD086.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD086.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD087.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD087.sh index a754df0..210884f 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD087.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD087.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD088.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD088.sh index 2d3217b..691e45c 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD088.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD088.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD089.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD089.sh index a77bb5d..95fc260 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD089.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD089.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD090.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD090.sh index 604007e..1bd37f7 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD090.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD090.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD091.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD091.sh index 6aa87d4..4783de7 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD091.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD091.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD092.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD092.sh index 7babb3d..dd7b9dd 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD092.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD092.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD093.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD093.sh index 0cb7649..40d205c 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD093.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD093.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD094.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD094.sh index b0bf427..4172256 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD094.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD094.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD095.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD095.sh index e284e0d..aadab5c 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD095.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD095.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD096.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD096.sh index d36b7c2..58f5f3d 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD096.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD096.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD097.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD097.sh index bcc0820..633aaf3 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD097.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD097.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD098.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD098.sh index 6546905..af2c0f8 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD098.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD098.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD099.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD099.sh index ed29e6f..a3b952d 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD099.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD099.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD100.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD100.sh index a0ab419..3064404 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD100.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD100.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD101.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD101.sh index ee99686..4ee6864 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD101.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD101.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD102.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD102.sh index a063163..77da7b3 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD102.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD102.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD103.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD103.sh index 2f38877..e8821e0 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD103.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD103.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD104.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD104.sh index faf08c1..c276ad3 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD104.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD104.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD105.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD105.sh index 3887721..7a9fdbd 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD105.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD105.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD106.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD106.sh index b5ebfe2..dad34ee 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD106.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD106.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD107.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD107.sh index 10f732b..6f06be5 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD107.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD107.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD108.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD108.sh index 11d05b3..3c8790c 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD108.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD108.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD109.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD109.sh index ef6273e..040bcc1 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD109.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD109.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD110.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD110.sh index 52c3293..1bacfbc 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD110.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD110.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD111.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD111.sh index 211311e..7977b73 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD111.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD111.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD112.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD112.sh index 75ddad6..d91765e 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD112.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD112.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD113.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD113.sh index 44554c7..70f8e5a 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD113.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD113.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD114.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD114.sh index 2bb381e..db7067e 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD114.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD114.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD115.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD115.sh index 2a5f8e6..4f77e5e 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD115.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD115.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD116.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD116.sh index 98f2eb9..9fe5f2f 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD116.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD116.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD117.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD117.sh index f803a13..785bec6 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD117.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD117.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD118.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD118.sh index bb21459..7b44c08 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD118.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD118.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD119.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD119.sh index 7521024..22d9718 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD119.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD119.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD120.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD120.sh index 9b1b361..a2751d1 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD120.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD120.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD121.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD121.sh index 9bbf071..d4ec332 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD121.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD121.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD122.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD122.sh index c65874a..2e65dfd 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD122.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD122.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD123.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD123.sh index 164bcf9..d288f26 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD123.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD123.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD124.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD124.sh index cb4cbb4..48fbf23 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD124.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD124.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD125.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD125.sh index 4cd3b80..1448a98 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD125.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD125.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD126.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD126.sh index e8b978f..613d7ed 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD126.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD126.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD127.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD127.sh index 1521753..3b2be82 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD127.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD127.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD128.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD128.sh index 599f2f0..7b498b3 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD128.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD128.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD129.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD129.sh index 5c7b72c..7a66552 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD129.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD129.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD130.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD130.sh index 6bd8daf..7641150 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD130.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD130.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD131.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD131.sh index 6df6ee5..0a733c5 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD131.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD131.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD132.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD132.sh index bd808c5..7871292 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD132.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD132.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD133.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD133.sh index 09c2dbc..3a96433 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD133.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD133.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD134.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD134.sh index 3e3f666..d846649 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD134.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD134.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD135.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD135.sh index 631fc6e..b16ebcb 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD135.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD135.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD136.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD136.sh index 4113051..e2402bb 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD136.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD136.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD137.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD137.sh index 1268860..c30a8fd 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD137.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD137.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD138.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD138.sh index ed5ad9c..6ee60b7 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD138.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD138.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD139.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD139.sh index 8b0ef1e..28eaf18 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD139.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD139.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD140.sh b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD140.sh index 14bc990..a4831d4 100755 --- a/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD140.sh +++ b/testcase/ltp-aiodio.part1/ltp.ltp-aiodio.part1.AD140.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP000.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP000.sh index 78b8aa3..ceb30fd 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP000.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP000.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP001.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP001.sh index 85fd78d..cc3ec24 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP001.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP001.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP002.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP002.sh index c34bec9..04a3362 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP002.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP002.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP003.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP003.sh index 3b820eb..eb3c3c0 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP003.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP003.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP004.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP004.sh index af7bc1f..b48bf08 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP004.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP004.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP005.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP005.sh index 5c10c39..cd40e16 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP005.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP005.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP006.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP006.sh index 3076da0..af8024b 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP006.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP006.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP007.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP007.sh index c9837b9..cac743c 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP007.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP007.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP008.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP008.sh index fe5f27a..09ce189 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP008.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP008.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP009.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP009.sh index a22e186..ae5cfad 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP009.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP009.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP010.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP010.sh index 39925dc..76d7590 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP010.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP010.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP011.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP011.sh index 74c0443..8abe5f5 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP011.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP011.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP012.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP012.sh index e99b0dc..436fe76 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP012.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP012.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP013.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP013.sh index 3e544ba..33b9553 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP013.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP013.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP014.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP014.sh index db35daf..f174d3c 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP014.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP014.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP015.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP015.sh index e175482..d749cc4 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP015.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP015.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP016.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP016.sh index b85ba44..30aca96 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP016.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP016.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP017.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP017.sh index 3ba3c1b..f94b8f6 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP017.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP017.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP018.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP018.sh index 1ef01bf..540cbaa 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP018.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP018.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP019.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP019.sh index 9fee74c..6d1e785 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP019.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP019.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP020.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP020.sh index 520ad9d..3728d00 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP020.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP020.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP021.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP021.sh index 6bdaa7e..548c9c0 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP021.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP021.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP022.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP022.sh index 128f894..110bdfe 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP022.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP022.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP023.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP023.sh index 8a00a29..d2750dd 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP023.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP023.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP024.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP024.sh index 5707b52..87372e3 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP024.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP024.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP025.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP025.sh index 84d7ecb..ef3e2c0 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP025.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP025.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP026.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP026.sh index c8652dd..3a1e8f1 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP026.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP026.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP027.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP027.sh index c33c751..9f1d69e 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP027.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP027.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP028.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP028.sh index 7d8282a..cb7168a 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP028.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP028.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP029.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP029.sh index 89baaaa..ecca87a 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP029.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP029.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP030.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP030.sh index 9369bd7..bcdb80c 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP030.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP030.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP031.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP031.sh index 99ab620..b48d18d 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP031.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP031.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP032.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP032.sh index 60b2b88..0c018be 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP032.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP032.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP033.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP033.sh index d21ee84..ef9de79 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP033.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP033.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP034.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP034.sh index f7f090d..028fbbd 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP034.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP034.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP035.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP035.sh index 257143f..9f09141 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP035.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP035.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP036.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP036.sh index 220cb03..b299343 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP036.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP036.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP037.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP037.sh index 09f1de0..2d5260e 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP037.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP037.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP038.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP038.sh index 29be6d5..dacb87b 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP038.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP038.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP039.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP039.sh index a266e53..c03a359 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP039.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP039.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP040.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP040.sh index 3c0250b..f69c477 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP040.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP040.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP041.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP041.sh index 085c3e9..0eb6219 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP041.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP041.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP042.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP042.sh index 79ce82b..6485fec 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP042.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP042.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP043.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP043.sh index 03320c0..81db02b 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP043.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP043.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP044.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP044.sh index c5373e2..8a481af 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP044.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP044.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP045.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP045.sh index b98fadc..8ef8820 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP045.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP045.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP046.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP046.sh index f0dc286..55eab27 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP046.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP046.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP047.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP047.sh index 06b05f7..5d5a465 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP047.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP047.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP048.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP048.sh index 3ca958d..485ea9b 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP048.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP048.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP049.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP049.sh index 5719bb7..b7cdf02 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP049.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP049.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP050.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP050.sh index 63d943c..4d40188 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP050.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP050.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP051.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP051.sh index c717d29..0306420 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP051.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP051.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP052.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP052.sh index 0d97206..6af972d 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP052.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP052.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP053.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP053.sh index 3b639a7..ad7ef92 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP053.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP053.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP054.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP054.sh index ec5912b..876b76b 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP054.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP054.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP055.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP055.sh index 93b2df0..c430aea 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP055.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP055.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP056.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP056.sh index b992f62..71d9357 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP056.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP056.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP057.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP057.sh index a320728..64bf944 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP057.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP057.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP058.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP058.sh index f287567..d53796e 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP058.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP058.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP059.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP059.sh index ce03706..e8dc658 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP059.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP059.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP060.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP060.sh index d3e9ed3..6f55364 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP060.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP060.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP061.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP061.sh index a9e9cc5..0d166f6 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP061.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP061.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP062.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP062.sh index 3d34b2a..df587a1 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP062.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP062.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP063.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP063.sh index ac6778f..b1877c7 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP063.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP063.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP064.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP064.sh index 751868e..a49dc28 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP064.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP064.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP065.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP065.sh index 99ff7db..aa60fab 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP065.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP065.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP066.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP066.sh index 8448ed7..0c25448 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP066.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP066.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP067.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP067.sh index 56b1272..798d920 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP067.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP067.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP068.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP068.sh index a22613b..4272d8c 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP068.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP068.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP069.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP069.sh index 2767cbd..24cfb32 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP069.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP069.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP070.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP070.sh index 45285cc..829e901 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP070.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP070.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP071.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP071.sh index 6723acb..1dd3c4d 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP071.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP071.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP072.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP072.sh index 5f698d2..cf49b76 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP072.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP072.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP073.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP073.sh index 41ed1ab..47ae90e 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP073.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP073.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP074.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP074.sh index 6b8973e..057b5b1 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP074.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP074.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP075.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP075.sh index d7561d3..fec1274 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP075.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP075.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP076.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP076.sh index 0153d98..38ef701 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP076.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP076.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP077.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP077.sh index 403c49a..3a0107e 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP077.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP077.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP078.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP078.sh index 7b427a1..78006d4 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP078.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP078.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP079.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP079.sh index 2e8e02c..d00d4e4 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP079.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP079.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP080.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP080.sh index 0f8b128..f13a5ee 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP080.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP080.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP081.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP081.sh index a54a723..bbfd07f 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP081.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP081.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP082.sh b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP082.sh index 573279c..faa5f43 100755 --- a/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP082.sh +++ b/testcase/ltp-aiodio.part2/ltp.ltp-aiodio.part2.ADSP082.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx01.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx01.sh index 7ea7367..0db1451 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx01.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx01.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx02.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx02.sh index 405c2c8..c897ca3 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx02.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx02.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx03.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx03.sh index a993039..4f0f5bb 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx03.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx03.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx04.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx04.sh index 966979f..3f94e40 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx04.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx04.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx05.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx05.sh index ca5dbf0..7c63aa2 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx05.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx05.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx06.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx06.sh index e032736..12a9992 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx06.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx06.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx07.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx07.sh index 4f62833..f70438c 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx07.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx07.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx08.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx08.sh index 9b3e0a9..9dfc0d3 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx08.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx08.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx09.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx09.sh index 74c7e32..91a1cd6 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx09.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx09.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx10.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx10.sh index f0b59ab..7b9b3aa 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx10.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx10.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx12.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx12.sh index b4a7257..a620fd6 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx12.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx12.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx13.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx13.sh index 6619bb2..6ad1f35 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx13.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx13.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx14.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx14.sh index 72bb12e..5100b11 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx14.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx14.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx15.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx15.sh index a20c6f5..c0c1f68 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx15.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx15.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx16.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx16.sh index 1fe5c8b..47e4f80 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx16.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx16.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx17.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx17.sh index f19aceb..0b97884 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx17.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx17.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx18.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx18.sh index 138e4e7..53471c0 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx18.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx18.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx19.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx19.sh index 7dd70e6..f551e98 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx19.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx19.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx20.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx20.sh index 99c278c..14b3705 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx20.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx20.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx21.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx21.sh index 3f7d7db..aaf7aac 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx21.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx21.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx22.sh b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx22.sh index d362f71..da77643 100755 --- a/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx22.sh +++ b/testcase/ltp-aiodio.part3/ltp.ltp-aiodio.part3.fsx22.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD000.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD000.sh index 467b431..f295052 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD000.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD000.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD001.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD001.sh index e285bc5..3863238 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD001.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD001.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD002.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD002.sh index eaa4fda..afe1231 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD002.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD002.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD003.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD003.sh index 7171eff..1b88adb 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD003.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD003.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD004.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD004.sh index b174f67..3c3c87e 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD004.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD004.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD005.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD005.sh index 62ae425..a16c2e8 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD005.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD005.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD006.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD006.sh index 49bcba6..46b4afd 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD006.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD006.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD007.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD007.sh index 1cf08ca..ce9b623 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD007.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD007.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD008.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD008.sh index 855881d..cd1fceb 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD008.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD008.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD009.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD009.sh index 76bf6ce..450f856 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD009.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.AD009.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI000.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI000.sh index 28d1b3a..db148f5 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI000.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI000.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI001.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI001.sh index 7187c99..9e80f30 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI001.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI001.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI002.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI002.sh index bd71d4f..cfc3a48 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI002.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI002.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI003.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI003.sh index 3371033..6883fb4 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI003.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI003.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI004.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI004.sh index f965a86..5645f18 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI004.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI004.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI005.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI005.sh index 7ed7050..d1b1e13 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI005.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI005.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI006.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI006.sh index adce211..04156bd 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI006.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI006.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI007.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI007.sh index d7c3172..098fd6e 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI007.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI007.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI008.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI008.sh index c07e047..8bf95f5 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI008.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI008.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI009.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI009.sh index d2191a4..9b2bd06 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI009.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.ADI009.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI000.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI000.sh index 4b4c792..1945c46 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI000.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI000.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI001.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI001.sh index 0072273..47454b8 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI001.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI001.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI002.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI002.sh index 1dec9a5..bf603bd 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI002.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI002.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI003.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI003.sh index e0d4391..f30927a 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI003.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI003.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI004.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI004.sh index cd67a9f..f6db12b 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI004.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI004.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI005.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI005.sh index 0e7973b..17a143e 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI005.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI005.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI006.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI006.sh index b00f929..9f8ea44 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI006.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI006.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI007.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI007.sh index 4c64799..777b2be 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI007.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI007.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI008.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI008.sh index ec04330..df26b6c 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI008.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI008.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI009.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI009.sh index d07e393..a2a5cdf 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI009.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DI009.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO00.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO00.sh index d98f8a6..a69e532 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO00.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO00.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO01.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO01.sh index a8804b6..9aa96f5 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO01.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO02.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO02.sh index 2c80169..46bbee0 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO02.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO03.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO03.sh index f0e223b..f36cb5d 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO03.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO04.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO04.sh index 836844d..f031182 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO04.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO05.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO05.sh index cec49fa..7bba175 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO05.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO06.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO06.sh index 6cd7e31..30505b3 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO06.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO07.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO07.sh index decf3e0..796c66c 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO07.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO08.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO08.sh index a62d69e..a38c4aa 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO08.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO09.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO09.sh index 6c78668..503992b 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO09.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIO09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT000.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT000.sh index c55abeb..2f9aff2 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT000.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT000.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT001.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT001.sh index 5a37444..aaf8378 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT001.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT001.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT002.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT002.sh index c9417ca..f493b8e 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT002.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DIT002.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR000.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR000.sh index 0266c44..aae00e6 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR000.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR000.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR001.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR001.sh index a179e0e..edb2d29 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR001.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR001.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR002.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR002.sh index 47af955..36f2a05 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR002.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR002.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR003.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR003.sh index dd99a31..2d8f513 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR003.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DOR003.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS000.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS000.sh index 6d2b90c..3b13a60 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS000.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS000.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS001.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS001.sh index 5b3a7f2..513d7d4 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS001.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS001.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS002.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS002.sh index 6359b66..5a7b780 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS002.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS002.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS003.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS003.sh index 9afb3bd..4fa4960 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS003.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS003.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS004.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS004.sh index faaacd2..51b10f9 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS004.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS004.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS005.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS005.sh index f4125ce..322c17f 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS005.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS005.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS006.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS006.sh index 52cf4e8..da48ec3 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS006.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS006.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS007.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS007.sh index f219e57..e029a02 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS007.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS007.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS008.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS008.sh index b54698f..b18d0eb 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS008.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS008.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS009.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS009.sh index 818ad88..a692955 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS009.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.DS009.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio01.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio01.sh index 5523bd5..546889a 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio01.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio01.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio02.sh b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio02.sh index 15546d0..37723bc 100755 --- a/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio02.sh +++ b/testcase/ltp-aiodio.part4/ltp.ltp-aiodio.part4.aio02.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/math/ltp.math.abs01.sh b/testcase/math/ltp.math.abs01.sh index ca378c3..62013b3 100755 --- a/testcase/math/ltp.math.abs01.sh +++ b/testcase/math/ltp.math.abs01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/math/ltp.math.atof01.sh b/testcase/math/ltp.math.atof01.sh index bc1b9bc..e67f4b5 100755 --- a/testcase/math/ltp.math.atof01.sh +++ b/testcase/math/ltp.math.atof01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/math/ltp.math.float_bessel.sh b/testcase/math/ltp.math.float_bessel.sh index 869692f..7e18d3f 100755 --- a/testcase/math/ltp.math.float_bessel.sh +++ b/testcase/math/ltp.math.float_bessel.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/math/ltp.math.float_exp_log.sh b/testcase/math/ltp.math.float_exp_log.sh index e271303..7a6ad40 100755 --- a/testcase/math/ltp.math.float_exp_log.sh +++ b/testcase/math/ltp.math.float_exp_log.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/math/ltp.math.float_iperb.sh b/testcase/math/ltp.math.float_iperb.sh index 45e6a65..54027cd 100755 --- a/testcase/math/ltp.math.float_iperb.sh +++ b/testcase/math/ltp.math.float_iperb.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/math/ltp.math.float_power.sh b/testcase/math/ltp.math.float_power.sh index efdb3f8..da128da 100755 --- a/testcase/math/ltp.math.float_power.sh +++ b/testcase/math/ltp.math.float_power.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/math/ltp.math.float_trigo.sh b/testcase/math/ltp.math.float_trigo.sh index 41bb37b..678c20d 100755 --- a/testcase/math/ltp.math.float_trigo.sh +++ b/testcase/math/ltp.math.float_trigo.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/math/ltp.math.fptest01.sh b/testcase/math/ltp.math.fptest01.sh index 7a93aff..3caf9b2 100755 --- a/testcase/math/ltp.math.fptest01.sh +++ b/testcase/math/ltp.math.fptest01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/math/ltp.math.fptest02.sh b/testcase/math/ltp.math.fptest02.sh index 8eb9691..81fb2ae 100755 --- a/testcase/math/ltp.math.fptest02.sh +++ b/testcase/math/ltp.math.fptest02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/math/ltp.math.nextafter01.sh b/testcase/math/ltp.math.nextafter01.sh index 90f1eb3..3afd4f7 100755 --- a/testcase/math/ltp.math.nextafter01.sh +++ b/testcase/math/ltp.math.nextafter01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.cpuset01.sh b/testcase/mm/ltp.mm.cpuset01.sh index bbd4e76..ee8b2d3 100755 --- a/testcase/mm/ltp.mm.cpuset01.sh +++ b/testcase/mm/ltp.mm.cpuset01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.data_space.sh b/testcase/mm/ltp.mm.data_space.sh index c189c5f..c920728 100755 --- a/testcase/mm/ltp.mm.data_space.sh +++ b/testcase/mm/ltp.mm.data_space.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.kallsyms.sh b/testcase/mm/ltp.mm.kallsyms.sh index 051612d..0bc2332 100755 --- a/testcase/mm/ltp.mm.kallsyms.sh +++ b/testcase/mm/ltp.mm.kallsyms.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/mm/ltp.mm.ksm01.sh b/testcase/mm/ltp.mm.ksm01.sh index 8cc7150..b553ff1 100755 --- a/testcase/mm/ltp.mm.ksm01.sh +++ b/testcase/mm/ltp.mm.ksm01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.ksm01_1.sh b/testcase/mm/ltp.mm.ksm01_1.sh index 11fbf85..5131fd7 100755 --- a/testcase/mm/ltp.mm.ksm01_1.sh +++ b/testcase/mm/ltp.mm.ksm01_1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.ksm02.sh b/testcase/mm/ltp.mm.ksm02.sh index 5d88dc6..f45a888 100755 --- a/testcase/mm/ltp.mm.ksm02.sh +++ b/testcase/mm/ltp.mm.ksm02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.ksm02_1.sh b/testcase/mm/ltp.mm.ksm02_1.sh index bcd760b..f3cfff9 100755 --- a/testcase/mm/ltp.mm.ksm02_1.sh +++ b/testcase/mm/ltp.mm.ksm02_1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.ksm03.sh b/testcase/mm/ltp.mm.ksm03.sh index 0535efd..53efe36 100755 --- a/testcase/mm/ltp.mm.ksm03.sh +++ b/testcase/mm/ltp.mm.ksm03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.ksm03_1.sh b/testcase/mm/ltp.mm.ksm03_1.sh index a1cbfc3..874d6f4 100755 --- a/testcase/mm/ltp.mm.ksm03_1.sh +++ b/testcase/mm/ltp.mm.ksm03_1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.ksm04.sh b/testcase/mm/ltp.mm.ksm04.sh index d13ce5a..49ce5b4 100755 --- a/testcase/mm/ltp.mm.ksm04.sh +++ b/testcase/mm/ltp.mm.ksm04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.ksm04_1.sh b/testcase/mm/ltp.mm.ksm04_1.sh index 6bd8aed..112f3ea 100755 --- a/testcase/mm/ltp.mm.ksm04_1.sh +++ b/testcase/mm/ltp.mm.ksm04_1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.ksm05.sh b/testcase/mm/ltp.mm.ksm05.sh index e03432c..0e994fd 100755 --- a/testcase/mm/ltp.mm.ksm05.sh +++ b/testcase/mm/ltp.mm.ksm05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.ksm06.sh b/testcase/mm/ltp.mm.ksm06.sh index 99927b3..32635f5 100755 --- a/testcase/mm/ltp.mm.ksm06.sh +++ b/testcase/mm/ltp.mm.ksm06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.ksm06_1.sh b/testcase/mm/ltp.mm.ksm06_1.sh index 676280c..e26311f 100755 --- a/testcase/mm/ltp.mm.ksm06_1.sh +++ b/testcase/mm/ltp.mm.ksm06_1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.ksm06_2.sh b/testcase/mm/ltp.mm.ksm06_2.sh index 7bfe446..e895581 100755 --- a/testcase/mm/ltp.mm.ksm06_2.sh +++ b/testcase/mm/ltp.mm.ksm06_2.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.ksm07.sh b/testcase/mm/ltp.mm.ksm07.sh index f0e5233..f9206ec 100755 --- a/testcase/mm/ltp.mm.ksm07.sh +++ b/testcase/mm/ltp.mm.ksm07.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/mm/ltp.mm.mallocstress01.sh b/testcase/mm/ltp.mm.mallocstress01.sh index 5182e59..3986fdb 100755 --- a/testcase/mm/ltp.mm.mallocstress01.sh +++ b/testcase/mm/ltp.mm.mallocstress01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.max_map_count.sh b/testcase/mm/ltp.mm.max_map_count.sh index dd51db2..8564c58 100755 --- a/testcase/mm/ltp.mm.max_map_count.sh +++ b/testcase/mm/ltp.mm.max_map_count.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mem02.sh b/testcase/mm/ltp.mm.mem02.sh index ac00237..bc94535 100755 --- a/testcase/mm/ltp.mm.mem02.sh +++ b/testcase/mm/ltp.mm.mem02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.min_free_kbytes.sh b/testcase/mm/ltp.mm.min_free_kbytes.sh index f5818c4..92a5951 100755 --- a/testcase/mm/ltp.mm.min_free_kbytes.sh +++ b/testcase/mm/ltp.mm.min_free_kbytes.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mm01.sh b/testcase/mm/ltp.mm.mm01.sh index 2b6d569..e994d3c 100755 --- a/testcase/mm/ltp.mm.mm01.sh +++ b/testcase/mm/ltp.mm.mm01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mm02.sh b/testcase/mm/ltp.mm.mm02.sh index 68dff80..ccdbdc6 100755 --- a/testcase/mm/ltp.mm.mm02.sh +++ b/testcase/mm/ltp.mm.mm02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mmap10.sh b/testcase/mm/ltp.mm.mmap10.sh index 2abbd75..f229fcc 100755 --- a/testcase/mm/ltp.mm.mmap10.sh +++ b/testcase/mm/ltp.mm.mmap10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mmap10_1.sh b/testcase/mm/ltp.mm.mmap10_1.sh index e1a5804..ec61c86 100755 --- a/testcase/mm/ltp.mm.mmap10_1.sh +++ b/testcase/mm/ltp.mm.mmap10_1.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mmap10_2.sh b/testcase/mm/ltp.mm.mmap10_2.sh index ef81ad9..d4a2c62 100755 --- a/testcase/mm/ltp.mm.mmap10_2.sh +++ b/testcase/mm/ltp.mm.mmap10_2.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mmap10_3.sh b/testcase/mm/ltp.mm.mmap10_3.sh index af87944..b983cb1 100755 --- a/testcase/mm/ltp.mm.mmap10_3.sh +++ b/testcase/mm/ltp.mm.mmap10_3.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mmap10_4.sh b/testcase/mm/ltp.mm.mmap10_4.sh index f117dd6..fcdeff1 100755 --- a/testcase/mm/ltp.mm.mmap10_4.sh +++ b/testcase/mm/ltp.mm.mmap10_4.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mmapstress01.sh b/testcase/mm/ltp.mm.mmapstress01.sh index 5e2986f..ca9a870 100755 --- a/testcase/mm/ltp.mm.mmapstress01.sh +++ b/testcase/mm/ltp.mm.mmapstress01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mmapstress02.sh b/testcase/mm/ltp.mm.mmapstress02.sh index 98c6875..57880a4 100755 --- a/testcase/mm/ltp.mm.mmapstress02.sh +++ b/testcase/mm/ltp.mm.mmapstress02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mmapstress03.sh b/testcase/mm/ltp.mm.mmapstress03.sh index 7f79467..46bf60d 100755 --- a/testcase/mm/ltp.mm.mmapstress03.sh +++ b/testcase/mm/ltp.mm.mmapstress03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mmapstress04.sh b/testcase/mm/ltp.mm.mmapstress04.sh index 4734ba2..ca62b2d 100755 --- a/testcase/mm/ltp.mm.mmapstress04.sh +++ b/testcase/mm/ltp.mm.mmapstress04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mmapstress05.sh b/testcase/mm/ltp.mm.mmapstress05.sh index 1427f20..709d29f 100755 --- a/testcase/mm/ltp.mm.mmapstress05.sh +++ b/testcase/mm/ltp.mm.mmapstress05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mmapstress06.sh b/testcase/mm/ltp.mm.mmapstress06.sh index 878270e..9f4ccfe 100755 --- a/testcase/mm/ltp.mm.mmapstress06.sh +++ b/testcase/mm/ltp.mm.mmapstress06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mmapstress07.sh b/testcase/mm/ltp.mm.mmapstress07.sh index d4138b5..c59aecc 100755 --- a/testcase/mm/ltp.mm.mmapstress07.sh +++ b/testcase/mm/ltp.mm.mmapstress07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mmapstress08.sh b/testcase/mm/ltp.mm.mmapstress08.sh index fdc3c72..2b9b147 100755 --- a/testcase/mm/ltp.mm.mmapstress08.sh +++ b/testcase/mm/ltp.mm.mmapstress08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mmapstress09.sh b/testcase/mm/ltp.mm.mmapstress09.sh index e517441..d44f18e 100755 --- a/testcase/mm/ltp.mm.mmapstress09.sh +++ b/testcase/mm/ltp.mm.mmapstress09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mmapstress10.sh b/testcase/mm/ltp.mm.mmapstress10.sh index f4d3c3d..b41786f 100755 --- a/testcase/mm/ltp.mm.mmapstress10.sh +++ b/testcase/mm/ltp.mm.mmapstress10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mtest01.sh b/testcase/mm/ltp.mm.mtest01.sh index d96a8d5..7ec9c60 100755 --- a/testcase/mm/ltp.mm.mtest01.sh +++ b/testcase/mm/ltp.mm.mtest01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mtest01w.sh b/testcase/mm/ltp.mm.mtest01w.sh index e3936a0..0881a1a 100755 --- a/testcase/mm/ltp.mm.mtest01w.sh +++ b/testcase/mm/ltp.mm.mtest01w.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mtest05.sh b/testcase/mm/ltp.mm.mtest05.sh index 0954a89..dc0394e 100755 --- a/testcase/mm/ltp.mm.mtest05.sh +++ b/testcase/mm/ltp.mm.mtest05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mtest06.sh b/testcase/mm/ltp.mm.mtest06.sh index dce9d87..65987a4 100755 --- a/testcase/mm/ltp.mm.mtest06.sh +++ b/testcase/mm/ltp.mm.mtest06.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mtest06_2.sh b/testcase/mm/ltp.mm.mtest06_2.sh index 7820553..5d78e38 100755 --- a/testcase/mm/ltp.mm.mtest06_2.sh +++ b/testcase/mm/ltp.mm.mtest06_2.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.mtest06_3.sh b/testcase/mm/ltp.mm.mtest06_3.sh index 990d3e9..d7eb00f 100755 --- a/testcase/mm/ltp.mm.mtest06_3.sh +++ b/testcase/mm/ltp.mm.mtest06_3.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.oom01.sh b/testcase/mm/ltp.mm.oom01.sh index c5ba97b..6abb182 100755 --- a/testcase/mm/ltp.mm.oom01.sh +++ b/testcase/mm/ltp.mm.oom01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.oom02.sh b/testcase/mm/ltp.mm.oom02.sh index a675a3d..43878f0 100755 --- a/testcase/mm/ltp.mm.oom02.sh +++ b/testcase/mm/ltp.mm.oom02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.oom03.sh b/testcase/mm/ltp.mm.oom03.sh index 292c6c7..2d9ce16 100755 --- a/testcase/mm/ltp.mm.oom03.sh +++ b/testcase/mm/ltp.mm.oom03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.oom04.sh b/testcase/mm/ltp.mm.oom04.sh index 1adce10..266fca0 100755 --- a/testcase/mm/ltp.mm.oom04.sh +++ b/testcase/mm/ltp.mm.oom04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.oom05.sh b/testcase/mm/ltp.mm.oom05.sh index 6dbfe6e..d6d16fe 100755 --- a/testcase/mm/ltp.mm.oom05.sh +++ b/testcase/mm/ltp.mm.oom05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.overcommit_memory01.sh b/testcase/mm/ltp.mm.overcommit_memory01.sh index c488bdf..d1768b4 100755 --- a/testcase/mm/ltp.mm.overcommit_memory01.sh +++ b/testcase/mm/ltp.mm.overcommit_memory01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.overcommit_memory02.sh b/testcase/mm/ltp.mm.overcommit_memory02.sh index 483c7e0..f3bfafe 100755 --- a/testcase/mm/ltp.mm.overcommit_memory02.sh +++ b/testcase/mm/ltp.mm.overcommit_memory02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.overcommit_memory03.sh b/testcase/mm/ltp.mm.overcommit_memory03.sh index f12fc48..072a47c 100755 --- a/testcase/mm/ltp.mm.overcommit_memory03.sh +++ b/testcase/mm/ltp.mm.overcommit_memory03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.overcommit_memory04.sh b/testcase/mm/ltp.mm.overcommit_memory04.sh index f221a98..c89576f 100755 --- a/testcase/mm/ltp.mm.overcommit_memory04.sh +++ b/testcase/mm/ltp.mm.overcommit_memory04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.overcommit_memory05.sh b/testcase/mm/ltp.mm.overcommit_memory05.sh index 2c8e166..1fdd4cb 100755 --- a/testcase/mm/ltp.mm.overcommit_memory05.sh +++ b/testcase/mm/ltp.mm.overcommit_memory05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.overcommit_memory06.sh b/testcase/mm/ltp.mm.overcommit_memory06.sh index 1b37eca..e921193 100755 --- a/testcase/mm/ltp.mm.overcommit_memory06.sh +++ b/testcase/mm/ltp.mm.overcommit_memory06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.page01.sh b/testcase/mm/ltp.mm.page01.sh index 3a01464..4a45111 100755 --- a/testcase/mm/ltp.mm.page01.sh +++ b/testcase/mm/ltp.mm.page01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.page02.sh b/testcase/mm/ltp.mm.page02.sh index 0628eae..ec9cb3d 100755 --- a/testcase/mm/ltp.mm.page02.sh +++ b/testcase/mm/ltp.mm.page02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.shm_test01.sh b/testcase/mm/ltp.mm.shm_test01.sh index 79f5b3f..adff0c0 100755 --- a/testcase/mm/ltp.mm.shm_test01.sh +++ b/testcase/mm/ltp.mm.shm_test01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.shmt02.sh b/testcase/mm/ltp.mm.shmt02.sh index 6b5e1f6..39f2c8c 100755 --- a/testcase/mm/ltp.mm.shmt02.sh +++ b/testcase/mm/ltp.mm.shmt02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.shmt03.sh b/testcase/mm/ltp.mm.shmt03.sh index c5ed6d8..07ce7e2 100755 --- a/testcase/mm/ltp.mm.shmt03.sh +++ b/testcase/mm/ltp.mm.shmt03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.shmt04.sh b/testcase/mm/ltp.mm.shmt04.sh index 66e5c97..1c4039d 100755 --- a/testcase/mm/ltp.mm.shmt04.sh +++ b/testcase/mm/ltp.mm.shmt04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.shmt05.sh b/testcase/mm/ltp.mm.shmt05.sh index 62a5678..13f7f41 100755 --- a/testcase/mm/ltp.mm.shmt05.sh +++ b/testcase/mm/ltp.mm.shmt05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.shmt06.sh b/testcase/mm/ltp.mm.shmt06.sh index 427c0ad..568ecbb 100755 --- a/testcase/mm/ltp.mm.shmt06.sh +++ b/testcase/mm/ltp.mm.shmt06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.shmt07.sh b/testcase/mm/ltp.mm.shmt07.sh index 3177504..05ff151 100755 --- a/testcase/mm/ltp.mm.shmt07.sh +++ b/testcase/mm/ltp.mm.shmt07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.shmt08.sh b/testcase/mm/ltp.mm.shmt08.sh index aebe516..275e106 100755 --- a/testcase/mm/ltp.mm.shmt08.sh +++ b/testcase/mm/ltp.mm.shmt08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.shmt09.sh b/testcase/mm/ltp.mm.shmt09.sh index 977fa9d..b131e83 100755 --- a/testcase/mm/ltp.mm.shmt09.sh +++ b/testcase/mm/ltp.mm.shmt09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.shmt10.sh b/testcase/mm/ltp.mm.shmt10.sh index 88bee33..948632c 100755 --- a/testcase/mm/ltp.mm.shmt10.sh +++ b/testcase/mm/ltp.mm.shmt10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.stack_space.sh b/testcase/mm/ltp.mm.stack_space.sh index d59d2ab..974e1e5 100755 --- a/testcase/mm/ltp.mm.stack_space.sh +++ b/testcase/mm/ltp.mm.stack_space.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.swapping01.sh b/testcase/mm/ltp.mm.swapping01.sh index 42f5423..3a643f2 100755 --- a/testcase/mm/ltp.mm.swapping01.sh +++ b/testcase/mm/ltp.mm.swapping01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.thp01.sh b/testcase/mm/ltp.mm.thp01.sh index 3015c84..b359a07 100755 --- a/testcase/mm/ltp.mm.thp01.sh +++ b/testcase/mm/ltp.mm.thp01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.thp02.sh b/testcase/mm/ltp.mm.thp02.sh index 17a32df..21b0fdc 100755 --- a/testcase/mm/ltp.mm.thp02.sh +++ b/testcase/mm/ltp.mm.thp02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.thp03.sh b/testcase/mm/ltp.mm.thp03.sh index b222833..bf4e7a7 100755 --- a/testcase/mm/ltp.mm.thp03.sh +++ b/testcase/mm/ltp.mm.thp03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.thp04.sh b/testcase/mm/ltp.mm.thp04.sh index c761dc9..3d7f830 100755 --- a/testcase/mm/ltp.mm.thp04.sh +++ b/testcase/mm/ltp.mm.thp04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.vma01.sh b/testcase/mm/ltp.mm.vma01.sh index 84b92a9..5554fde 100755 --- a/testcase/mm/ltp.mm.vma01.sh +++ b/testcase/mm/ltp.mm.vma01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.vma02.sh b/testcase/mm/ltp.mm.vma02.sh index 43fc8aa..990046a 100755 --- a/testcase/mm/ltp.mm.vma02.sh +++ b/testcase/mm/ltp.mm.vma02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.vma03.sh b/testcase/mm/ltp.mm.vma03.sh index 770bf3c..41217e8 100755 --- a/testcase/mm/ltp.mm.vma03.sh +++ b/testcase/mm/ltp.mm.vma03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.vma04.sh b/testcase/mm/ltp.mm.vma04.sh index 6562179..9de4b61 100755 --- a/testcase/mm/ltp.mm.vma04.sh +++ b/testcase/mm/ltp.mm.vma04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/mm/ltp.mm.vma05.sh b/testcase/mm/ltp.mm.vma05.sh index 5d93f9c..e0b5345 100755 --- a/testcase/mm/ltp.mm.vma05.sh +++ b/testcase/mm/ltp.mm.vma05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.bbr01.sh b/testcase/net.features/ltp.net.features.bbr01.sh index ed22dbd..314d262 100755 --- a/testcase/net.features/ltp.net.features.bbr01.sh +++ b/testcase/net.features/ltp.net.features.bbr01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.bbr01_ipv6.sh b/testcase/net.features/ltp.net.features.bbr01_ipv6.sh index a03216c..cbec7d1 100755 --- a/testcase/net.features/ltp.net.features.bbr01_ipv6.sh +++ b/testcase/net.features/ltp.net.features.bbr01_ipv6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.bbr02.sh b/testcase/net.features/ltp.net.features.bbr02.sh index d15537e..a171b76 100755 --- a/testcase/net.features/ltp.net.features.bbr02.sh +++ b/testcase/net.features/ltp.net.features.bbr02.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.bbr02_ipv6.sh b/testcase/net.features/ltp.net.features.bbr02_ipv6.sh index 11471f3..7edc575 100755 --- a/testcase/net.features/ltp.net.features.bbr02_ipv6.sh +++ b/testcase/net.features/ltp.net.features.bbr02_ipv6.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.bind_noport01.sh b/testcase/net.features/ltp.net.features.bind_noport01.sh index f6acae0..2475d00 100755 --- a/testcase/net.features/ltp.net.features.bind_noport01.sh +++ b/testcase/net.features/ltp.net.features.bind_noport01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.bind_noport01_ipv6.sh b/testcase/net.features/ltp.net.features.bind_noport01_ipv6.sh index 92fa2a5..17416a0 100755 --- a/testcase/net.features/ltp.net.features.bind_noport01_ipv6.sh +++ b/testcase/net.features/ltp.net.features.bind_noport01_ipv6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.busy_poll01.sh b/testcase/net.features/ltp.net.features.busy_poll01.sh index 0e54610..8b5d123 100755 --- a/testcase/net.features/ltp.net.features.busy_poll01.sh +++ b/testcase/net.features/ltp.net.features.busy_poll01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.busy_poll01_ipv6.sh b/testcase/net.features/ltp.net.features.busy_poll01_ipv6.sh index 09ee9df..8e3f0c7 100755 --- a/testcase/net.features/ltp.net.features.busy_poll01_ipv6.sh +++ b/testcase/net.features/ltp.net.features.busy_poll01_ipv6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.busy_poll02.sh b/testcase/net.features/ltp.net.features.busy_poll02.sh index 629ad0c..ad8d5b3 100755 --- a/testcase/net.features/ltp.net.features.busy_poll02.sh +++ b/testcase/net.features/ltp.net.features.busy_poll02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.busy_poll02_ipv6.sh b/testcase/net.features/ltp.net.features.busy_poll02_ipv6.sh index 9649029..6d884e8 100755 --- a/testcase/net.features/ltp.net.features.busy_poll02_ipv6.sh +++ b/testcase/net.features/ltp.net.features.busy_poll02_ipv6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.busy_poll03.sh b/testcase/net.features/ltp.net.features.busy_poll03.sh index 0bfd316..80d5a5f 100755 --- a/testcase/net.features/ltp.net.features.busy_poll03.sh +++ b/testcase/net.features/ltp.net.features.busy_poll03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.busy_poll03_ipv6.sh b/testcase/net.features/ltp.net.features.busy_poll03_ipv6.sh index 5c18189..8ec3782 100755 --- a/testcase/net.features/ltp.net.features.busy_poll03_ipv6.sh +++ b/testcase/net.features/ltp.net.features.busy_poll03_ipv6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.dccp01.sh b/testcase/net.features/ltp.net.features.dccp01.sh index 937171b..65a38d8 100755 --- a/testcase/net.features/ltp.net.features.dccp01.sh +++ b/testcase/net.features/ltp.net.features.dccp01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.dccp01_ipv6.sh b/testcase/net.features/ltp.net.features.dccp01_ipv6.sh index 5635f44..0cc2adf 100755 --- a/testcase/net.features/ltp.net.features.dccp01_ipv6.sh +++ b/testcase/net.features/ltp.net.features.dccp01_ipv6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.dctcp_ipv4_01.sh b/testcase/net.features/ltp.net.features.dctcp_ipv4_01.sh index 443dfae..ed4f992 100755 --- a/testcase/net.features/ltp.net.features.dctcp_ipv4_01.sh +++ b/testcase/net.features/ltp.net.features.dctcp_ipv4_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.dctcp_ipv6_01.sh b/testcase/net.features/ltp.net.features.dctcp_ipv6_01.sh index dabb353..d7d14ab 100755 --- a/testcase/net.features/ltp.net.features.dctcp_ipv6_01.sh +++ b/testcase/net.features/ltp.net.features.dctcp_ipv6_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.fanout01.sh b/testcase/net.features/ltp.net.features.fanout01.sh index 2706eb8..808e061 100755 --- a/testcase/net.features/ltp.net.features.fanout01.sh +++ b/testcase/net.features/ltp.net.features.fanout01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.fou01.sh b/testcase/net.features/ltp.net.features.fou01.sh index 86c8435..434100d 100755 --- a/testcase/net.features/ltp.net.features.fou01.sh +++ b/testcase/net.features/ltp.net.features.fou01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.fou01_ipv6.sh b/testcase/net.features/ltp.net.features.fou01_ipv6.sh index 6e6f4db..480740b 100755 --- a/testcase/net.features/ltp.net.features.fou01_ipv6.sh +++ b/testcase/net.features/ltp.net.features.fou01_ipv6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.geneve01.sh b/testcase/net.features/ltp.net.features.geneve01.sh index 78300b6..deaa550 100755 --- a/testcase/net.features/ltp.net.features.geneve01.sh +++ b/testcase/net.features/ltp.net.features.geneve01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.geneve01_ipv6.sh b/testcase/net.features/ltp.net.features.geneve01_ipv6.sh index 1736684..c4fae5c 100755 --- a/testcase/net.features/ltp.net.features.geneve01_ipv6.sh +++ b/testcase/net.features/ltp.net.features.geneve01_ipv6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.geneve02.sh b/testcase/net.features/ltp.net.features.geneve02.sh index 8f517a4..4e8ee88 100755 --- a/testcase/net.features/ltp.net.features.geneve02.sh +++ b/testcase/net.features/ltp.net.features.geneve02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.geneve02_ipv6.sh b/testcase/net.features/ltp.net.features.geneve02_ipv6.sh index e90d033..d63d275 100755 --- a/testcase/net.features/ltp.net.features.geneve02_ipv6.sh +++ b/testcase/net.features/ltp.net.features.geneve02_ipv6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.gre_ipv4_01.sh b/testcase/net.features/ltp.net.features.gre_ipv4_01.sh index 479f3f2..9e16628 100755 --- a/testcase/net.features/ltp.net.features.gre_ipv4_01.sh +++ b/testcase/net.features/ltp.net.features.gre_ipv4_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.gre_ipv4_02.sh b/testcase/net.features/ltp.net.features.gre_ipv4_02.sh index 699f20a..7f282d7 100755 --- a/testcase/net.features/ltp.net.features.gre_ipv4_02.sh +++ b/testcase/net.features/ltp.net.features.gre_ipv4_02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.gre_ipv6_01.sh b/testcase/net.features/ltp.net.features.gre_ipv6_01.sh index 0d50883..8e52f55 100755 --- a/testcase/net.features/ltp.net.features.gre_ipv6_01.sh +++ b/testcase/net.features/ltp.net.features.gre_ipv6_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.gre_ipv6_02.sh b/testcase/net.features/ltp.net.features.gre_ipv6_02.sh index 8d2a2c6..e3e15a1 100755 --- a/testcase/net.features/ltp.net.features.gre_ipv6_02.sh +++ b/testcase/net.features/ltp.net.features.gre_ipv6_02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.gue01.sh b/testcase/net.features/ltp.net.features.gue01.sh index 580e1ab..274fe58 100755 --- a/testcase/net.features/ltp.net.features.gue01.sh +++ b/testcase/net.features/ltp.net.features.gue01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.gue01_ipv6.sh b/testcase/net.features/ltp.net.features.gue01_ipv6.sh index 09c1649..a1d8b1c 100755 --- a/testcase/net.features/ltp.net.features.gue01_ipv6.sh +++ b/testcase/net.features/ltp.net.features.gue01_ipv6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.ipvlan01.sh b/testcase/net.features/ltp.net.features.ipvlan01.sh index 0bf5db9..c6026bf 100755 --- a/testcase/net.features/ltp.net.features.ipvlan01.sh +++ b/testcase/net.features/ltp.net.features.ipvlan01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.macsec01.sh b/testcase/net.features/ltp.net.features.macsec01.sh index 498c3ba..4019fb2 100755 --- a/testcase/net.features/ltp.net.features.macsec01.sh +++ b/testcase/net.features/ltp.net.features.macsec01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.macsec02.sh b/testcase/net.features/ltp.net.features.macsec02.sh index 4520616..8bc1474 100755 --- a/testcase/net.features/ltp.net.features.macsec02.sh +++ b/testcase/net.features/ltp.net.features.macsec02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.macsec03.sh b/testcase/net.features/ltp.net.features.macsec03.sh index 4501bea..7dd2585 100755 --- a/testcase/net.features/ltp.net.features.macsec03.sh +++ b/testcase/net.features/ltp.net.features.macsec03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.macvlan01.sh b/testcase/net.features/ltp.net.features.macvlan01.sh index 2bb4ed6..7c47611 100755 --- a/testcase/net.features/ltp.net.features.macvlan01.sh +++ b/testcase/net.features/ltp.net.features.macvlan01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.macvtap01.sh b/testcase/net.features/ltp.net.features.macvtap01.sh index 41e82fb..df1a04f 100755 --- a/testcase/net.features/ltp.net.features.macvtap01.sh +++ b/testcase/net.features/ltp.net.features.macvtap01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.mpls01.sh b/testcase/net.features/ltp.net.features.mpls01.sh index 181cee9..2b9505f 100755 --- a/testcase/net.features/ltp.net.features.mpls01.sh +++ b/testcase/net.features/ltp.net.features.mpls01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.mpls02.sh b/testcase/net.features/ltp.net.features.mpls02.sh index e6387e4..4d9ae3f 100755 --- a/testcase/net.features/ltp.net.features.mpls02.sh +++ b/testcase/net.features/ltp.net.features.mpls02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.mpls02_ipv6.sh b/testcase/net.features/ltp.net.features.mpls02_ipv6.sh index 186557a..670c703 100755 --- a/testcase/net.features/ltp.net.features.mpls02_ipv6.sh +++ b/testcase/net.features/ltp.net.features.mpls02_ipv6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.mpls03.sh b/testcase/net.features/ltp.net.features.mpls03.sh index 2df5ebb..58b4dd6 100755 --- a/testcase/net.features/ltp.net.features.mpls03.sh +++ b/testcase/net.features/ltp.net.features.mpls03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.mpls03_ipv6.sh b/testcase/net.features/ltp.net.features.mpls03_ipv6.sh index 69e1a0e..7a31e31 100755 --- a/testcase/net.features/ltp.net.features.mpls03_ipv6.sh +++ b/testcase/net.features/ltp.net.features.mpls03_ipv6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.mpls04.sh b/testcase/net.features/ltp.net.features.mpls04.sh index c94699e..4e04bec 100755 --- a/testcase/net.features/ltp.net.features.mpls04.sh +++ b/testcase/net.features/ltp.net.features.mpls04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.sctp01.sh b/testcase/net.features/ltp.net.features.sctp01.sh index 23a2c65..8566cc2 100755 --- a/testcase/net.features/ltp.net.features.sctp01.sh +++ b/testcase/net.features/ltp.net.features.sctp01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.sctp01_ipv6.sh b/testcase/net.features/ltp.net.features.sctp01_ipv6.sh index c733ea7..061f776 100755 --- a/testcase/net.features/ltp.net.features.sctp01_ipv6.sh +++ b/testcase/net.features/ltp.net.features.sctp01_ipv6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.sit01.sh b/testcase/net.features/ltp.net.features.sit01.sh index b5d0de9..42f881d 100755 --- a/testcase/net.features/ltp.net.features.sit01.sh +++ b/testcase/net.features/ltp.net.features.sit01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.tcp_fastopen.sh b/testcase/net.features/ltp.net.features.tcp_fastopen.sh index 345c2ec..ae8fbb7 100755 --- a/testcase/net.features/ltp.net.features.tcp_fastopen.sh +++ b/testcase/net.features/ltp.net.features.tcp_fastopen.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.tcp_fastopen6.sh b/testcase/net.features/ltp.net.features.tcp_fastopen6.sh index 81cce6f..6656b4a 100755 --- a/testcase/net.features/ltp.net.features.tcp_fastopen6.sh +++ b/testcase/net.features/ltp.net.features.tcp_fastopen6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.vlan01.sh b/testcase/net.features/ltp.net.features.vlan01.sh index 9a08043..18e5a40 100755 --- a/testcase/net.features/ltp.net.features.vlan01.sh +++ b/testcase/net.features/ltp.net.features.vlan01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.vlan02.sh b/testcase/net.features/ltp.net.features.vlan02.sh index 8cd54bb..fde19f7 100755 --- a/testcase/net.features/ltp.net.features.vlan02.sh +++ b/testcase/net.features/ltp.net.features.vlan02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.vlan03.sh b/testcase/net.features/ltp.net.features.vlan03.sh index a2820d1..3131a73 100755 --- a/testcase/net.features/ltp.net.features.vlan03.sh +++ b/testcase/net.features/ltp.net.features.vlan03.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.vxlan01.sh b/testcase/net.features/ltp.net.features.vxlan01.sh index 2c4a664..f6c4a93 100755 --- a/testcase/net.features/ltp.net.features.vxlan01.sh +++ b/testcase/net.features/ltp.net.features.vxlan01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.vxlan02.sh b/testcase/net.features/ltp.net.features.vxlan02.sh index 2684f68..b7cb3cf 100755 --- a/testcase/net.features/ltp.net.features.vxlan02.sh +++ b/testcase/net.features/ltp.net.features.vxlan02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.vxlan02_ipv6.sh b/testcase/net.features/ltp.net.features.vxlan02_ipv6.sh index 9b71f25..c604a75 100755 --- a/testcase/net.features/ltp.net.features.vxlan02_ipv6.sh +++ b/testcase/net.features/ltp.net.features.vxlan02_ipv6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.vxlan_ipv6_multi_03.sh b/testcase/net.features/ltp.net.features.vxlan_ipv6_multi_03.sh index 169fb6e..2a7c4a6 100755 --- a/testcase/net.features/ltp.net.features.vxlan_ipv6_multi_03.sh +++ b/testcase/net.features/ltp.net.features.vxlan_ipv6_multi_03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.vxlan_ipv6_uni_03.sh b/testcase/net.features/ltp.net.features.vxlan_ipv6_uni_03.sh index 79449e6..40caa1c 100755 --- a/testcase/net.features/ltp.net.features.vxlan_ipv6_uni_03.sh +++ b/testcase/net.features/ltp.net.features.vxlan_ipv6_uni_03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.vxlan_ipv6_uni_04.sh b/testcase/net.features/ltp.net.features.vxlan_ipv6_uni_04.sh index 4c8946a..007f3c0 100755 --- a/testcase/net.features/ltp.net.features.vxlan_ipv6_uni_04.sh +++ b/testcase/net.features/ltp.net.features.vxlan_ipv6_uni_04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.vxlan_multi_03.sh b/testcase/net.features/ltp.net.features.vxlan_multi_03.sh index 116b970..8f1c817 100755 --- a/testcase/net.features/ltp.net.features.vxlan_multi_03.sh +++ b/testcase/net.features/ltp.net.features.vxlan_multi_03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.vxlan_uni_03.sh b/testcase/net.features/ltp.net.features.vxlan_uni_03.sh index 7d04f61..e705049 100755 --- a/testcase/net.features/ltp.net.features.vxlan_uni_03.sh +++ b/testcase/net.features/ltp.net.features.vxlan_uni_03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.vxlan_uni_04.sh b/testcase/net.features/ltp.net.features.vxlan_uni_04.sh index dd5b1ef..0f14cc5 100755 --- a/testcase/net.features/ltp.net.features.vxlan_uni_04.sh +++ b/testcase/net.features/ltp.net.features.vxlan_uni_04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.wireguard01.sh b/testcase/net.features/ltp.net.features.wireguard01.sh index aea5fcc..924bca0 100755 --- a/testcase/net.features/ltp.net.features.wireguard01.sh +++ b/testcase/net.features/ltp.net.features.wireguard01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.wireguard01_ipv6.sh b/testcase/net.features/ltp.net.features.wireguard01_ipv6.sh index f3413df..851fe38 100755 --- a/testcase/net.features/ltp.net.features.wireguard01_ipv6.sh +++ b/testcase/net.features/ltp.net.features.wireguard01_ipv6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.wireguard02.sh b/testcase/net.features/ltp.net.features.wireguard02.sh index 636a72e..5843c30 100755 --- a/testcase/net.features/ltp.net.features.wireguard02.sh +++ b/testcase/net.features/ltp.net.features.wireguard02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.features/ltp.net.features.wireguard02_ipv6.sh b/testcase/net.features/ltp.net.features.wireguard02_ipv6.sh index 0e9446d..837c0a3 100755 --- a/testcase/net.features/ltp.net.features.wireguard02_ipv6.sh +++ b/testcase/net.features/ltp.net.features.wireguard02_ipv6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6/ltp.net.ipv6.dhcpd6.sh b/testcase/net.ipv6/ltp.net.ipv6.dhcpd6.sh index 6831b1b..e8908e4 100755 --- a/testcase/net.ipv6/ltp.net.ipv6.dhcpd6.sh +++ b/testcase/net.ipv6/ltp.net.ipv6.dhcpd6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6/ltp.net.ipv6.dnsmasq6.sh b/testcase/net.ipv6/ltp.net.ipv6.dnsmasq6.sh index cc1e3af..8f220ca 100755 --- a/testcase/net.ipv6/ltp.net.ipv6.dnsmasq6.sh +++ b/testcase/net.ipv6/ltp.net.ipv6.dnsmasq6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6/ltp.net.ipv6.ip6tables.sh b/testcase/net.ipv6/ltp.net.ipv6.ip6tables.sh index df0d82a..966b003 100755 --- a/testcase/net.ipv6/ltp.net.ipv6.ip6tables.sh +++ b/testcase/net.ipv6/ltp.net.ipv6.ip6tables.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6/ltp.net.ipv6.ipneigh6_ip.sh b/testcase/net.ipv6/ltp.net.ipv6.ipneigh6_ip.sh index 9c9d1f2..8629943 100755 --- a/testcase/net.ipv6/ltp.net.ipv6.ipneigh6_ip.sh +++ b/testcase/net.ipv6/ltp.net.ipv6.ipneigh6_ip.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6/ltp.net.ipv6.nft6.sh b/testcase/net.ipv6/ltp.net.ipv6.nft6.sh index 68f06f3..b6cb5e4 100755 --- a/testcase/net.ipv6/ltp.net.ipv6.nft6.sh +++ b/testcase/net.ipv6/ltp.net.ipv6.nft6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6/ltp.net.ipv6.ping601.sh b/testcase/net.ipv6/ltp.net.ipv6.ping601.sh index 112fd59..c698000 100755 --- a/testcase/net.ipv6/ltp.net.ipv6.ping601.sh +++ b/testcase/net.ipv6/ltp.net.ipv6.ping601.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6/ltp.net.ipv6.ping602.sh b/testcase/net.ipv6/ltp.net.ipv6.ping602.sh index bcedc09..7277b6e 100755 --- a/testcase/net.ipv6/ltp.net.ipv6.ping602.sh +++ b/testcase/net.ipv6/ltp.net.ipv6.ping602.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6/ltp.net.ipv6.sendfile601.sh b/testcase/net.ipv6/ltp.net.ipv6.sendfile601.sh index d6bfa9b..d832203 100755 --- a/testcase/net.ipv6/ltp.net.ipv6.sendfile601.sh +++ b/testcase/net.ipv6/ltp.net.ipv6.sendfile601.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6/ltp.net.ipv6.tcpdump601.sh b/testcase/net.ipv6/ltp.net.ipv6.tcpdump601.sh index 091617f..932da9c 100755 --- a/testcase/net.ipv6/ltp.net.ipv6.tcpdump601.sh +++ b/testcase/net.ipv6/ltp.net.ipv6.tcpdump601.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6/ltp.net.ipv6.tracepath601.sh b/testcase/net.ipv6/ltp.net.ipv6.tracepath601.sh index 6dc3afe..362f6a9 100755 --- a/testcase/net.ipv6/ltp.net.ipv6.tracepath601.sh +++ b/testcase/net.ipv6/ltp.net.ipv6.tracepath601.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6/ltp.net.ipv6.traceroute601.sh b/testcase/net.ipv6/ltp.net.ipv6.traceroute601.sh index e2e25f8..b287a54 100755 --- a/testcase/net.ipv6/ltp.net.ipv6.traceroute601.sh +++ b/testcase/net.ipv6/ltp.net.ipv6.traceroute601.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_01.sh b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_01.sh index e4c4162..4731047 100755 --- a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_01.sh +++ b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_02.sh b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_02.sh index 96a7132..0e1c508 100755 --- a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_02.sh +++ b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_03.sh b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_03.sh index a5602e5..43dd3ce 100755 --- a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_03.sh +++ b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.asapi_03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.getaddrinfo_01.sh b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.getaddrinfo_01.sh index 6a606d4..9197bd0 100755 --- a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.getaddrinfo_01.sh +++ b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.getaddrinfo_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_01.sh b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_01.sh index 0d7a850..90d8fac 100755 --- a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_01.sh +++ b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_02.sh b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_02.sh index fc0277c..57da0c0 100755 --- a/testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_02.sh +++ b/testcase/net.ipv6_lib/ltp.net.ipv6_lib.in6_02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.multicast/ltp.net.multicast.mc_cmds.sh b/testcase/net.multicast/ltp.net.multicast.mc_cmds.sh index 8622afa..c9d3f1e 100755 --- a/testcase/net.multicast/ltp.net.multicast.mc_cmds.sh +++ b/testcase/net.multicast/ltp.net.multicast.mc_cmds.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.multicast/ltp.net.multicast.mc_commo.sh b/testcase/net.multicast/ltp.net.multicast.mc_commo.sh index 25ccb4a..230fcd0 100755 --- a/testcase/net.multicast/ltp.net.multicast.mc_commo.sh +++ b/testcase/net.multicast/ltp.net.multicast.mc_commo.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.multicast/ltp.net.multicast.mc_member.sh b/testcase/net.multicast/ltp.net.multicast.mc_member.sh index 3a576fa..0f67d67 100755 --- a/testcase/net.multicast/ltp.net.multicast.mc_member.sh +++ b/testcase/net.multicast/ltp.net.multicast.mc_member.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.multicast/ltp.net.multicast.mc_opts.sh b/testcase/net.multicast/ltp.net.multicast.mc_opts.sh index 26d0b36..4513f23 100755 --- a/testcase/net.multicast/ltp.net.multicast.mc_opts.sh +++ b/testcase/net.multicast/ltp.net.multicast.mc_opts.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4t.sh index 7307f3e..f6e95af 100755 --- a/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4u.sh index 44ff4b4..1159dea 100755 --- a/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4u.sh +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip4u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6t.sh index 692ee00..e293f30 100755 --- a/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6u.sh index 046e1f9..6493692 100755 --- a/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6u.sh +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v30_ip6u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v40_ip4t.sh index d48f9a7..d3535b8 100755 --- a/testcase/net.nfs/ltp.net.nfs.fsx_v40_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v40_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v40_ip6t.sh index 5875a3c..1726dc6 100755 --- a/testcase/net.nfs/ltp.net.nfs.fsx_v40_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v40_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v41_ip4t.sh index 4937e9c..c579a7c 100755 --- a/testcase/net.nfs/ltp.net.nfs.fsx_v41_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v41_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v41_ip6t.sh index da71fd2..9b2b363 100755 --- a/testcase/net.nfs/ltp.net.nfs.fsx_v41_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v41_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v42_ip4t.sh index 516dbdb..f492bee 100755 --- a/testcase/net.nfs/ltp.net.nfs.fsx_v42_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v42_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.fsx_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.fsx_v42_ip6t.sh index 1b96418..e1a1f6b 100755 --- a/testcase/net.nfs/ltp.net.nfs.fsx_v42_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.fsx_v42_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4t.sh index 36273d8..d460e6d 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4u.sh index 3f08966..d5383c6 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip4u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6t.sh index 6cc5882..a440584 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6u.sh index 846946c..68b1613 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v30_ip6u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip4t.sh index 902246d..6cbaff8 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip6t.sh index 2621a72..291ab23 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v40_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip4t.sh index 3113538..716f3bf 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip6t.sh index 2e92e4f..f30a589 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v41_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip4t.sh index 71c146e..67b6437 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip6t.sh index da3acf1..608b731 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs01_v42_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4t.sh index 69cff03..11d1286 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4u.sh index 1216683..4071602 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip4u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6t.sh index 7b6a022..3cc9bd4 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6u.sh index 68e9559..4cfa8ff 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v30_ip6u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip4t.sh index e63b9f9..1e5f546 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip6t.sh index fa1976f..71d36ee 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v40_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip4t.sh index 15930d8..d1d44a9 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip6t.sh index 7e90bb1..84d100e 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v41_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip4t.sh index 3eec57b..565c88d 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip6t.sh index 9f61077..b86d308 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs02_v42_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4t.sh index 9b381be..cf888ad 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4u.sh index 883a24e..ed61d73 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip4u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6t.sh index 5beeab1..1eb3744 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6u.sh index 0905fe8..1a31cb4 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v30_ip6u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip4t.sh index 3048e1b..5963267 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip6t.sh index e9e7755..1373004 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v40_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip4t.sh index f6ef658..30dd2a7 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip6t.sh index 911c440..d112687 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v41_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip4t.sh index 5e8a509..507231f 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip6t.sh index 2a570fb..d542e8b 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs03_v42_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4t.sh index 7bedb8a..4d7ddb3 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4u.sh index afaa57e..445f848 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip4u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6t.sh index 0ff56cb..cb66e3c 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6u.sh index f249a24..ed84a2d 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v30_ip6u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip4t.sh index 8278a74..2bb0808 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip6t.sh index 9a1c6f7..e6a1037 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v40_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip4t.sh index 27aebf3..5553c2c 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip6t.sh index d429e22..d3e14f1 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v41_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip4t.sh index 6a03ac0..f4c3efa 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip6t.sh index 3cbb4eb..f1b2555 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs04_v42_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4t.sh index ebecb71..c73ac38 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4u.sh index 4d31b1c..b8994f6 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip4u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6t.sh index df9ea47..19f0f18 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6u.sh index 47c43df..2c9da28 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v30_ip6u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip4t.sh index e160fe9..1c027fe 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip6t.sh index ea47bf3..3c6bcea 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v40_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip4t.sh index 961c814..678f00b 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip6t.sh index e188650..ce9887a 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v41_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip4t.sh index 42b1714..5184518 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip6t.sh index 199fa15..bf6874a 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs05_v42_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs06_v30_v40_ip4.sh b/testcase/net.nfs/ltp.net.nfs.nfs06_v30_v40_ip4.sh index 6b14499..0841101 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs06_v30_v40_ip4.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs06_v30_v40_ip4.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs06_v4x_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs06_v4x_ip6t.sh index 1135da7..e4ba4e0 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs06_v4x_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs06_v4x_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs06_vall_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs06_vall_ip4t.sh index 1e08e6a..98965e3 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs06_vall_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs06_vall_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4t.sh index 5e4500e..1ec5571 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4u.sh index 967575c..90ca283 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip4u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6t.sh index c9c4196..29a0398 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6u.sh index d5c1682..830a3e4 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v30_ip6u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip4t.sh index 7736d2a..0d736b0 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip6t.sh index 189da3a..ecbf64d 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v40_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip4t.sh index 5445282..f106ed6 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip6t.sh index f9baedb..dec17cf 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v41_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip4t.sh index f7306ca..daa3566 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip6t.sh index 5da9aa6..d421ed2 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs07_v42_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4t.sh index 23eeab4..00e8aa2 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4u.sh index 00d44a6..fe76063 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip4u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6t.sh index 79279eb..31bc301 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6u.sh index fea5f27..d1216c2 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v30_ip6u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip4t.sh index 6bf5404..0894a1e 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip6t.sh index 46dd9e5..81b6145 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v40_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip4t.sh index 88fd802..554c206 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip6t.sh index c6ada3e..74f2cd8 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v41_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip4t.sh index 1e99482..b091393 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip6t.sh index 7e1ef4c..459d7b3 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs08_v42_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4t.sh index 4635012..cc13544 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4u.sh index 9d8719e..b4c05cd 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip4u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6t.sh index 33f299e..2a71f04 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6u.sh index 77dbe08..c5582a9 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v30_ip6u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip4t.sh index c8e7242..561ef5a 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip6t.sh index 29762c3..a6140bc 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v40_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip4t.sh index ade058d..31e3aa4 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip6t.sh index 1934223..cc741e0 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v41_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip4t.sh index dcc9343..a3feb02 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip6t.sh index f03c19b..c163b8f 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfs09_v42_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4t.sh index d75d8fb..92cdd0a 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4u.sh index d34d568..e77675b 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip4u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6t.sh index 1723704..3243820 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6u.sh index 16659d3..7a37623 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v30_ip6u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip4t.sh index a8cd2f1..6eaf1cd 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip6t.sh index a7422c5..16ee563 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v40_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip4t.sh index a0c67c3..72369fb 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip6t.sh index 9d2f400..ad917e9 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v41_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip4t.sh index b9b08b2..03d6a0a 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip6t.sh index 0280738..74d28b3 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfslock01_v42_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4t.sh index 0bcb386..ec05f3c 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4u.sh index ae8d415..f0ddb24 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip4u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6t.sh index afa64f2..c8995fd 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6u.sh index 59a1f31..cb20718 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6u.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v30_ip6u.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip4t.sh index d2196da..2ca59c8 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip6t.sh index cabf998..86b2bab 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v40_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip4t.sh index b434745..2ac6842 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip6t.sh index 5689cc7..d72a976 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v41_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip4t.sh index 1a48a85..3c72f49 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip4t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip4t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip6t.sh index 1f74f04..591995f 100755 --- a/testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip6t.sh +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat01_v42_ip6t.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc01.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc01.sh index b0e02a1..6bdc465 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc01.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_auth_destroy.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_auth_destroy.sh index 5efb376..061a857 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_auth_destroy.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_auth_destroy.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authnone_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authnone_create.sh index 7004222..6d92f34 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authnone_create.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authnone_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create.sh index 744f44f..72521e6 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create_default.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create_default.sh index 94cda24..0cd6c8c 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create_default.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_authunix_create_default.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_callrpc.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_callrpc.sh index 1517925..d6a7d81 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_callrpc.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_callrpc.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_broadcast.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_broadcast.sh index 8ce3325..5c6c264 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_broadcast.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_broadcast.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_call.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_call.sh index cf1ee64..e721aa8 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_call.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_call.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_control.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_control.sh index 359de3b..eb54a0f 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_control.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_control.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_create.sh index 3fd8131..3d4d5e6 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_create.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_destroy.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_destroy.sh index f9db7a2..e89080d 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_destroy.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_destroy.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_freeres.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_freeres.sh index d0a0944..38dbdf2 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_freeres.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_freeres.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_geterr.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_geterr.sh index d75d0fd..b775b13 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_geterr.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_geterr.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_pcreateerror.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_pcreateerror.sh index 25a94f4..c5997cf 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_pcreateerror.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_pcreateerror.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perrno.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perrno.sh index 2994515..7500fff 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perrno.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perrno.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perror.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perror.sh index 0292038..e8611d4 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perror.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_perror.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_spcreateerror.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_spcreateerror.sh index ee298fd..59e73f6 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_spcreateerror.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_spcreateerror.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperrno.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperrno.sh index 1a4e805..37db28b 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperrno.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperrno.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperror.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperror.sh index 8958d7a..aea64cd 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperror.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnt_sperror.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntraw_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntraw_create.sh index 9800be0..0cfc04b 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntraw_create.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntraw_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnttcp_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnttcp_create.sh index 80103e6..ba768e3 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnttcp_create.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clnttcp_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_bufcreate.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_bufcreate.sh index 0925de5..7353ddd 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_bufcreate.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_bufcreate.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_create.sh index 97bbea7..726dbba 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_create.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_clntudp_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_get_myaddress.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_get_myaddress.sh index 8d0547f..f932801 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_get_myaddress.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_get_myaddress.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getmaps.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getmaps.sh index fbea340..9b70ee9 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getmaps.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getmaps.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getport.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getport.sh index 0b397fd..41f5ec9 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getport.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_getport.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_rmtcall.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_rmtcall.sh index 2575918..ad999c0 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_rmtcall.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_rmtcall.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_set.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_set.sh index c672968..47f5397 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_set.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_set.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_unset.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_unset.sh index aff6420..027e147 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_unset.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_pmap_unset.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_registerrpc.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_registerrpc.sh index 62eacf0..a086d13 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_registerrpc.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_registerrpc.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_destroy.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_destroy.sh index a1488d2..6332ea6 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_destroy.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_destroy.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_freeargs.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_freeargs.sh index 9274cdb..f43d490 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_freeargs.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_freeargs.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getargs.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getargs.sh index 6fa7f9c..24a3b3c 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getargs.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getargs.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getcaller.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getcaller.sh index 6cff86a..3780a91 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getcaller.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_getcaller.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_register.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_register.sh index e0dcf1f..fd02e76 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_register.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_register.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_sendreply.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_sendreply.sh index ac024a8..bf55f7c 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_sendreply.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_sendreply.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_unregister.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_unregister.sh index c3b2ef5..e5cbe0b 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_unregister.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svc_unregister.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_auth.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_auth.sh index 135e3f5..5e980bf 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_auth.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_auth.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noproc.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noproc.sh index 0a81680..f797072 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noproc.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noproc.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noprog.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noprog.sh index 7e9d51f..7406e6f 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noprog.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_noprog.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_progvers.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_progvers.sh index 7f4a410..7e1e9ac 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_progvers.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_progvers.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_systemerr.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_systemerr.sh index ef0f1c7..2598e15 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_systemerr.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_systemerr.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_weakauth.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_weakauth.sh index 1e574ab..fbf6ef3 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_weakauth.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcerr_weakauth.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcfd_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcfd_create.sh index a3e8eea..8879c29 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcfd_create.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcfd_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcraw_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcraw_create.sh index b3d478d..b6dd2a6 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcraw_create.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcraw_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svctcp_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svctcp_create.sh index dfa0f53..06bc104 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svctcp_create.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svctcp_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_bufcreate.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_bufcreate.sh index 7621b36..c2b40db 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_bufcreate.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_bufcreate.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_create.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_create.sh index e44ba9a..3155316 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_create.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_svcudp_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_register.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_register.sh index 08de5b3..6e1e0c4 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_register.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_register.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_unregister.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_unregister.sh index f00792b..7af591d 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_unregister.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpc_xprt_unregister.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpcinfo.sh b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpcinfo.sh index e5eb257..9dd9992 100755 --- a/testcase/net.rpc_tests/ltp.net.rpc_tests.rpcinfo.sh +++ b/testcase/net.rpc_tests/ltp.net.rpc_tests.rpcinfo.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_accept_close.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_accept_close.sh index 51afbfd..f89eaa6 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_accept_close.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_accept_close.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_addrs.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_addrs.sh index 2b47cd6..5b1cf95 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_addrs.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_addrs.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_connect.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_connect.sh index a0287e0..a374316 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_connect.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_connect.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_connectx.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_connectx.sh index cf3b344..0d0519e 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_connectx.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_connectx.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_events.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_events.sh index 5b11bf8..a691eac 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_events.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_events.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_initmsg_connect.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_initmsg_connect.sh index 05cb0e4..7b4f1e9 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_initmsg_connect.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_initmsg_connect.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_nonblock.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_nonblock.sh index 0eaf1fa..b937527 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_nonblock.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_nonblock.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvfrom.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvfrom.sh index bc671ed..40faec8 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvfrom.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvfrom.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvmsg.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvmsg.sh index d484fe7..ad15956 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvmsg.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_recvmsg.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_rtoinfo.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_rtoinfo.sh index 30c4b88..339870d 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_rtoinfo.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_rtoinfo.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_send.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_send.sh index 2525b7d..a8de0a8 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_send.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_send.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendmsg.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendmsg.sh index 94106b8..0176ea6 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendmsg.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendmsg.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendto.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendto.sh index e50a0b8..5107d66 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendto.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sendto.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_shutdown.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_shutdown.sh index f4bd137..01ea924 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_shutdown.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_shutdown.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_socket_bind_listen.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_socket_bind_listen.sh index 9c6b91b..546bce7 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_socket_bind_listen.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_socket_bind_listen.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sockopt.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sockopt.sh index bd80c22..d315162 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sockopt.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_sockopt.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_threads.sh b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_threads.sh index 3c54d89..6a221cc 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_1_to_1_threads.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_1_to_1_threads.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_assoc_abort.sh b/testcase/net.sctp/ltp.net.sctp.test_assoc_abort.sh index 5e85e51..cd04795 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_assoc_abort.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_assoc_abort.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_assoc_shutdown.sh b/testcase/net.sctp/ltp.net.sctp.test_assoc_shutdown.sh index c49fd9a..bf50a9f 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_assoc_shutdown.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_assoc_shutdown.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_autoclose.sh b/testcase/net.sctp/ltp.net.sctp.test_autoclose.sh index c5c5668..c2b150b 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_autoclose.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_autoclose.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_basic.sh b/testcase/net.sctp/ltp.net.sctp.test_basic.sh index 6fd5be2..0f56a4a 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_basic.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_basic.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_basic_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_basic_v6.sh index 88b810d..6141723 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_basic_v6.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_basic_v6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_connect.sh b/testcase/net.sctp/ltp.net.sctp.test_connect.sh index 748cb10..4e0e0cd 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_connect.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_connect.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_connectx.sh b/testcase/net.sctp/ltp.net.sctp.test_connectx.sh index 9db939c..5753a09 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_connectx.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_connectx.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_fragments.sh b/testcase/net.sctp/ltp.net.sctp.test_fragments.sh index 5032231..aab04a4 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_fragments.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_fragments.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_fragments_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_fragments_v6.sh index 162b2ed..ca6e145 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_fragments_v6.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_fragments_v6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_getname.sh b/testcase/net.sctp/ltp.net.sctp.test_getname.sh index 058dac2..ff515a1 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_getname.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_getname.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_getname_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_getname_v6.sh index 18f6180..5c7c1f6 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_getname_v6.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_getname_v6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_inaddr_any.sh b/testcase/net.sctp/ltp.net.sctp.test_inaddr_any.sh index d6f6299..ae1148f 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_inaddr_any.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_inaddr_any.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_inaddr_any_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_inaddr_any_v6.sh index f0eb564..b76d288 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_inaddr_any_v6.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_inaddr_any_v6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_peeloff.sh b/testcase/net.sctp/ltp.net.sctp.test_peeloff.sh index 3fc6f90..7d25cf6 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_peeloff.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_peeloff.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_peeloff_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_peeloff_v6.sh index b65496c..65e5470 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_peeloff_v6.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_peeloff_v6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_recvmsg.sh b/testcase/net.sctp/ltp.net.sctp.test_recvmsg.sh index fb33950..0c5dc08 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_recvmsg.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_recvmsg.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg.sh b/testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg.sh index 12d1123..4d82718 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg_v6.sh index e740a02..2fc6712 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg_v6.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_sctp_sendrecvmsg_v6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_sockopt.sh b/testcase/net.sctp/ltp.net.sctp.test_sockopt.sh index 143887d..ffee83a 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_sockopt.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_sockopt.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_sockopt_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_sockopt_v6.sh index c822318..d9187b7 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_sockopt_v6.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_sockopt_v6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_tcp_style.sh b/testcase/net.sctp/ltp.net.sctp.test_tcp_style.sh index 1a9b4a3..57b8e60 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_tcp_style.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_tcp_style.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_tcp_style_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_tcp_style_v6.sh index 48d9ce0..42c4ab6 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_tcp_style_v6.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_tcp_style_v6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_timetolive.sh b/testcase/net.sctp/ltp.net.sctp.test_timetolive.sh index cc7d5f8..32b91e0 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_timetolive.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_timetolive.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.sctp/ltp.net.sctp.test_timetolive_v6.sh b/testcase/net.sctp/ltp.net.sctp.test_timetolive_v6.sh index b81ebb7..aafc159 100755 --- a/testcase/net.sctp/ltp.net.sctp.test_timetolive_v6.sh +++ b/testcase/net.sctp/ltp.net.sctp.test_timetolive_v6.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.arping01.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.arping01.sh index b52bf20..3710132 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.arping01.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.arping01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.dhcpd.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.dhcpd.sh index 7a8dc0c..9a31aac 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.dhcpd.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.dhcpd.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.dnsmasq.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.dnsmasq.sh index a50155c..b153727 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.dnsmasq.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.dnsmasq.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ftp.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ftp.sh index 6b8691c..684274f 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ftp.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ftp.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_arp.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_arp.sh index f1f6e9c..77d43e1 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_arp.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_arp.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_ip.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_ip.sh index 9494bf1..0c2ba02 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_ip.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ipneigh01_ip.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.iproute.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.iproute.sh index 1eba0ec..ebe42e7 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.iproute.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.iproute.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.iptables.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.iptables.sh index cbf6c53..0387d32 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.iptables.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.iptables.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.netstat.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.netstat.sh index bd6795e..fae9d38 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.netstat.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.netstat.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.nft.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.nft.sh index 0cffd06..4868f5e 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.nft.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.nft.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping01.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping01.sh index 8d0e7d6..0d2ce31 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping01.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping02.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping02.sh index b925764..6e731d3 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping02.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ping02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.sendfile.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.sendfile.sh index e647b75..4fbbfae 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.sendfile.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.sendfile.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tc01.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tc01.sh index 1f8819d..f7c7b0a 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tc01.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tc01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tcpdump.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tcpdump.sh index 1661524..d179d02 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tcpdump.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tcpdump.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tracepath01.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tracepath01.sh index 87612c7..ef591c2 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tracepath01.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.tracepath01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.traceroute01.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.traceroute01.sh index 35af77e..69fdb96 100755 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.traceroute01.sh +++ b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.traceroute01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authnone_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authnone_create.sh index 0e70dd0..9ed634e 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authnone_create.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authnone_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authsys_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authsys_create.sh index 216d253..6b33cb4 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authsys_create.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authsys_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authsys_create_default.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authsys_create_default.sh index 2610a67..9440927 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authsys_create_default.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_authsys_create_default.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_bottomlevel_clnt_call.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_bottomlevel_clnt_call.sh index 20a2b05..77a98bb 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_bottomlevel_clnt_call.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_bottomlevel_clnt_call.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_control.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_control.sh index 7aa87df..2a47362 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_control.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_control.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create.sh index 5095226..987b778 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create_timed.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create_timed.sh index 3ce2a17..1b071af 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create_timed.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_create_timed.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_destroy.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_destroy.sh index 80d2025..58c80d6 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_destroy.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_destroy.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_dg_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_dg_create.sh index bad4a7c..66a1021 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_dg_create.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_dg_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_pcreateerror.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_pcreateerror.sh index 07454cb..47904c0 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_pcreateerror.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_pcreateerror.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perrno.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perrno.sh index fd96346..0b8d5ca 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perrno.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perrno.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perror.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perror.sh index 21561fb..43c756f 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perror.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_perror.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tli_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tli_create.sh index 49e6e81..6905d87 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tli_create.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tli_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tp_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tp_create.sh index 2a29f1c..74d01d9 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tp_create.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tp_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tp_create_timed.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tp_create_timed.sh index d51ed50..acaf08f 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tp_create_timed.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_tp_create_timed.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_vc_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_vc_create.sh index 769081a..f0447b0 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_vc_create.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_clnt_vc_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_expertlevel_clnt_call.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_expertlevel_clnt_call.sh index cb13884..a35a50a 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_expertlevel_clnt_call.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_expertlevel_clnt_call.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_interlevel_clnt_call.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_interlevel_clnt_call.sh index bf1a027..c96ecee 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_interlevel_clnt_call.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_interlevel_clnt_call.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_broadcast.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_broadcast.sh index 0cd0dfe..f89532b 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_broadcast.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_broadcast.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_broadcast_exp.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_broadcast_exp.sh index 770aa48..78fe990 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_broadcast_exp.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_broadcast_exp.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_call.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_call.sh index 063c1f7..a457e98 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_call.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_call.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_reg.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_reg.sh index a42bd84..053640a 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_reg.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpc_reg.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getaddr.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getaddr.sh index 7de2c2b..3437acc 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getaddr.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getaddr.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getmaps.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getmaps.sh index aba1066..e4e7453 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getmaps.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_getmaps.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_rmtcall.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_rmtcall.sh index 47481c9..72d2ff9 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_rmtcall.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_rmtcall.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_set.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_set.sh index d7f0fed..2d576db 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_set.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_set.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_unset.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_unset.sh index a5edf6e..8e6fe65 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_unset.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_rpcb_unset.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_create.sh index f70abd5..1117c22 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_create.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_destroy.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_destroy.sh index 3ccfc77..cb042c8 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_destroy.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_destroy.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_dg_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_dg_create.sh index b1b9325..d517b9c 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_dg_create.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_dg_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_reg.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_reg.sh index 396e0f3..b309f96 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_reg.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_reg.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_tli_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_tli_create.sh index f8c473d..040a2ad 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_tli_create.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_tli_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_tp_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_tp_create.sh index 4520a06..f52a3b3 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_tp_create.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_tp_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_unreg.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_unreg.sh index 202eeb9..d01cfe6 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_unreg.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_unreg.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_vc_create.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_vc_create.sh index 2da11e3..6bc5aff 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_vc_create.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svc_vc_create.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_noproc.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_noproc.sh index 500074a..cdf2dda 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_noproc.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_noproc.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_noprog.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_noprog.sh index c0df05f..5cd8cf3 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_noprog.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_noprog.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_progvers.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_progvers.sh index f515c52..0816b18 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_progvers.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_progvers.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_systemerr.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_systemerr.sh index bebddb7..e919ff5 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_systemerr.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_systemerr.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_weakauth.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_weakauth.sh index aa30535..4e67d4e 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_weakauth.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_svcerr_weakauth.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_toplevel_clnt_call.sh b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_toplevel_clnt_call.sh index 6de3877..d84033e 100755 --- a/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_toplevel_clnt_call.sh +++ b/testcase/net.tirpc_tests/ltp.net.tirpc_tests.tirpc_toplevel_clnt_call.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.dns4-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.dns4-stress.sh index 96ebd39..9047b88 100755 --- a/testcase/net_stress.appl/ltp.net_stress.appl.dns4-stress.sh +++ b/testcase/net_stress.appl/ltp.net_stress.appl.dns4-stress.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.dns6-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.dns6-stress.sh index 251c5cd..f085202 100755 --- a/testcase/net_stress.appl/ltp.net_stress.appl.dns6-stress.sh +++ b/testcase/net_stress.appl/ltp.net_stress.appl.dns6-stress.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.ftp4-download-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.ftp4-download-stress.sh index 90aede1..f5ec018 100755 --- a/testcase/net_stress.appl/ltp.net_stress.appl.ftp4-download-stress.sh +++ b/testcase/net_stress.appl/ltp.net_stress.appl.ftp4-download-stress.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.ftp4-upload-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.ftp4-upload-stress.sh index 77dbff4..25788f7 100755 --- a/testcase/net_stress.appl/ltp.net_stress.appl.ftp4-upload-stress.sh +++ b/testcase/net_stress.appl/ltp.net_stress.appl.ftp4-upload-stress.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.ftp6-download-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.ftp6-download-stress.sh index 32ac53d..d02283b 100755 --- a/testcase/net_stress.appl/ltp.net_stress.appl.ftp6-download-stress.sh +++ b/testcase/net_stress.appl/ltp.net_stress.appl.ftp6-download-stress.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.ftp6-upload-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.ftp6-upload-stress.sh index dd49fc5..0c24aaf 100755 --- a/testcase/net_stress.appl/ltp.net_stress.appl.ftp6-upload-stress.sh +++ b/testcase/net_stress.appl/ltp.net_stress.appl.ftp6-upload-stress.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.http4-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.http4-stress.sh index b36f37a..be3967f 100755 --- a/testcase/net_stress.appl/ltp.net_stress.appl.http4-stress.sh +++ b/testcase/net_stress.appl/ltp.net_stress.appl.http4-stress.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.http6-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.http6-stress.sh index 1c4b1e7..2791b17 100755 --- a/testcase/net_stress.appl/ltp.net_stress.appl.http6-stress.sh +++ b/testcase/net_stress.appl/ltp.net_stress.appl.http6-stress.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.ssh4-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.ssh4-stress.sh index 2ce8cec..acab36a 100755 --- a/testcase/net_stress.appl/ltp.net_stress.appl.ssh4-stress.sh +++ b/testcase/net_stress.appl/ltp.net_stress.appl.ssh4-stress.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.appl/ltp.net_stress.appl.ssh6-stress.sh b/testcase/net_stress.appl/ltp.net_stress.appl.ssh6-stress.sh index ecfcd44..d39382a 100755 --- a/testcase/net_stress.appl/ltp.net_stress.appl.ssh6-stress.sh +++ b/testcase/net_stress.appl/ltp.net_stress.appl.ssh6-stress.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-checksum.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-checksum.sh index 9aaae10..cc9d754 100755 --- a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-checksum.sh +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-checksum.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-dstaddr.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-dstaddr.sh index 917ce13..8199407 100755 --- a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-dstaddr.sh +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-dstaddr.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-fragment.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-fragment.sh index 5c65b6c..722c6be 100755 --- a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-fragment.sh +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-fragment.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-ihl.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-ihl.sh index 6674c4f..2b91484 100755 --- a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-ihl.sh +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-ihl.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-plen.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-plen.sh index a2af268..3c73c6e 100755 --- a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-plen.sh +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-plen.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-protcol.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-protcol.sh index fe7a82d..b95c81c 100755 --- a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-protcol.sh +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-protcol.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-version.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-version.sh index dd416b5..7d514e4 100755 --- a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-version.sh +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip4-version.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-dstaddr.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-dstaddr.sh index d985544..c3f47a9 100755 --- a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-dstaddr.sh +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-dstaddr.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-nexthdr.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-nexthdr.sh index d02799c..591c95d 100755 --- a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-nexthdr.sh +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-nexthdr.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-plen.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-plen.sh index 07d9e80..2a15342 100755 --- a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-plen.sh +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-plen.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-version.sh b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-version.sh index e2d2e51..05c259f 100755 --- a/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-version.sh +++ b/testcase/net_stress.broken_ip/ltp.net_stress.broken_ip.broken_ip6-version.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-adddel_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-adddel_ifconfig.sh index a320b1d..0d53718 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-adddel_ifconfig.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-adddel_ifconfig.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-adddel_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-adddel_ip.sh index e37f314..0ba7342 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-adddel_ip.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-adddel_ip.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-addlarge_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-addlarge_ifconfig.sh index bc52028..54a1cf8 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-addlarge_ifconfig.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-addlarge_ifconfig.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-addlarge_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-addlarge_ip.sh index 0f70997..41716bf 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-addlarge_ip.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-addlarge_ip.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-change_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-change_ifconfig.sh index b685842..66c4174 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-change_ifconfig.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-addr-change_ifconfig.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-mtu-change_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-mtu-change_ifconfig.sh index 1faed98..5e5ea46 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if4-mtu-change_ifconfig.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-mtu-change_ifconfig.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-mtu-change_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-mtu-change_ip.sh index 1b5b53a..26ef8bc 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if4-mtu-change_ip.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-mtu-change_ip.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-adddel_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-adddel_ip.sh index f797ab7..ca0c4c5 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-adddel_ip.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-adddel_ip.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-adddel_route.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-adddel_route.sh index fb3658b..8bcc83a 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-adddel_route.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-adddel_route.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-addlarge_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-addlarge_ip.sh index cd8b9d7..3d271ed 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-addlarge_ip.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-addlarge_ip.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-addlarge_route.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-addlarge_route.sh index 23ed106..6ed844d 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-addlarge_route.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-route-addlarge_route.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-updown_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-updown_ifconfig.sh index 0ed9db7..64727d9 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if4-updown_ifconfig.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-updown_ifconfig.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if4-updown_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if4-updown_ip.sh index 9c10194..906cb2d 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if4-updown_ip.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if4-updown_ip.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-adddel_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-adddel_ifconfig.sh index 7c80557..688057b 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-adddel_ifconfig.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-adddel_ifconfig.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-adddel_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-adddel_ip.sh index df5cd4a..aa5fee0 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-adddel_ip.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-adddel_ip.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-addlarge_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-addlarge_ifconfig.sh index b3099ee..19fa195 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-addlarge_ifconfig.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-addlarge_ifconfig.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-addlarge_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-addlarge_ip.sh index cc24b17..22c51b0 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-addlarge_ip.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-addr-addlarge_ip.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-mtu-change_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-mtu-change_ifconfig.sh index 9b254b7..dc40bee 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if6-mtu-change_ifconfig.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-mtu-change_ifconfig.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-mtu-change_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-mtu-change_ip.sh index 5bdd88b..74e4572 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if6-mtu-change_ip.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-mtu-change_ip.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-adddel_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-adddel_ip.sh index 900f581..f5892eb 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-adddel_ip.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-adddel_ip.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-adddel_route.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-adddel_route.sh index 65083f2..ffe158b 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-adddel_route.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-adddel_route.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-addlarge_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-addlarge_ip.sh index 1005a3e..ccd7181 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-addlarge_ip.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-addlarge_ip.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-addlarge_route.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-addlarge_route.sh index 4ec411a..7c2c4ce 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-addlarge_route.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-route-addlarge_route.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-updown_ifconfig.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-updown_ifconfig.sh index 79e821c..c675ded 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if6-updown_ifconfig.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-updown_ifconfig.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.interface/ltp.net_stress.interface.if6-updown_ip.sh b/testcase/net_stress.interface/ltp.net_stress.interface.if6-updown_ip.sh index be5517a..d45038c 100755 --- a/testcase/net_stress.interface/ltp.net_stress.interface.if6-updown_ip.sh +++ b/testcase/net_stress.interface/ltp.net_stress.interface.if6-updown_ip.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec01.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec01.sh index 0fb211a..7236f94 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec01.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec02.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec02.sh index 5e39930..3454996 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec02.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec03.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec03.sh index b811f8a..98cffe1 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec03.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec04.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec04.sh index 17d5db4..4c8f7b7 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec04.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec05.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec05.sh index 70a080b..80e1ecb 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec05.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec06.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec06.sh index 278e358..99633cc 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec06.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec07.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec07.sh index 09632d7..9cde846 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec07.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec08.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec08.sh index 3b69145..64e2cc0 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec08.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec09.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec09.sh index 3ba04d7..9abc4cf 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec09.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec10.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec10.sh index 6c37f4a..d8310ce 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec10.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec11.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec11.sh index d4b8906..d6f27b5 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec11.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec12.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec12.sh index 5cbd15f..8daeb39 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec12.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec13.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec13.sh index a02a65d..d39b982 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec13.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec14.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec14.sh index 79e0c5f..21fe626 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec14.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec15.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec15.sh index 3191f24..19f23ab 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec15.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec16.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec16.sh index cd28379..35deb46 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec16.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec17.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec17.sh index 61bb60d..30afefa 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec17.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec18.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec18.sh index 42d4f28..98e7a02 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec18.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec19.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec19.sh index b66db5d..0b9a632 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec19.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec20.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec20.sh index 1ffdd80..9a2c9bf 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec20.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec20.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec21.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec21.sh index 97230c8..6b47dee 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec21.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec22.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec22.sh index c72fa71..be2d942 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec22.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec22.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec23.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec23.sh index acb013a..cdd2319 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec23.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec23.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec24.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec24.sh index eab5c50..1d0f295 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec24.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec24.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec25.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec25.sh index 719747e..e76053a 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec25.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec25.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec26.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec26.sh index ed3d031..2df97c1 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec26.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec26.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec27.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec27.sh index dbee05c..2b77df1 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec27.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec27.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec28.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec28.sh index b3b7585..1b01d7a 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec28.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec28.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec29.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec29.sh index 8405aa3..e3ac63f 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec29.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec29.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec30.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec30.sh index a2ffbbc..3222d0a 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec30.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec30.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec31.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec31.sh index 6a11c4f..e0c1283 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec31.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec31.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec32.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec32.sh index ef29fca..b851a9e 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec32.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec32.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec33.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec33.sh index 93f5def..a699bd8 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec33.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec33.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec34.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec34.sh index f48a900..f445ca3 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec34.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec34.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec35.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec35.sh index 8e0a58d..d514a6a 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec35.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec35.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec36.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec36.sh index 6c9c244..d3edeec 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec36.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec36.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti01.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti01.sh index b7343ee..ee4c74a 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti01.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti02.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti02.sh index ade3932..dd445da 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti02.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti04.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti04.sh index fda59ee..69d15e2 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti04.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti05.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti05.sh index 3a1c63c..f5b408d 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti05.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti06.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti06.sh index 40f0127..7ff1694 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti06.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti07.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti07.sh index 5015541..2d0944e 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti07.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti08.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti08.sh index 9ab20ee..e1936a0 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti08.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti09.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti09.sh index ae64000..2aafb53 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti09.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti10.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti10.sh index c7a4510..c608e5a 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti10.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti11.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti11.sh index e34b3f3..ef61b46 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti11.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti12.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti12.sh index b85a516..9d8088a 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti12.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti13.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti13.sh index 930475b..6b1ba66 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti13.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti14.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti14.sh index 7ba6cc5..9c33225 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti14.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti15.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti15.sh index cc04333..3a7d57f 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti15.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti16.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti16.sh index dfa16f2..265c3d2 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti16.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti17.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti17.sh index e1c23de..259c4ad 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti17.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp4_ipsec_vti17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec01.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec01.sh index 9ca5103..ccdd1df 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec01.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec02.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec02.sh index 5a4ce8b..f71f497 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec02.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec03.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec03.sh index f590276..a042c0c 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec03.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec04.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec04.sh index ecc991c..1eba10c 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec04.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec05.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec05.sh index d9abd47..cdb63d1 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec05.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec06.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec06.sh index abf64c7..556fd32 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec06.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec07.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec07.sh index 1cb0c77..8760b23 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec07.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec08.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec08.sh index ee2a643..ad19667 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec08.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec09.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec09.sh index c03e0f9..869ee56 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec09.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec10.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec10.sh index f77e4ec..09c4e6e 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec10.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec11.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec11.sh index 12e2313..e7fda56 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec11.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec12.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec12.sh index 75f1294..c0d1263 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec12.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec13.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec13.sh index 9aef8d1..ba30d61 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec13.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec14.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec14.sh index 477d4cd..f2d96ba 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec14.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec15.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec15.sh index 3f9e994..88a854d 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec15.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec16.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec16.sh index 3b63fea..2108373 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec16.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec17.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec17.sh index 1e83198..40fbe90 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec17.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec18.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec18.sh index 8e67672..636b68a 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec18.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec19.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec19.sh index 637a2cc..c84f9b6 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec19.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec20.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec20.sh index b7a9537..b27510b 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec20.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec20.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec21.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec21.sh index 98e392e..3cfaeca 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec21.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec22.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec22.sh index 2547b8b..9dc4446 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec22.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec22.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec23.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec23.sh index 9d4d180..723a4ef 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec23.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec23.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec24.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec24.sh index 53117b2..b2a78b5 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec24.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec24.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec25.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec25.sh index e47b91a..175fb5f 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec25.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec25.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec26.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec26.sh index c4c3e86..4039d38 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec26.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec26.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec27.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec27.sh index afacb22..96b521c 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec27.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec27.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec28.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec28.sh index d5b075b..77f0d90 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec28.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec28.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec29.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec29.sh index 666ff51..2ec57c7 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec29.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec29.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec30.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec30.sh index 39400e4..7773c0c 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec30.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec30.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec31.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec31.sh index f75b155..679aa00 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec31.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec31.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec32.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec32.sh index 4ee7c42..8ae3e50 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec32.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec32.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec33.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec33.sh index a4f9670..99f391d 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec33.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec33.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec34.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec34.sh index 0fb838a..491f6ed 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec34.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec34.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec35.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec35.sh index 0ce30eb..f07bf30 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec35.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec35.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec36.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec36.sh index 72649e0..84027d7 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec36.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec36.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti01.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti01.sh index d544bbd..0b37d48 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti01.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti02.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti02.sh index a8791a8..de3767a 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti02.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti04.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti04.sh index 95792cd..a4d086c 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti04.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti05.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti05.sh index 109a06b..f87203e 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti05.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti06.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti06.sh index 521634c..8f1ef49 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti06.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti07.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti07.sh index 1b372f8..27e5a70 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti07.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti08.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti08.sh index 793e83a..a7e8d91 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti08.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti09.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti09.sh index d5ffd22..4cfafd3 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti09.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti10.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti10.sh index 7194188..671d7ba 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti10.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti11.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti11.sh index a04ea91..8dd48b7 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti11.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti12.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti12.sh index 5913aed..f25bfca 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti12.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti13.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti13.sh index f62ee0a..ac2f8e7 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti13.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti14.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti14.sh index bab075a..4bad9e3 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti14.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti15.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti15.sh index c18b4ac..a505fef 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti15.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti16.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti16.sh index adc5d04..4180987 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti16.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti17.sh b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti17.sh index badf15a..2bac4ac 100755 --- a/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti17.sh +++ b/testcase/net_stress.ipsec_dccp/ltp.net_stress.ipsec_dccp.dccp6_ipsec_vti17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic01.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic01.sh index fb8d13a..ce23fac 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic01.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic02.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic02.sh index a45063d..4eb326a 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic02.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic03.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic03.sh index 4a47e2b..1f14da1 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic03.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic04.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic04.sh index 675f95f..1880a58 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic04.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic05.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic05.sh index 47c28e0..982b4d5 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic05.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic06.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic06.sh index 258f5cc..587b64e 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic06.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic07.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic07.sh index e917f39..d0068c5 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic07.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic08.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic08.sh index 293981e..48776da 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic08.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic09.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic09.sh index 0c48058..fcfdae4 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic09.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic10.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic10.sh index 857c6c6..ad1b9ff 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic10.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic11.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic11.sh index 92785f6..2e2184e 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic11.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic12.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic12.sh index ffcd7d4..b48b043 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic12.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic13.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic13.sh index 9863819..f61d4eb 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic13.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic14.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic14.sh index 36781f8..3c2b575 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic14.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic15.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic15.sh index 78baeae..2b1a7fa 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic15.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic16.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic16.sh index e7713c2..901a9e9 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic16.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic17.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic17.sh index 1ed06a8..10fb8bc 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic17.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic18.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic18.sh index c33e7a1..4661f3e 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic18.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic19.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic19.sh index 8fd9705..8eeec5e 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic19.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic20.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic20.sh index cab34d3..1418743 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic20.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic20.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic21.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic21.sh index 8a16583..4b711d7 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic21.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic22.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic22.sh index 41e9f71..abc8d69 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic22.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic22.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic23.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic23.sh index 7820fcb..3e6f351 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic23.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic23.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic24.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic24.sh index 8c85215..d4c3ed4 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic24.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic24.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic25.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic25.sh index 95ca840..9c53661 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic25.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic25.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic26.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic26.sh index 3a4bb6b..2824c31 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic26.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-basic26.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti01.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti01.sh index 67aa8eb..1910579 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti01.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti02.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti02.sh index f24c37d..50d2d1b 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti02.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti03.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti03.sh index 0edccaf..fb287dc 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti03.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti04.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti04.sh index e7e026c..7a5bae8 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti04.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti05.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti05.sh index cce044e..08cdc93 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti05.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti06.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti06.sh index 6b5d64c..19f9be8 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti06.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti07.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti07.sh index ee70d0d..797cef7 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti07.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti08.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti08.sh index b24ac73..355b00d 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti08.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti09.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti09.sh index 77510bf..16b1cc1 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti09.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti10.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti10.sh index 547d951..e472ec6 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti10.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti11.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti11.sh index 5e866da..0865baf 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti11.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti12.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti12.sh index 2fcd7a6..ec5ebec 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti12.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti13.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti13.sh index 0b1b3ae..35dff25 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti13.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti14.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti14.sh index fc9dcd6..0d37bd2 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti14.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti15.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti15.sh index 43a3b65..11ff0dc 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti15.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti16.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti16.sh index fb45541..a3f245c 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti16.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti17.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti17.sh index b3685df..69638a5 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti17.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp4-uni-vti17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic01.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic01.sh index 6ef223b..f7c7162 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic01.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic02.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic02.sh index edd73fd..48b0714 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic02.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic03.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic03.sh index aea08b2..e1ca1c0 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic03.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic04.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic04.sh index 07140b3..ec91801 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic04.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic05.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic05.sh index a7990f3..8cea2d4 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic05.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic06.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic06.sh index 365d2ea..216753f 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic06.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic07.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic07.sh index 4bcc616..3a7b914 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic07.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic08.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic08.sh index 26328b2..256e182 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic08.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic09.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic09.sh index 7942c6a..96c905d 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic09.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic10.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic10.sh index 3a9fe45..2c0b9e6 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic10.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic11.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic11.sh index f94c610..edd634a 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic11.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic12.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic12.sh index 6d3940f..f6b48ac 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic12.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic13.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic13.sh index 0e8e931..e4d2512 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic13.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic14.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic14.sh index dfc9c05..03a5b2d 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic14.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic15.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic15.sh index 37fb97b..93f8895 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic15.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic16.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic16.sh index df08b7f..f385e00 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic16.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic17.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic17.sh index 0df03a9..c636ac2 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic17.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic18.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic18.sh index dc3a91d..eebcc6b 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic18.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic19.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic19.sh index dccb490..1189afe 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic19.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic20.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic20.sh index d84c21d..ca86f3c 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic20.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic20.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic21.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic21.sh index ced0847..c6ff76e 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic21.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic22.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic22.sh index c53bac8..354fa74 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic22.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic22.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic23.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic23.sh index bcfc8f0..dad3657 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic23.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic23.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic24.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic24.sh index eae35c9..30e7a57 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic24.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic24.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic25.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic25.sh index cf94a4f..aebfa45 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic25.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic25.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic26.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic26.sh index f54d95e..d9622f0 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic26.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-basic26.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti01.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti01.sh index 7d347b7..c14dca7 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti01.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti02.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti02.sh index e54a2e9..b993f4b 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti02.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti03.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti03.sh index 7918649..fd66b47 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti03.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti04.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti04.sh index a18f487..9f10103 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti04.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti05.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti05.sh index 9004da1..0cc5110 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti05.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti06.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti06.sh index af97e72..bab6c17 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti06.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti07.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti07.sh index f04c572..041fd41 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti07.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti08.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti08.sh index 7882e44..000637f 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti08.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti09.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti09.sh index 1f7c118..fb4578a 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti09.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti10.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti10.sh index 71aae41..07cbc70 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti10.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti11.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti11.sh index 2da8cfa..e65a488 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti11.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti12.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti12.sh index f0b73d9..f0115e9 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti12.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti13.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti13.sh index acc530d..665f6b9 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti13.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti14.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti14.sh index 5fa0032..72e7a90 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti14.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti15.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti15.sh index 1c359cf..b12845d 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti15.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti16.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti16.sh index a4841e7..ec34512 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti16.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti17.sh b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti17.sh index d48ac5c..ad4fd60 100755 --- a/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti17.sh +++ b/testcase/net_stress.ipsec_icmp/ltp.net_stress.ipsec_icmp.icmp6-uni-vti17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec01.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec01.sh index ffc8bdd..f30144f 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec01.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec02.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec02.sh index db0b8e4..70cd0d0 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec02.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec03.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec03.sh index d9aac72..9f0a713 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec03.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec04.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec04.sh index 4b5c1f1..a241f74 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec04.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec05.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec05.sh index 40fb419..c530420 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec05.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec06.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec06.sh index 0b7404d..f2d8245 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec06.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec07.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec07.sh index 1805cff..aa2eded 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec07.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec08.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec08.sh index 209f401..1c2c664 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec08.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec09.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec09.sh index a90a38d..aec8610 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec09.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec10.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec10.sh index 37f2a75..7c8de38 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec10.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec11.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec11.sh index 6f9ab0c..400f4a2 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec11.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec12.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec12.sh index 4a99c0e..ed1fa1d 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec12.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec13.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec13.sh index 37fc3ce..11a5afa 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec13.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec14.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec14.sh index 46f02fd..af3e37e 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec14.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec15.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec15.sh index 81bd326..00da697 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec15.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec16.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec16.sh index a846229..792aff4 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec16.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec17.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec17.sh index dc1e6cf..dd44f8b 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec17.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec18.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec18.sh index 23e519d..2dca33e 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec18.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec19.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec19.sh index 2cb1cc4..613cf88 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec19.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec20.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec20.sh index 1895b62..bf8b955 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec20.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec20.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec21.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec21.sh index 4ff0742..73735d0 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec21.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec22.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec22.sh index 8179d76..fd28e35 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec22.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec22.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec23.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec23.sh index 56f6a46..059f1ea 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec23.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec23.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec24.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec24.sh index 775a365..2369b8e 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec24.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec24.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec25.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec25.sh index 3705cc9..f61a9a5 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec25.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec25.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec26.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec26.sh index c0b1bc4..2ed68d5 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec26.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec26.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec27.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec27.sh index 0844f5c..9b5c696 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec27.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec27.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec28.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec28.sh index ee59248..11036d2 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec28.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec28.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec29.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec29.sh index 8165ec5..42e155f 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec29.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec29.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec30.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec30.sh index dedeffc..e09d6d6 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec30.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec30.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec31.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec31.sh index d92e1a1..f2fa1ce 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec31.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec31.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec32.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec32.sh index 9243e7e..23bfd8e 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec32.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec32.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec33.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec33.sh index 88a026e..89fef52 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec33.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec33.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec34.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec34.sh index 2c4ae97..e029005 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec34.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec34.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec35.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec35.sh index b933724..33f85c2 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec35.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec35.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec36.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec36.sh index c1c019d..555cfa5 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec36.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec36.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti01.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti01.sh index fe54935..19f7982 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti01.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti02.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti02.sh index eab3d5c..b236b5f 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti02.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti04.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti04.sh index add4b0a..ea734d1 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti04.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti05.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti05.sh index 142ccd3..8d8ea5e 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti05.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti06.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti06.sh index ab2dca4..1d9dd97 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti06.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti07.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti07.sh index 60d9e5b..d5f399f 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti07.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti08.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti08.sh index 8582c08..9b6587e 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti08.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti09.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti09.sh index 7ec61af..5c1c749 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti09.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti10.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti10.sh index 4d54d2d..df93dbb 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti10.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti11.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti11.sh index c720426..e7b8f68 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti11.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti12.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti12.sh index 2926efc..4fc9ce6 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti12.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti13.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti13.sh index 1afd713..58a60c6 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti13.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti14.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti14.sh index 17592e6..2a21dc0 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti14.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti15.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti15.sh index 9cd38a3..783510b 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti15.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti16.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti16.sh index 111aa96..6c1fa57 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti16.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti17.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti17.sh index 5def6cf..f867f34 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti17.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp4_ipsec_vti17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec01.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec01.sh index bcfa4c6..828502e 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec01.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec02.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec02.sh index 79508a4..3c51ee1 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec02.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec03.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec03.sh index 5d158b6..4941ef8 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec03.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec04.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec04.sh index 1829cfe..4480d62 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec04.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec05.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec05.sh index e307966..2fc0efb 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec05.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec06.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec06.sh index 1a57ad4..42af6f2 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec06.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec07.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec07.sh index 2c59c42..803f2b0 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec07.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec08.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec08.sh index de7cfb4..7188860 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec08.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec09.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec09.sh index 80b4052..aa72faa 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec09.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec10.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec10.sh index 810dfbf..c73fb2c 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec10.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec11.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec11.sh index b7021b9..adf1e62 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec11.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec12.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec12.sh index 81c8d8a..1fbe6ff 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec12.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec13.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec13.sh index d1eb8c4..16cf73f 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec13.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec14.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec14.sh index d57e8e6..f1f95a4 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec14.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec15.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec15.sh index 7f03370..e0c93cb 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec15.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec16.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec16.sh index edeeab0..e536abc 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec16.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec17.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec17.sh index 48d3482..49d7623 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec17.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec18.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec18.sh index e99e0da..04f66c1 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec18.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec19.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec19.sh index 3b09908..74e544b 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec19.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec20.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec20.sh index 8ef631d..795e5b6 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec20.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec20.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec21.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec21.sh index 43c21b6..c97a6d9 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec21.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec22.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec22.sh index 6ef4e1f..3f4392e 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec22.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec22.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec23.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec23.sh index aaaaf6d..afd0fce 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec23.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec23.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec24.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec24.sh index b077c85..cd545fc 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec24.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec24.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec25.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec25.sh index 211fcd0..2ff0a53 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec25.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec25.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec26.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec26.sh index f13acf8..49b40bc 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec26.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec26.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec27.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec27.sh index 056be9f..789f6d9 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec27.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec27.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec28.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec28.sh index 66b8a45..c23ff7a 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec28.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec28.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec29.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec29.sh index eb97c49..bd14c82 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec29.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec29.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec30.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec30.sh index 4b93f7b..c26d3fd 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec30.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec30.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec31.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec31.sh index 4cb746f..116c712 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec31.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec31.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec32.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec32.sh index cba3fb1..563cf6d 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec32.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec32.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec33.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec33.sh index e17247e..619d4c0 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec33.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec33.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec34.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec34.sh index f074a3f..ed1373f 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec34.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec34.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec35.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec35.sh index 09003fa..c4a66bc 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec35.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec35.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec36.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec36.sh index c8d5de4..467266d 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec36.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec36.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti01.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti01.sh index 5b135e2..619282b 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti01.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti02.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti02.sh index c7327bc..9f6a26f 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti02.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti04.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti04.sh index b0d7b89..3be679d 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti04.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti05.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti05.sh index 14cdfa5..dac91f5 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti05.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti06.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti06.sh index a44fe5e..bdb737c 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti06.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti07.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti07.sh index 1bfa1b6..862dd6d 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti07.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti08.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti08.sh index 5b990aa..0c14867 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti08.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti09.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti09.sh index 500b54f..f30716a 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti09.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti10.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti10.sh index 786da50..3aa7366 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti10.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti11.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti11.sh index 7a69224..4260674 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti11.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti12.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti12.sh index 62f2812..7f6f1e4 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti12.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti13.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti13.sh index b73b38a..d3a9056 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti13.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti14.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti14.sh index 434279f..58739f3 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti14.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti15.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti15.sh index 22d89a8..f5096f4 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti15.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti16.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti16.sh index 84d928d..617c44b 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti16.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti17.sh b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti17.sh index 1a3a111..dc995d5 100755 --- a/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti17.sh +++ b/testcase/net_stress.ipsec_sctp/ltp.net_stress.ipsec_sctp.sctp6_ipsec_vti17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec01.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec01.sh index fa1a7f8..dc89b23 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec01.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec02.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec02.sh index 47adb64..4cf1033 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec02.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec03.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec03.sh index fa72fe3..3916297 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec03.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec04.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec04.sh index b92f366..284df06 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec04.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec05.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec05.sh index 0a4a66c..3f351d0 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec05.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec06.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec06.sh index 7ef97b5..4c7a37d 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec06.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec07.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec07.sh index 3144b5a..3b1d818 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec07.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec08.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec08.sh index 22c87c0..893a17b 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec08.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec09.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec09.sh index a192e01..d9a0d56 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec09.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec10.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec10.sh index 4992307..978b602 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec10.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec11.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec11.sh index be8d18e..e6c1eb2 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec11.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec12.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec12.sh index 1bf9750..fcc4677 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec12.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec13.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec13.sh index 96fdce3..2f5df07 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec13.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec14.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec14.sh index ef2671d..e588213 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec14.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec15.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec15.sh index 169726d..93d963c 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec15.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec16.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec16.sh index f889c1f..ffb1293 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec16.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec17.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec17.sh index 6878f17..402984a 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec17.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec18.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec18.sh index 92f09ed..ff8b5c3 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec18.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec19.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec19.sh index b81610b..c7c4d8d 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec19.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec20.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec20.sh index bd0744a..692a390 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec20.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec20.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec21.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec21.sh index a562cac..3638890 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec21.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec22.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec22.sh index 77e944c..9d93f58 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec22.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec22.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec23.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec23.sh index 41abbca..135f1be 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec23.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec23.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec24.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec24.sh index 4225e31..0ef33f0 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec24.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec24.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec25.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec25.sh index 1cf5d34..d712c96 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec25.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec25.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec26.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec26.sh index c15cef5..8e8821d 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec26.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec26.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec27.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec27.sh index 0c73852..238e260 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec27.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec27.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec28.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec28.sh index c12e9ef..8a21251 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec28.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec28.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec29.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec29.sh index 27df439..0d35b62 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec29.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec29.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec30.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec30.sh index 8bce8c4..974a8d1 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec30.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec30.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec31.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec31.sh index b9eed0b..f5814cd 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec31.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec31.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec32.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec32.sh index 85cbab4..6059faf 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec32.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec32.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec33.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec33.sh index 3e723d2..04755af 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec33.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec33.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec34.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec34.sh index 2641aab..05aeb28 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec34.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec34.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec35.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec35.sh index 7a4b6b2..7bf8647 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec35.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec35.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec36.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec36.sh index 42b5652..2f6f8a9 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec36.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec36.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti01.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti01.sh index 9abf9a0..993f4c2 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti01.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti02.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti02.sh index bd45c81..cd0d465 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti02.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti04.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti04.sh index 59c139b..93abdab 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti04.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti05.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti05.sh index 0d78e72..20523cb 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti05.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti06.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti06.sh index 26b9514..af2b069 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti06.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti07.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti07.sh index 81f6d47..4a953ea 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti07.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti08.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti08.sh index 96ef084..70e6f1a 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti08.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti09.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti09.sh index 9468757..11b7533 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti09.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti10.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti10.sh index c754ac8..dbc72c7 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti10.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti11.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti11.sh index 41ca793..6839b31 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti11.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti12.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti12.sh index 786cb1f..39b1e98 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti12.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti13.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti13.sh index bb76e18..7de6fd3 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti13.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti14.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti14.sh index 9a6fd91..7de8d2c 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti14.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti15.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti15.sh index eb5c765..7bcaf56 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti15.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti16.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti16.sh index 966844c..64b65b0 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti16.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti17.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti17.sh index aa55136..971cc87 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti17.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp4_ipsec_vti17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec01.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec01.sh index ecee370..2c7e3e7 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec01.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec02.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec02.sh index e001acf..d61c216 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec02.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec03.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec03.sh index 8ba3cf6..44a6ce3 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec03.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec04.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec04.sh index 482b297..7b82936 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec04.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec05.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec05.sh index a3c50ec..29f41df 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec05.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec06.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec06.sh index 26cf465..f3fd612 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec06.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec07.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec07.sh index c5ea75b..dcc410a 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec07.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec08.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec08.sh index a258c27..9a6de02 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec08.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec09.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec09.sh index 05d408d..64e8aec 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec09.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec10.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec10.sh index cb8ede3..8badda8 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec10.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec11.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec11.sh index ce8a6ba..2a77805 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec11.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec12.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec12.sh index da6c72d..cff1a0b 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec12.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec13.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec13.sh index 6acbb0f..545af51 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec13.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec14.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec14.sh index 63340e0..e66c10d 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec14.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec15.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec15.sh index df37b1c..3eb8da5 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec15.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec16.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec16.sh index b0d9afb..064a3ba 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec16.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec17.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec17.sh index 13187c1..80afbcd 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec17.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec18.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec18.sh index 2dbb6f4..5b0e20b 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec18.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec19.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec19.sh index 30056df..e50f03d 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec19.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec20.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec20.sh index 0cdaf53..91d8548 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec20.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec20.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec21.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec21.sh index 460b7a5..c7ece51 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec21.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec22.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec22.sh index 00263d5..2fef123 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec22.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec22.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec23.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec23.sh index cc7ef78..381fde3 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec23.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec23.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec24.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec24.sh index 15f65a4..1e5ebb5 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec24.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec24.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec25.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec25.sh index ddba3b9..45bbe1b 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec25.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec25.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec26.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec26.sh index 3cc5a11..2ac614d 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec26.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec26.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec27.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec27.sh index e928e83..4453781 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec27.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec27.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec28.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec28.sh index 11d9919..4ef7c7d 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec28.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec28.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec29.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec29.sh index e421a84..43d4e21 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec29.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec29.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec30.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec30.sh index 4e8394b..de9afe5 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec30.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec30.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec31.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec31.sh index c8e57b1..daddc6f 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec31.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec31.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec32.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec32.sh index 95407f4..e91636e 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec32.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec32.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec33.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec33.sh index 5d34fba..c682d61 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec33.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec33.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec34.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec34.sh index 868abd0..6e444db 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec34.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec34.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec35.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec35.sh index 55cab76..0369b57 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec35.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec35.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec36.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec36.sh index 39e3242..3c70763 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec36.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec36.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti01.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti01.sh index 06136fa..7765877 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti01.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti02.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti02.sh index f989f50..0b85405 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti02.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti04.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti04.sh index 1f2ef06..de2b19c 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti04.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti05.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti05.sh index 53d5545..344f574 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti05.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti06.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti06.sh index c54c9a0..1b77e5b 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti06.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti07.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti07.sh index 5fdf329..dfa104e 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti07.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti08.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti08.sh index 45b4373..0c56a75 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti08.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti09.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti09.sh index 2eb28e5..91137c9 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti09.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti10.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti10.sh index f252edb..590934e 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti10.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti11.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti11.sh index fbdbf5a..e7e040e 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti11.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti12.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti12.sh index 6a671d2..44e4b4a 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti12.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti13.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti13.sh index 75c933b..c7d4b9f 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti13.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti14.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti14.sh index 1ef3468..ac8c1a9 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti14.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti15.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti15.sh index ec2ce3d..40a1ada 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti15.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti16.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti16.sh index 5fd057e..c6c4fc2 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti16.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti17.sh b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti17.sh index 0b97073..81ac75a 100755 --- a/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti17.sh +++ b/testcase/net_stress.ipsec_tcp/ltp.net_stress.ipsec_tcp.tcp6_ipsec_vti17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec01.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec01.sh index 792579d..ccf9198 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec01.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec02.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec02.sh index e72e024..dc08bea 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec02.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec03.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec03.sh index 963d758..dc113bb 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec03.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec04.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec04.sh index 0a7b7d9..aaed1e9 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec04.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec05.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec05.sh index c20b5af..6bc6900 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec05.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec06.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec06.sh index de6274f..ed567dc 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec06.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec07.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec07.sh index a968cb7..79dfe61 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec07.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec08.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec08.sh index 9e5b1e5..b04016e 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec08.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec09.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec09.sh index ac99def..83aa1f9 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec09.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec10.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec10.sh index 165ff99..b7effcb 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec10.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec11.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec11.sh index 17fca42..61793c2 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec11.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec12.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec12.sh index a0c8a8a..1a49bf3 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec12.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec13.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec13.sh index 5814044..3219f16 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec13.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec14.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec14.sh index 763306e..3fb3b47 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec14.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec15.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec15.sh index 6967563..af5b72d 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec15.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec16.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec16.sh index 5c2a8d7..5c0f524 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec16.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec17.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec17.sh index feba2a8..fbd0317 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec17.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec18.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec18.sh index b2addb1..68f8d98 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec18.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec19.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec19.sh index c20b8ad..44604ef 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec19.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec20.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec20.sh index 033c308..56b4bf2 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec20.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec20.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec21.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec21.sh index 502ef8d..61a7d54 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec21.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec22.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec22.sh index 949a1a2..e880bcb 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec22.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec22.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec23.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec23.sh index 1ff798e..83289d7 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec23.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec23.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec24.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec24.sh index 8176270..c5604e3 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec24.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec24.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec25.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec25.sh index 5e712db..eddc768 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec25.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec25.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec26.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec26.sh index 5df7393..cac86cd 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec26.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec26.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec27.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec27.sh index 1648e7b..958355e 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec27.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec27.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec28.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec28.sh index db0e202..edf19ad 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec28.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec28.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec29.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec29.sh index bd2a009..0519ae2 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec29.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec29.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec30.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec30.sh index 1f18189..c780e93 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec30.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec30.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec31.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec31.sh index 188eb08..35761eb 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec31.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec31.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec32.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec32.sh index 5b7781c..28019c4 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec32.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec32.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec33.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec33.sh index 5e4adb1..c63a315 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec33.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec33.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec34.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec34.sh index b5a4788..bd17def 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec34.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec34.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec35.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec35.sh index 1c25a2e..71c6c03 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec35.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec35.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec36.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec36.sh index 5c4f9ae..b7f42c6 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec36.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec36.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti01.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti01.sh index 978e470..37f6960 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti01.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti02.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti02.sh index 24dff73..f122c5f 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti02.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti03.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti03.sh index 6581864..8842e81 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti03.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti04.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti04.sh index 63f9c0e..344bf5a 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti04.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti05.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti05.sh index 4e16305..88bbe05 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti05.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti06.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti06.sh index e8cd385..03ba8e6 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti06.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti07.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti07.sh index 22d5de0..eb7451f 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti07.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti08.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti08.sh index 193f64f..5983daf 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti08.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti09.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti09.sh index f18e848..4d82874 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti09.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti10.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti10.sh index 7b302af..1caa905 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti10.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti11.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti11.sh index 25a174d..ae9a8bd 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti11.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti12.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti12.sh index 1a1cd13..25165a5 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti12.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti13.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti13.sh index 50c6f55..b76fdb6 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti13.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti14.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti14.sh index 101ed75..a605c8c 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti14.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti15.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti15.sh index 5930fd4..9464e1d 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti15.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti16.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti16.sh index 398cd54..64fef7f 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti16.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti17.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti17.sh index 5d6dd04..c2f93f3 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti17.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp4_ipsec_vti17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec01.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec01.sh index 88e7441..4e97167 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec01.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec02.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec02.sh index 3ddf9d8..fc018a4 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec02.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec03.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec03.sh index 4596ef7..7e3e8db 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec03.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec04.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec04.sh index 7fda319..1f1a74b 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec04.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec05.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec05.sh index 5d85a96..d82aad4 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec05.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec06.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec06.sh index bf5c9c6..aa2719d 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec06.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec07.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec07.sh index b0f57f2..65d4cab 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec07.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec08.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec08.sh index 3303c25..bab1b89 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec08.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec09.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec09.sh index e60a2bd..3ff82e1 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec09.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec10.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec10.sh index 16f0964..7d196da 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec10.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec11.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec11.sh index 5b9a198..f70f613 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec11.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec12.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec12.sh index 571d306..ecf07c7 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec12.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec13.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec13.sh index 7d9d4db..b985812 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec13.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec14.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec14.sh index 68d9355..e5346ad 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec14.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec15.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec15.sh index d26c8d3..35a3245 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec15.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec16.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec16.sh index 73dc2fa..fed8d9d 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec16.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec17.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec17.sh index f1df644..f8db85f 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec17.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec18.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec18.sh index b3a4b88..d635d6d 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec18.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec19.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec19.sh index f50c56a..881c9ff 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec19.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec20.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec20.sh index d2d9b6f..b68ad96 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec20.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec20.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec21.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec21.sh index dbbeb79..f8527d5 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec21.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec22.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec22.sh index 08eb2d0..8f4d5ed 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec22.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec22.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec23.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec23.sh index e4f7a15..526c0d6 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec23.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec23.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec24.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec24.sh index c3959b7..70c1411 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec24.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec24.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec25.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec25.sh index 61ca007..102eb4d 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec25.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec25.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec26.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec26.sh index 64ed674..00b23f4 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec26.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec26.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec27.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec27.sh index ab1de7a..4813ee8 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec27.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec27.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec28.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec28.sh index eceda2d..91af499 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec28.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec28.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec29.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec29.sh index 3a56e42..18d9d14 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec29.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec29.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec30.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec30.sh index 0444ad5..cef4c62 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec30.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec30.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec31.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec31.sh index fcdf3a7..ea87404 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec31.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec31.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec32.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec32.sh index dd64278..baa8976 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec32.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec32.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec33.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec33.sh index d1144e6..bae634c 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec33.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec33.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec34.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec34.sh index 9663293..e96ece3 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec34.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec34.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec35.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec35.sh index c72625b..8580ed7 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec35.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec35.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec36.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec36.sh index 37378ef..c93d5c4 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec36.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec36.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti01.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti01.sh index af0eb07..f214b0d 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti01.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti02.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti02.sh index 8b1d80a..fa0610a 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti02.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti03.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti03.sh index 8fb5515..015f082 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti03.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti04.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti04.sh index d4e2e98..ffd39cd 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti04.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti05.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti05.sh index e7b1c4d..8def95d 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti05.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti06.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti06.sh index 157ad09..6ae7817 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti06.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti07.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti07.sh index e1ef99d..f80df4e 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti07.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti08.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti08.sh index 428885b..c33090b 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti08.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti09.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti09.sh index 751c9d2..dd677e8 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti09.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti10.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti10.sh index d4ada11..266570a 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti10.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti11.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti11.sh index 1fdb2a2..7ba6b1b 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti11.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti12.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti12.sh index 2c268b0..447bf81 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti12.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti13.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti13.sh index f4a7591..5f602b5 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti13.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti14.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti14.sh index 6865f86..2814c3c 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti14.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti15.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti15.sh index f44d869..9a694db 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti15.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti16.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti16.sh index 264baa3..783a880 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti16.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti17.sh b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti17.sh index caa396c..301e2c9 100755 --- a/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti17.sh +++ b/testcase/net_stress.ipsec_udp/ltp.net_stress.ipsec_udp.udp6_ipsec_vti17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-multiple-socket.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-multiple-socket.sh index 67f921c..45c1f9d 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-multiple-socket.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-multiple-socket.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-same-group.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-same-group.sh index 90d2e2b..d0900fb 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-same-group.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-same-group.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-single-socket.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-single-socket.sh index 55b579d..35fdb66 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-single-socket.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-single-socket.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-source-filter.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-source-filter.sh index 11c356c..5f7d2ba 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-source-filter.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-group-source-filter.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-pktfld01.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-pktfld01.sh index cc7a99b..f6e08bc 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-pktfld01.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-pktfld01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-pktfld02.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-pktfld02.sh index dd0a3c0..3daf328 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-pktfld02.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-pktfld02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld01.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld01.sh index db4d455..186b0ef 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld01.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld02.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld02.sh index 342d499..a7a162e 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld02.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld03.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld03.sh index 12762cc..5199d2f 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld03.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld04.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld04.sh index e5186ff..3d1140d 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld04.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld05.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld05.sh index 0895983..cc52676 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld05.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld06.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld06.sh index 249a338..0cf8ec3 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld06.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast4-queryfld06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-multiple-socket.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-multiple-socket.sh index 173c23d..9d8662a 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-multiple-socket.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-multiple-socket.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-same-group.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-same-group.sh index a846786..4997026 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-same-group.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-same-group.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-single-socket.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-single-socket.sh index 224e16b..b33ffc4 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-single-socket.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-single-socket.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-source-filter.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-source-filter.sh index 3aa5a20..88b9b71 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-source-filter.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-group-source-filter.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-pktfld01.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-pktfld01.sh index 2b3a81f..436c03a 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-pktfld01.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-pktfld01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-pktfld02.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-pktfld02.sh index 3d8c0db..e74d7de 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-pktfld02.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-pktfld02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld01.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld01.sh index c4b0f1a..9457011 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld01.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld02.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld02.sh index 7cf7bed..17997e2 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld02.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld03.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld03.sh index c37a7af..90d3272 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld03.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld04.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld04.sh index 20c7d19..88e60f9 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld04.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld05.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld05.sh index 541c50a..657e124 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld05.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld06.sh b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld06.sh index 2700537..aab8206 100755 --- a/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld06.sh +++ b/testcase/net_stress.multicast/ltp.net_stress.multicast.mcast6-queryfld06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.route/ltp.net_stress.route.route4-change-dst.sh b/testcase/net_stress.route/ltp.net_stress.route.route4-change-dst.sh index 11d562d..3ccb4c8 100755 --- a/testcase/net_stress.route/ltp.net_stress.route.route4-change-dst.sh +++ b/testcase/net_stress.route/ltp.net_stress.route.route4-change-dst.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.route/ltp.net_stress.route.route4-change-gw.sh b/testcase/net_stress.route/ltp.net_stress.route.route4-change-gw.sh index 70cf9c8..ef77a36 100755 --- a/testcase/net_stress.route/ltp.net_stress.route.route4-change-gw.sh +++ b/testcase/net_stress.route/ltp.net_stress.route.route4-change-gw.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.route/ltp.net_stress.route.route4-change-if.sh b/testcase/net_stress.route/ltp.net_stress.route.route4-change-if.sh index 676cb43..0a48853 100755 --- a/testcase/net_stress.route/ltp.net_stress.route.route4-change-if.sh +++ b/testcase/net_stress.route/ltp.net_stress.route.route4-change-if.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-dst.sh b/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-dst.sh index 184590b..9e5902a 100755 --- a/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-dst.sh +++ b/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-dst.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-gw.sh b/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-gw.sh index 930f39d..c6623b4 100755 --- a/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-gw.sh +++ b/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-gw.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-if.sh b/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-if.sh index 40fa954..65def9f 100755 --- a/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-if.sh +++ b/testcase/net_stress.route/ltp.net_stress.route.route4-change-netlink-if.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.route/ltp.net_stress.route.route4-redirect.sh b/testcase/net_stress.route/ltp.net_stress.route.route4-redirect.sh index 34875d1..5b72b4a 100755 --- a/testcase/net_stress.route/ltp.net_stress.route.route4-redirect.sh +++ b/testcase/net_stress.route/ltp.net_stress.route.route4-redirect.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.route/ltp.net_stress.route.route6-change-dst.sh b/testcase/net_stress.route/ltp.net_stress.route.route6-change-dst.sh index adeceea..0c1145f 100755 --- a/testcase/net_stress.route/ltp.net_stress.route.route6-change-dst.sh +++ b/testcase/net_stress.route/ltp.net_stress.route.route6-change-dst.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.route/ltp.net_stress.route.route6-change-gw.sh b/testcase/net_stress.route/ltp.net_stress.route.route6-change-gw.sh index 9ac26cf..24edca1 100755 --- a/testcase/net_stress.route/ltp.net_stress.route.route6-change-gw.sh +++ b/testcase/net_stress.route/ltp.net_stress.route.route6-change-gw.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.route/ltp.net_stress.route.route6-change-if.sh b/testcase/net_stress.route/ltp.net_stress.route.route6-change-if.sh index b13d098..53707bf 100755 --- a/testcase/net_stress.route/ltp.net_stress.route.route6-change-if.sh +++ b/testcase/net_stress.route/ltp.net_stress.route.route6-change-if.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-dst.sh b/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-dst.sh index 4736ef6..a13d061 100755 --- a/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-dst.sh +++ b/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-dst.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-gw.sh b/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-gw.sh index a4cf7bb..70295e7 100755 --- a/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-gw.sh +++ b/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-gw.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-if.sh b/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-if.sh index 3a78ef7..8332525 100755 --- a/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-if.sh +++ b/testcase/net_stress.route/ltp.net_stress.route.route6-change-netlink-if.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/net_stress.route/ltp.net_stress.route.route6-redirect.sh b/testcase/net_stress.route/ltp.net_stress.route.route6-redirect.sh index e423353..aa0ba5f 100755 --- a/testcase/net_stress.route/ltp.net_stress.route.route6-redirect.sh +++ b/testcase/net_stress.route/ltp.net_stress.route.route6-redirect.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/nptl/ltp.nptl.nptl01.sh b/testcase/nptl/ltp.nptl.nptl01.sh index 931c171..e56d137 100755 --- a/testcase/nptl/ltp.nptl.nptl01.sh +++ b/testcase/nptl/ltp.nptl.nptl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.migrate_pages01.sh b/testcase/numa/ltp.numa.migrate_pages01.sh index c485bab..6697735 100755 --- a/testcase/numa/ltp.numa.migrate_pages01.sh +++ b/testcase/numa/ltp.numa.migrate_pages01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.migrate_pages02.sh b/testcase/numa/ltp.numa.migrate_pages02.sh index 7025243..1fe4a78 100755 --- a/testcase/numa/ltp.numa.migrate_pages02.sh +++ b/testcase/numa/ltp.numa.migrate_pages02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.migrate_pages03.sh b/testcase/numa/ltp.numa.migrate_pages03.sh index 998d6b6..2e093d5 100755 --- a/testcase/numa/ltp.numa.migrate_pages03.sh +++ b/testcase/numa/ltp.numa.migrate_pages03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.move_pages01.sh b/testcase/numa/ltp.numa.move_pages01.sh index a9ab089..dd088ae 100755 --- a/testcase/numa/ltp.numa.move_pages01.sh +++ b/testcase/numa/ltp.numa.move_pages01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.move_pages02.sh b/testcase/numa/ltp.numa.move_pages02.sh index dc565d4..583fede 100755 --- a/testcase/numa/ltp.numa.move_pages02.sh +++ b/testcase/numa/ltp.numa.move_pages02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.move_pages03.sh b/testcase/numa/ltp.numa.move_pages03.sh index 4bf9252..fe3a6c1 100755 --- a/testcase/numa/ltp.numa.move_pages03.sh +++ b/testcase/numa/ltp.numa.move_pages03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.move_pages04.sh b/testcase/numa/ltp.numa.move_pages04.sh index f71df02..3365c34 100755 --- a/testcase/numa/ltp.numa.move_pages04.sh +++ b/testcase/numa/ltp.numa.move_pages04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.move_pages05.sh b/testcase/numa/ltp.numa.move_pages05.sh index 23ff5bc..bad378d 100755 --- a/testcase/numa/ltp.numa.move_pages05.sh +++ b/testcase/numa/ltp.numa.move_pages05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.move_pages06.sh b/testcase/numa/ltp.numa.move_pages06.sh index e53a8e5..718e5e7 100755 --- a/testcase/numa/ltp.numa.move_pages06.sh +++ b/testcase/numa/ltp.numa.move_pages06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.move_pages07.sh b/testcase/numa/ltp.numa.move_pages07.sh index 2a0eafe..ddfbd48 100755 --- a/testcase/numa/ltp.numa.move_pages07.sh +++ b/testcase/numa/ltp.numa.move_pages07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.move_pages09.sh b/testcase/numa/ltp.numa.move_pages09.sh index 18a5cb8..a775737 100755 --- a/testcase/numa/ltp.numa.move_pages09.sh +++ b/testcase/numa/ltp.numa.move_pages09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.move_pages10.sh b/testcase/numa/ltp.numa.move_pages10.sh index 5d7fc29..19a0768 100755 --- a/testcase/numa/ltp.numa.move_pages10.sh +++ b/testcase/numa/ltp.numa.move_pages10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.move_pages11.sh b/testcase/numa/ltp.numa.move_pages11.sh index 8e518ac..6a49185 100755 --- a/testcase/numa/ltp.numa.move_pages11.sh +++ b/testcase/numa/ltp.numa.move_pages11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.move_pages12.sh b/testcase/numa/ltp.numa.move_pages12.sh index 764f434..91cc2e7 100755 --- a/testcase/numa/ltp.numa.move_pages12.sh +++ b/testcase/numa/ltp.numa.move_pages12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.numa_testcases.sh b/testcase/numa/ltp.numa.numa_testcases.sh index b9b0056..132ac41 100755 --- a/testcase/numa/ltp.numa.numa_testcases.sh +++ b/testcase/numa/ltp.numa.numa_testcases.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.set_mempolicy01.sh b/testcase/numa/ltp.numa.set_mempolicy01.sh index 9deddfd..b66a232 100755 --- a/testcase/numa/ltp.numa.set_mempolicy01.sh +++ b/testcase/numa/ltp.numa.set_mempolicy01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.set_mempolicy02.sh b/testcase/numa/ltp.numa.set_mempolicy02.sh index 23ae37e..d45a033 100755 --- a/testcase/numa/ltp.numa.set_mempolicy02.sh +++ b/testcase/numa/ltp.numa.set_mempolicy02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.set_mempolicy03.sh b/testcase/numa/ltp.numa.set_mempolicy03.sh index dd2a72d..4868895 100755 --- a/testcase/numa/ltp.numa.set_mempolicy03.sh +++ b/testcase/numa/ltp.numa.set_mempolicy03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.set_mempolicy04.sh b/testcase/numa/ltp.numa.set_mempolicy04.sh index 3da6aad..82f3511 100755 --- a/testcase/numa/ltp.numa.set_mempolicy04.sh +++ b/testcase/numa/ltp.numa.set_mempolicy04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/numa/ltp.numa.set_mempolicy05.sh b/testcase/numa/ltp.numa.set_mempolicy05.sh index 15afea2..9cb72e9 100755 --- a/testcase/numa/ltp.numa.set_mempolicy05.sh +++ b/testcase/numa/ltp.numa.set_mempolicy05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/power_management_tests/ltp.power_management_tests.runpwtests01.sh b/testcase/power_management_tests/ltp.power_management_tests.runpwtests01.sh index 0fa5045..760958a 100755 --- a/testcase/power_management_tests/ltp.power_management_tests.runpwtests01.sh +++ b/testcase/power_management_tests/ltp.power_management_tests.runpwtests01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/power_management_tests/ltp.power_management_tests.runpwtests02.sh b/testcase/power_management_tests/ltp.power_management_tests.runpwtests02.sh index 8325e1c..365e184 100755 --- a/testcase/power_management_tests/ltp.power_management_tests.runpwtests02.sh +++ b/testcase/power_management_tests/ltp.power_management_tests.runpwtests02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/power_management_tests/ltp.power_management_tests.runpwtests03.sh b/testcase/power_management_tests/ltp.power_management_tests.runpwtests03.sh index 0218614..21b908f 100755 --- a/testcase/power_management_tests/ltp.power_management_tests.runpwtests03.sh +++ b/testcase/power_management_tests/ltp.power_management_tests.runpwtests03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/power_management_tests/ltp.power_management_tests.runpwtests04.sh b/testcase/power_management_tests/ltp.power_management_tests.runpwtests04.sh index 71ac3cf..47342e4 100755 --- a/testcase/power_management_tests/ltp.power_management_tests.runpwtests04.sh +++ b/testcase/power_management_tests/ltp.power_management_tests.runpwtests04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/power_management_tests/ltp.power_management_tests.runpwtests06.sh b/testcase/power_management_tests/ltp.power_management_tests.runpwtests06.sh index 980fb2e..562fdd5 100755 --- a/testcase/power_management_tests/ltp.power_management_tests.runpwtests06.sh +++ b/testcase/power_management_tests/ltp.power_management_tests.runpwtests06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive01.sh b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive01.sh index 9aab222..04a8ded 100755 --- a/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive01.sh +++ b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive02.sh b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive02.sh index 9145552..ae5d801 100755 --- a/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive02.sh +++ b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive03.sh b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive03.sh index f4c0362..458905e 100755 --- a/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive03.sh +++ b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive04.sh b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive04.sh index 5c9ff45..5f24275 100755 --- a/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive04.sh +++ b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive05.sh b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive05.sh index eadac4f..e5621c4 100755 --- a/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive05.sh +++ b/testcase/power_management_tests_exclusive/ltp.power_management_tests_exclusive.runpwtests_exclusive05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/pty/ltp.pty.hangup01.sh b/testcase/pty/ltp.pty.hangup01.sh index 3fd56d0..c5d5494 100755 --- a/testcase/pty/ltp.pty.hangup01.sh +++ b/testcase/pty/ltp.pty.hangup01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/pty/ltp.pty.ptem01.sh b/testcase/pty/ltp.pty.ptem01.sh index aa80b3c..40bfaf8 100755 --- a/testcase/pty/ltp.pty.ptem01.sh +++ b/testcase/pty/ltp.pty.ptem01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/pty/ltp.pty.pty01.sh b/testcase/pty/ltp.pty.pty01.sh index 103d19a..1dc79aa 100755 --- a/testcase/pty/ltp.pty.pty01.sh +++ b/testcase/pty/ltp.pty.pty01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/pty/ltp.pty.pty02.sh b/testcase/pty/ltp.pty.pty02.sh index 09b0749..b11aeba 100755 --- a/testcase/pty/ltp.pty.pty02.sh +++ b/testcase/pty/ltp.pty.pty02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/pty/ltp.pty.pty03.sh b/testcase/pty/ltp.pty.pty03.sh index 4eb8512..83c05a7 100755 --- a/testcase/pty/ltp.pty.pty03.sh +++ b/testcase/pty/ltp.pty.pty03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/pty/ltp.pty.pty04.sh b/testcase/pty/ltp.pty.pty04.sh index e21b269..ae51cc4 100755 --- a/testcase/pty/ltp.pty.pty04.sh +++ b/testcase/pty/ltp.pty.pty04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/pty/ltp.pty.pty05.sh b/testcase/pty/ltp.pty.pty05.sh index b2c2cf1..4c9b8a8 100755 --- a/testcase/pty/ltp.pty.pty05.sh +++ b/testcase/pty/ltp.pty.pty05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/pty/ltp.pty.pty06.sh b/testcase/pty/ltp.pty.pty06.sh index da4b9f0..62a23c6 100755 --- a/testcase/pty/ltp.pty.pty06.sh +++ b/testcase/pty/ltp.pty.pty06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/pty/ltp.pty.pty07.sh b/testcase/pty/ltp.pty.pty07.sh index a8d641b..ecd6737 100755 --- a/testcase/pty/ltp.pty.pty07.sh +++ b/testcase/pty/ltp.pty.pty07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/s390x_tests/ltp.s390x_tests.vmcp.sh b/testcase/s390x_tests/ltp.s390x_tests.vmcp.sh index 98060a8..0468eb3 100755 --- a/testcase/s390x_tests/ltp.s390x_tests.vmcp.sh +++ b/testcase/s390x_tests/ltp.s390x_tests.vmcp.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/sched/ltp.sched.autogroup01.sh b/testcase/sched/ltp.sched.autogroup01.sh index 72fcb2b..ed92bef 100755 --- a/testcase/sched/ltp.sched.autogroup01.sh +++ b/testcase/sched/ltp.sched.autogroup01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/sched/ltp.sched.cfs_bandwidth01.sh b/testcase/sched/ltp.sched.cfs_bandwidth01.sh index 8db1654..7db8a89 100755 --- a/testcase/sched/ltp.sched.cfs_bandwidth01.sh +++ b/testcase/sched/ltp.sched.cfs_bandwidth01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/sched/ltp.sched.hackbench01.sh b/testcase/sched/ltp.sched.hackbench01.sh index 38955cc..75bda4e 100755 --- a/testcase/sched/ltp.sched.hackbench01.sh +++ b/testcase/sched/ltp.sched.hackbench01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/sched/ltp.sched.hackbench02.sh b/testcase/sched/ltp.sched.hackbench02.sh index fb16324..dbbf34c 100755 --- a/testcase/sched/ltp.sched.hackbench02.sh +++ b/testcase/sched/ltp.sched.hackbench02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/sched/ltp.sched.proc_sched_rt01.sh b/testcase/sched/ltp.sched.proc_sched_rt01.sh index d28edae..11740a6 100755 --- a/testcase/sched/ltp.sched.proc_sched_rt01.sh +++ b/testcase/sched/ltp.sched.proc_sched_rt01.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/sched/ltp.sched.pth_str01.sh b/testcase/sched/ltp.sched.pth_str01.sh index 88d6046..89870a9 100755 --- a/testcase/sched/ltp.sched.pth_str01.sh +++ b/testcase/sched/ltp.sched.pth_str01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/sched/ltp.sched.pth_str02.sh b/testcase/sched/ltp.sched.pth_str02.sh index 537a174..8417a86 100755 --- a/testcase/sched/ltp.sched.pth_str02.sh +++ b/testcase/sched/ltp.sched.pth_str02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/sched/ltp.sched.pth_str03.sh b/testcase/sched/ltp.sched.pth_str03.sh index d103e8e..19309a5 100755 --- a/testcase/sched/ltp.sched.pth_str03.sh +++ b/testcase/sched/ltp.sched.pth_str03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/sched/ltp.sched.sched_cli_serv.sh b/testcase/sched/ltp.sched.sched_cli_serv.sh index 96d4a7f..b300c81 100755 --- a/testcase/sched/ltp.sched.sched_cli_serv.sh +++ b/testcase/sched/ltp.sched.sched_cli_serv.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/sched/ltp.sched.sched_stress.sh b/testcase/sched/ltp.sched.sched_stress.sh index 9df76a9..ea21a80 100755 --- a/testcase/sched/ltp.sched.sched_stress.sh +++ b/testcase/sched/ltp.sched.sched_stress.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/sched/ltp.sched.starvation.sh b/testcase/sched/ltp.sched.starvation.sh index c174848..2a7adce 100755 --- a/testcase/sched/ltp.sched.starvation.sh +++ b/testcase/sched/ltp.sched.starvation.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/sched/ltp.sched.time-schedule01.sh b/testcase/sched/ltp.sched.time-schedule01.sh index 759762c..25c4b76 100755 --- a/testcase/sched/ltp.sched.time-schedule01.sh +++ b/testcase/sched/ltp.sched.time-schedule01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/sched/ltp.sched.trace_sched01.sh b/testcase/sched/ltp.sched.trace_sched01.sh index d905bbf..30574fb 100755 --- a/testcase/sched/ltp.sched.trace_sched01.sh +++ b/testcase/sched/ltp.sched.trace_sched01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf101.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf101.sh index f326754..5f84f1d 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf101.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf101.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf102.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf102.sh index 11813c8..8048552 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf102.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf102.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf103.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf103.sh index b3248d8..fd7f1e8 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf103.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf103.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf104.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf104.sh index b88a58e..6d140a2 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf104.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf104.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf105.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf105.sh index 7f69db8..0690d52 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf105.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf105.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf106.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf106.sh index 9dde936..c3dabd1 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf106.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf106.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf107.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf107.sh index db3db96..6f66043 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf107.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf107.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf108.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf108.sh index 1e4dff9..bc9ab3e 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf108.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf108.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf109.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf109.sh index 0d24b5a..c027920 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf109.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf109.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf110.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf110.sh index 8c97474..b192b2c 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf110.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf110.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf111.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf111.sh index 4a0bded..a4713c1 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf111.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf111.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf112.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf112.sh index e37dfcc..3095e05 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf112.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf112.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf113.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf113.sh index 9ffb1fa..31a4722 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf113.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf113.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf114.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf114.sh index ae61663..13118e5 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf114.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf114.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf115.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf115.sh index 504916a..f3056c4 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf115.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf115.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf116.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf116.sh index 98155bc..ede468b 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf116.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf116.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf117.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf117.sh index e9df4e1..6c7da2c 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf117.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf117.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf118.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf118.sh index a1e44fe..59b70ae 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf118.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf118.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf119.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf119.sh index c1b204c..fc3356b 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf119.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf119.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf120.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf120.sh index fef21ef..e3f8b75 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf120.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf120.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf121.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf121.sh index 9d109ad..6f00a73 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf121.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf121.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf122.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf122.sh index 3aed4c8..ca1b193 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf122.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf122.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf123.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf123.sh index 5183036..0998215 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf123.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf123.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf124.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf124.sh index 96f6ec9..9764970 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf124.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf124.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf125.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf125.sh index 5d16f4f..ea4742a 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf125.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf125.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf126.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf126.sh index 97f418b..25784f0 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf126.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf126.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf127.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf127.sh index 5fa08f2..4d06fd6 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf127.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf127.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf128.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf128.sh index 92a2d73..b660b0c 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf128.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf128.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf129.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf129.sh index 0806f36..d8dd029 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf129.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf129.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf130.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf130.sh index c18e232..10236ad 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf130.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf130.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf201.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf201.sh index f3e6cae..f1b6135 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf201.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf201.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf202.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf202.sh index e5ef85d..d3ce616 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf202.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf202.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf203.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf203.sh index bf676c3..7d58785 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf203.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf203.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf204.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf204.sh index 6fb184b..f5761a5 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf204.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf204.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf205.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf205.sh index 8479a31..cd1b876 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf205.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf205.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf206.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf206.sh index 4404dc9..81a10a3 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf206.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf206.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf207.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf207.sh index 88f547e..09e8f4c 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf207.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf207.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf208.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf208.sh index 83f7ddc..4eda62c 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf208.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf208.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf209.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf209.sh index 40487d9..dd8d42e 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf209.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf209.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf210.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf210.sh index 9ecfc50..6515361 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf210.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf210.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf211.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf211.sh index c052339..eb48084 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf211.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf211.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf212.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf212.sh index 4c9465a..96091c6 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf212.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf212.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf213.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf213.sh index e492027..a1d7a44 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf213.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf213.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf214.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf214.sh index 9348372..abec9de 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf214.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf214.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf215.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf215.sh index 07b4cc6..ae3a9fa 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf215.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf215.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf216.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf216.sh index 112f00d..b1bb2ca 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf216.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf216.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf217.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf217.sh index 8c5d6e4..15b1976 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf217.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf217.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf218.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf218.sh index 3b16f49..04518ef 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf218.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf218.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf219.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf219.sh index 57b54ba..072ca74 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf219.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf219.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf220.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf220.sh index 90d6fee..40eab51 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf220.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf220.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf221.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf221.sh index 69c28c4..68e2865 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf221.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf221.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf222.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf222.sh index b339008..c9eba95 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf222.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf222.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf223.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf223.sh index 19ff778..fe2b9ae 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf223.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf223.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf224.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf224.sh index 9bcaef3..d18a76c 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf224.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf224.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf225.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf225.sh index b85d919..ff1e67a 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf225.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf225.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf226.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf226.sh index 069f429..42012e6 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf226.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf226.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf227.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf227.sh index 4d5351d..defc1c1 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf227.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf227.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf228.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf228.sh index 9368b5a..37cc429 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf228.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf228.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf229.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf229.sh index ccaf826..710e451 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf229.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf229.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf230.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf230.sh index 3c83a19..2cdca7d 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf230.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf230.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf301.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf301.sh index 2901bc0..c1dc832 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf301.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf301.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf302.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf302.sh index a3bb7ce..f0c6716 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf302.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf302.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf303.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf303.sh index 9aed52c..0f18843 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf303.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf303.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf304.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf304.sh index 7ef7abc..86d8d02 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf304.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf304.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf305.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf305.sh index 686361e..40dfc82 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf305.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf305.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf306.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf306.sh index f3bde62..b419b20 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf306.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf306.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf307.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf307.sh index 60c9334..13a872e 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf307.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf307.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf308.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf308.sh index 360c673..f3fda15 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf308.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf308.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf309.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf309.sh index 03727af..bf3cda6 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf309.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf309.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf310.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf310.sh index 9d0174f..c960466 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf310.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf310.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf311.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf311.sh index 01c2b61..95dfe10 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf311.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf311.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf312.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf312.sh index af0433d..20b4c08 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf312.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf312.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf313.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf313.sh index 9e38d75..dbd501b 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf313.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf313.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf314.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf314.sh index 9b8f0ce..1d92a80 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf314.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf314.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf315.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf315.sh index f4522ba..15324bb 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf315.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf315.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf316.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf316.sh index 2dd9dea..355cd0e 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf316.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf316.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf317.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf317.sh index 19b7e9c..7cd3e46 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf317.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf317.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf318.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf318.sh index 82c7734..fec5f0b 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf318.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf318.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf319.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf319.sh index 1d46e4e..1be8afd 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf319.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf319.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf320.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf320.sh index 1d7281b..93cd750 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf320.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf320.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf321.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf321.sh index 6033f49..da7011f 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf321.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf321.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf322.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf322.sh index 1787f53..b233fe3 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf322.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf322.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf323.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf323.sh index be136ca..27b5120 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf323.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf323.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf324.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf324.sh index c08616f..95ea3fb 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf324.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf324.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf325.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf325.sh index 8e8f078..177d433 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf325.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf325.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf326.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf326.sh index 909b555..81f7672 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf326.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf326.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf327.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf327.sh index 19b0749..8a4440b 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf327.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf327.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf328.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf328.sh index 0e068d2..64fafae 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf328.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf328.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf329.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf329.sh index c4314a4..f467851 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf329.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf329.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf330.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf330.sh index 7859397..84c83c8 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf330.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf330.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf701.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf701.sh index b85ed5c..a81421b 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf701.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf701.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf702.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf702.sh index 71b09b0..6f964c3 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf702.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf702.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf703.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf703.sh index ffdd5d6..a3e0daf 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf703.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf703.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf704.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf704.sh index 5bb4d37..6d9a589 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf704.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf704.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf705.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf705.sh index 9854dc0..d72c8ab 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf705.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf705.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf706.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf706.sh index c296169..b428029 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf706.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf706.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf707.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf707.sh index 38d194f..e6177d3 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf707.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf707.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf708.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf708.sh index a420687..b880c0f 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf708.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf708.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf709.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf709.sh index 525f926..8e5eeaf 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf709.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf709.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf710.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf710.sh index de44819..e96950c 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf710.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf710.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf711.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf711.sh index 3810115..7aa4358 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf711.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf711.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf712.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf712.sh index 3094cca..57b0f31 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf712.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf712.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf713.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf713.sh index f2da391..64cd10f 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf713.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf713.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf714.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf714.sh index 6498624..647323e 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf714.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf714.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf715.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf715.sh index 90e4bf7..fbbdc1c 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf715.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf715.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf716.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf716.sh index 6d15b0e..b2da2ec 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf716.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf716.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf717.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf717.sh index 3e505f5..3ce0bf2 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf717.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf717.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf718.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf718.sh index ec513bd..1e40aad 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf718.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf718.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf719.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf719.sh index 773402b..34accb3 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf719.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf719.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf720.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf720.sh index 8305771..436e1e0 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf720.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf720.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf721.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf721.sh index dee3ac1..1f0181f 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf721.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf721.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf722.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf722.sh index 79e6dad..156f14e 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf722.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf722.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf723.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf723.sh index bad573f..0e4c2cd 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf723.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf723.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf724.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf724.sh index 005ef7f..057c84f 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf724.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf724.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf725.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf725.sh index 7717e73..5719220 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf725.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf725.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf726.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf726.sh index 8977640..131369b 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf726.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf726.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf727.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf727.sh index 7d5cad7..4769ae9 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf727.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf727.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf728.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf728.sh index 0dca328..cd92c8f 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf728.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf728.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf729.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf729.sh index b05b6c3..d2d74bd 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf729.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf729.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf730.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf730.sh index d04299f..0789885 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf730.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.gf730.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest01.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest01.sh index ff7ffc6..f9b0719 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest01.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest01.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest02.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest02.sh index 6eeab98..ee2f54d 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest02.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest02.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest03.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest03.sh index 73b3f8c..30f9822 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest03.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest03.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest04.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest04.sh index 6ee5671..83035c0 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest04.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest04.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest05.sh b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest05.sh index b906446..2079d14 100755 --- a/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest05.sh +++ b/testcase/scsi_debug.part1/ltp.scsi_debug.part1.rwtest05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smack/ltp.smack.smack_file_access.sh b/testcase/smack/ltp.smack.smack_file_access.sh index 22a4518..02fd76a 100755 --- a/testcase/smack/ltp.smack.smack_file_access.sh +++ b/testcase/smack/ltp.smack.smack_file_access.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smack/ltp.smack.smack_set_ambient.sh b/testcase/smack/ltp.smack.smack_set_ambient.sh index 6cd911f..7fc5a05 100755 --- a/testcase/smack/ltp.smack.smack_set_ambient.sh +++ b/testcase/smack/ltp.smack.smack_set_ambient.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smack/ltp.smack.smack_set_cipso.sh b/testcase/smack/ltp.smack.smack_set_cipso.sh index e29a482..33dd917 100755 --- a/testcase/smack/ltp.smack.smack_set_cipso.sh +++ b/testcase/smack/ltp.smack.smack_set_cipso.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smack/ltp.smack.smack_set_current.sh b/testcase/smack/ltp.smack.smack_set_current.sh index bf9a626..c26fffe 100755 --- a/testcase/smack/ltp.smack.smack_set_current.sh +++ b/testcase/smack/ltp.smack.smack_set_current.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smack/ltp.smack.smack_set_direct.sh b/testcase/smack/ltp.smack.smack_set_direct.sh index ac1ba3b..65c89b0 100755 --- a/testcase/smack/ltp.smack.smack_set_direct.sh +++ b/testcase/smack/ltp.smack.smack_set_direct.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smack/ltp.smack.smack_set_doi.sh b/testcase/smack/ltp.smack.smack_set_doi.sh index 57b774c..7920c42 100755 --- a/testcase/smack/ltp.smack.smack_set_doi.sh +++ b/testcase/smack/ltp.smack.smack_set_doi.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smack/ltp.smack.smack_set_load.sh b/testcase/smack/ltp.smack.smack_set_load.sh index d349819..7c514e1 100755 --- a/testcase/smack/ltp.smack.smack_set_load.sh +++ b/testcase/smack/ltp.smack.smack_set_load.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smack/ltp.smack.smack_set_netlabel.sh b/testcase/smack/ltp.smack.smack_set_netlabel.sh index 8970ed6..e7da357 100755 --- a/testcase/smack/ltp.smack.smack_set_netlabel.sh +++ b/testcase/smack/ltp.smack.smack_set_netlabel.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smack/ltp.smack.smack_set_onlycap.sh b/testcase/smack/ltp.smack.smack_set_onlycap.sh index 7ef3857..5d70150 100755 --- a/testcase/smack/ltp.smack.smack_set_onlycap.sh +++ b/testcase/smack/ltp.smack.smack_set_onlycap.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smack/ltp.smack.smack_set_socket_labels.sh b/testcase/smack/ltp.smack.smack_set_socket_labels.sh index bb4f1c8..738fd35 100755 --- a/testcase/smack/ltp.smack.smack_set_socket_labels.sh +++ b/testcase/smack/ltp.smack.smack_set_socket_labels.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smoketest/ltp.smoketest.access01.sh b/testcase/smoketest/ltp.smoketest.access01.sh index f405c5b..42428ab 100755 --- a/testcase/smoketest/ltp.smoketest.access01.sh +++ b/testcase/smoketest/ltp.smoketest.access01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smoketest/ltp.smoketest.chdir01.sh b/testcase/smoketest/ltp.smoketest.chdir01.sh index cefe461..e3f388b 100755 --- a/testcase/smoketest/ltp.smoketest.chdir01.sh +++ b/testcase/smoketest/ltp.smoketest.chdir01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smoketest/ltp.smoketest.df01_sh.sh b/testcase/smoketest/ltp.smoketest.df01_sh.sh index a585e42..f0ecc54 100755 --- a/testcase/smoketest/ltp.smoketest.df01_sh.sh +++ b/testcase/smoketest/ltp.smoketest.df01_sh.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smoketest/ltp.smoketest.fork01.sh b/testcase/smoketest/ltp.smoketest.fork01.sh index b64db7c..4b7335a 100755 --- a/testcase/smoketest/ltp.smoketest.fork01.sh +++ b/testcase/smoketest/ltp.smoketest.fork01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smoketest/ltp.smoketest.macsec02.sh b/testcase/smoketest/ltp.smoketest.macsec02.sh index 90f1fe3..2fe1c4d 100755 --- a/testcase/smoketest/ltp.smoketest.macsec02.sh +++ b/testcase/smoketest/ltp.smoketest.macsec02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smoketest/ltp.smoketest.ping602.sh b/testcase/smoketest/ltp.smoketest.ping602.sh index 2d2ec66..9d60253 100755 --- a/testcase/smoketest/ltp.smoketest.ping602.sh +++ b/testcase/smoketest/ltp.smoketest.ping602.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smoketest/ltp.smoketest.rename01A.sh b/testcase/smoketest/ltp.smoketest.rename01A.sh index 7c43f0e..755283b 100755 --- a/testcase/smoketest/ltp.smoketest.rename01A.sh +++ b/testcase/smoketest/ltp.smoketest.rename01A.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smoketest/ltp.smoketest.shell_test01.sh b/testcase/smoketest/ltp.smoketest.shell_test01.sh index e0ffc9c..1bf5858 100755 --- a/testcase/smoketest/ltp.smoketest.shell_test01.sh +++ b/testcase/smoketest/ltp.smoketest.shell_test01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smoketest/ltp.smoketest.splice02.sh b/testcase/smoketest/ltp.smoketest.splice02.sh index 0bc0fea..90a407c 100755 --- a/testcase/smoketest/ltp.smoketest.splice02.sh +++ b/testcase/smoketest/ltp.smoketest.splice02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smoketest/ltp.smoketest.stat04.sh b/testcase/smoketest/ltp.smoketest.stat04.sh index 6a15f02..ae52f3b 100755 --- a/testcase/smoketest/ltp.smoketest.stat04.sh +++ b/testcase/smoketest/ltp.smoketest.stat04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smoketest/ltp.smoketest.symlink01.sh b/testcase/smoketest/ltp.smoketest.symlink01.sh index ccced47..0bc052b 100755 --- a/testcase/smoketest/ltp.smoketest.symlink01.sh +++ b/testcase/smoketest/ltp.smoketest.symlink01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smoketest/ltp.smoketest.time01.sh b/testcase/smoketest/ltp.smoketest.time01.sh index 3164217..0a45af7 100755 --- a/testcase/smoketest/ltp.smoketest.time01.sh +++ b/testcase/smoketest/ltp.smoketest.time01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smoketest/ltp.smoketest.utime07.sh b/testcase/smoketest/ltp.smoketest.utime07.sh index a92c988..f6dd4bb 100755 --- a/testcase/smoketest/ltp.smoketest.utime07.sh +++ b/testcase/smoketest/ltp.smoketest.utime07.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/smoketest/ltp.smoketest.wait02.sh b/testcase/smoketest/ltp.smoketest.wait02.sh index 5e8a314..3fb57fb 100755 --- a/testcase/smoketest/ltp.smoketest.wait02.sh +++ b/testcase/smoketest/ltp.smoketest.wait02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/smoketest/ltp.smoketest.write01.sh b/testcase/smoketest/ltp.smoketest.write01.sh index e61b189..7ca311f 100755 --- a/testcase/smoketest/ltp.smoketest.write01.sh +++ b/testcase/smoketest/ltp.smoketest.write01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl01.sh index 326edd3..9de5e96 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl01.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl02.sh index 58292eb..389c32c 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl02.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl03.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl03.sh index 7f357bd..2f4b2b9 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl03.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl04.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl04.sh index 1218e42..4134324 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl04.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl05.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl05.sh index 11e7220..cc34880 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl05.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl06.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl06.sh index 6fcaf43..e5cbb73 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl06.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl12.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl12.sh index 9b1cc04..7d07baf 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl12.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgctl12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget01.sh index c7449ae..a627da7 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget01.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget02.sh index 28b45ab..7689b81 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget02.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget03.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget03.sh index 2b64b36..87562a7 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget03.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget04.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget04.sh index 376dccb..5afafe4 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget04.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget05.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget05.sh index 3cb030a..6bafa02 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget05.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgget05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv01.sh index 6c7bc95..24418b2 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv01.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv02.sh index dbbd0ec..53d5d4b 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv02.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv03.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv03.sh index 3d2bd8d..cfcc231 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv03.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv05.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv05.sh index 3ea696c..3e06d51 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv05.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv06.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv06.sh index f58cdfa..a3dcd87 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv06.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv07.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv07.sh index b24dbcd..2b57fb4 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv07.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv08.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv08.sh index 008e244..c7b6221 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv08.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgrcv08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd01.sh index 14033b6..339e059 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd01.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd02.sh index 9c78d44..df351eb 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd02.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd05.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd05.sh index 351da52..e6745ae 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd05.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd06.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd06.sh index 0f5dc4c..f2c1df8 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd06.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgsnd06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgstress01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgstress01.sh index b38ee03..0c7d071 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.msgstress01.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.msgstress01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl01.sh index 5c30f64..b12c137 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl01.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl02.sh index f1b24ba..e33efd7 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl02.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl03.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl03.sh index 4a5b511..98b41d0 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl03.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl04.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl04.sh index a607fb0..ac85656 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl04.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl05.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl05.sh index e6c04b3..7332838 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl05.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl06.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl06.sh index 4bf28b3..ed7f5ad 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl06.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl07.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl07.sh index c220516..8a78c50 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl07.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl08.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl08.sh index ef2cf37..6037204 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl08.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl09.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl09.sh index 72ea979..150e1d8 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl09.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semctl09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semget01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semget01.sh index aa602b0..4302d52 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.semget01.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semget01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semget02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semget02.sh index bc5cfeb..00907d6 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.semget02.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semget02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semget05.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semget05.sh index 0fb0e53..715896a 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.semget05.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semget05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semop01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semop01.sh index d15c39e..704476c 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.semop01.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semop01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semop02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semop02.sh index 70687b6..0ab9ef8 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.semop02.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semop02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.semop03.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.semop03.sh index 7f78438..d7e939b 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.semop03.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.semop03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat01.sh index e4925fd..6a9209d 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat01.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat02.sh index d59ad4b..62ece57 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat02.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat04.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat04.sh index 513d4cc..04ed02d 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat04.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmat04.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl01.sh index 8884e23..a9fd480 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl01.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl02.sh index 40c0d84..1e5e8d5 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl02.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl03.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl03.sh index 27ed405..ba1ec62 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl03.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl04.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl04.sh index acc3bb7..3c0bcc2 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl04.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl05.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl05.sh index 4e2d2fb..f872576 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl05.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl06.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl06.sh index e1424d7..c68b0c2 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl06.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl07.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl07.sh index 654534a..c4d2439 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl07.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl08.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl08.sh index 3d0e084..2376903 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl08.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmctl08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt01.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt01.sh index 954cb73..89a026c 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt01.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt02.sh index 0fa240c..4c418f5 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt02.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmdt02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget02.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget02.sh index 2c2c601..f640075 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget02.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget03.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget03.sh index 69622da..e61e4ca 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget03.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget04.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget04.sh index 112f8e6..bea4ddf 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget04.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget05.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget05.sh index 9eb60ce..c4135f0 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget05.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget06.sh b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget06.sh index 167f291..1e8d64b 100755 --- a/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget06.sh +++ b/testcase/syscalls-ipc/ltp.syscalls-ipc.shmget06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.abort01.sh b/testcase/syscalls/ltp.syscalls.abort01.sh index c02e658..8052ab8 100755 --- a/testcase/syscalls/ltp.syscalls.abort01.sh +++ b/testcase/syscalls/ltp.syscalls.abort01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.accept01.sh b/testcase/syscalls/ltp.syscalls.accept01.sh index 6dfc1c8..b778417 100755 --- a/testcase/syscalls/ltp.syscalls.accept01.sh +++ b/testcase/syscalls/ltp.syscalls.accept01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.accept02.sh b/testcase/syscalls/ltp.syscalls.accept02.sh index 1011401..acee94a 100755 --- a/testcase/syscalls/ltp.syscalls.accept02.sh +++ b/testcase/syscalls/ltp.syscalls.accept02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.accept03.sh b/testcase/syscalls/ltp.syscalls.accept03.sh index 0edeff5..6732373 100755 --- a/testcase/syscalls/ltp.syscalls.accept03.sh +++ b/testcase/syscalls/ltp.syscalls.accept03.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.accept4_01.sh b/testcase/syscalls/ltp.syscalls.accept4_01.sh index 811f4cb..3685962 100755 --- a/testcase/syscalls/ltp.syscalls.accept4_01.sh +++ b/testcase/syscalls/ltp.syscalls.accept4_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.access01.sh b/testcase/syscalls/ltp.syscalls.access01.sh index fa0d008..8fe5c81 100755 --- a/testcase/syscalls/ltp.syscalls.access01.sh +++ b/testcase/syscalls/ltp.syscalls.access01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.access02.sh b/testcase/syscalls/ltp.syscalls.access02.sh index 6e2aba1..4656155 100755 --- a/testcase/syscalls/ltp.syscalls.access02.sh +++ b/testcase/syscalls/ltp.syscalls.access02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.access03.sh b/testcase/syscalls/ltp.syscalls.access03.sh index 48a3013..b790cad 100755 --- a/testcase/syscalls/ltp.syscalls.access03.sh +++ b/testcase/syscalls/ltp.syscalls.access03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.access04.sh b/testcase/syscalls/ltp.syscalls.access04.sh index 9e5dd82..4e79b9a 100755 --- a/testcase/syscalls/ltp.syscalls.access04.sh +++ b/testcase/syscalls/ltp.syscalls.access04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.acct01.sh b/testcase/syscalls/ltp.syscalls.acct01.sh index fd1209c..c79584f 100755 --- a/testcase/syscalls/ltp.syscalls.acct01.sh +++ b/testcase/syscalls/ltp.syscalls.acct01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.acct02.sh b/testcase/syscalls/ltp.syscalls.acct02.sh index aca8bd4..cf04e5a 100755 --- a/testcase/syscalls/ltp.syscalls.acct02.sh +++ b/testcase/syscalls/ltp.syscalls.acct02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.add_key01.sh b/testcase/syscalls/ltp.syscalls.add_key01.sh index 3368796..aded371 100755 --- a/testcase/syscalls/ltp.syscalls.add_key01.sh +++ b/testcase/syscalls/ltp.syscalls.add_key01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.add_key02.sh b/testcase/syscalls/ltp.syscalls.add_key02.sh index 302d5cf..f5888ca 100755 --- a/testcase/syscalls/ltp.syscalls.add_key02.sh +++ b/testcase/syscalls/ltp.syscalls.add_key02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.add_key03.sh b/testcase/syscalls/ltp.syscalls.add_key03.sh index 1befeed..55db951 100755 --- a/testcase/syscalls/ltp.syscalls.add_key03.sh +++ b/testcase/syscalls/ltp.syscalls.add_key03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.add_key04.sh b/testcase/syscalls/ltp.syscalls.add_key04.sh index 1f97c5a..fae5218 100755 --- a/testcase/syscalls/ltp.syscalls.add_key04.sh +++ b/testcase/syscalls/ltp.syscalls.add_key04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.add_key05.sh b/testcase/syscalls/ltp.syscalls.add_key05.sh index 906fbf5..47c23ff 100755 --- a/testcase/syscalls/ltp.syscalls.add_key05.sh +++ b/testcase/syscalls/ltp.syscalls.add_key05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.adjtimex01.sh b/testcase/syscalls/ltp.syscalls.adjtimex01.sh index 4523778..9a2712e 100755 --- a/testcase/syscalls/ltp.syscalls.adjtimex01.sh +++ b/testcase/syscalls/ltp.syscalls.adjtimex01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.adjtimex02.sh b/testcase/syscalls/ltp.syscalls.adjtimex02.sh index 760eca6..e12e0be 100755 --- a/testcase/syscalls/ltp.syscalls.adjtimex02.sh +++ b/testcase/syscalls/ltp.syscalls.adjtimex02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.adjtimex03.sh b/testcase/syscalls/ltp.syscalls.adjtimex03.sh index 0cfff23..f3638f6 100755 --- a/testcase/syscalls/ltp.syscalls.adjtimex03.sh +++ b/testcase/syscalls/ltp.syscalls.adjtimex03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.alarm02.sh b/testcase/syscalls/ltp.syscalls.alarm02.sh index 4454da8..60feeee 100755 --- a/testcase/syscalls/ltp.syscalls.alarm02.sh +++ b/testcase/syscalls/ltp.syscalls.alarm02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.alarm03.sh b/testcase/syscalls/ltp.syscalls.alarm03.sh index 2fd0fd4..a608176 100755 --- a/testcase/syscalls/ltp.syscalls.alarm03.sh +++ b/testcase/syscalls/ltp.syscalls.alarm03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.alarm05.sh b/testcase/syscalls/ltp.syscalls.alarm05.sh index 70b1934..7637b39 100755 --- a/testcase/syscalls/ltp.syscalls.alarm05.sh +++ b/testcase/syscalls/ltp.syscalls.alarm05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.alarm06.sh b/testcase/syscalls/ltp.syscalls.alarm06.sh index 386ae8e..71b824a 100755 --- a/testcase/syscalls/ltp.syscalls.alarm06.sh +++ b/testcase/syscalls/ltp.syscalls.alarm06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.alarm07.sh b/testcase/syscalls/ltp.syscalls.alarm07.sh index 0ff137f..5e02bd1 100755 --- a/testcase/syscalls/ltp.syscalls.alarm07.sh +++ b/testcase/syscalls/ltp.syscalls.alarm07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.arch_prctl01.sh b/testcase/syscalls/ltp.syscalls.arch_prctl01.sh index 90afe46..de5dfd1 100755 --- a/testcase/syscalls/ltp.syscalls.arch_prctl01.sh +++ b/testcase/syscalls/ltp.syscalls.arch_prctl01.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.bind01.sh b/testcase/syscalls/ltp.syscalls.bind01.sh index a6af116..661f09d 100755 --- a/testcase/syscalls/ltp.syscalls.bind01.sh +++ b/testcase/syscalls/ltp.syscalls.bind01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.bind02.sh b/testcase/syscalls/ltp.syscalls.bind02.sh index 7dbbf64..ff5b4a6 100755 --- a/testcase/syscalls/ltp.syscalls.bind02.sh +++ b/testcase/syscalls/ltp.syscalls.bind02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.bind03.sh b/testcase/syscalls/ltp.syscalls.bind03.sh index 5801cda..fa38267 100755 --- a/testcase/syscalls/ltp.syscalls.bind03.sh +++ b/testcase/syscalls/ltp.syscalls.bind03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.bind04.sh b/testcase/syscalls/ltp.syscalls.bind04.sh index c0ca486..21a2c67 100755 --- a/testcase/syscalls/ltp.syscalls.bind04.sh +++ b/testcase/syscalls/ltp.syscalls.bind04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.bind05.sh b/testcase/syscalls/ltp.syscalls.bind05.sh index 94ba68d..79771b5 100755 --- a/testcase/syscalls/ltp.syscalls.bind05.sh +++ b/testcase/syscalls/ltp.syscalls.bind05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.bind06.sh b/testcase/syscalls/ltp.syscalls.bind06.sh index 30cefb1..a37e27e 100755 --- a/testcase/syscalls/ltp.syscalls.bind06.sh +++ b/testcase/syscalls/ltp.syscalls.bind06.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.bpf_map01.sh b/testcase/syscalls/ltp.syscalls.bpf_map01.sh index 2d1dd29..46ee570 100755 --- a/testcase/syscalls/ltp.syscalls.bpf_map01.sh +++ b/testcase/syscalls/ltp.syscalls.bpf_map01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.bpf_prog01.sh b/testcase/syscalls/ltp.syscalls.bpf_prog01.sh index 18e5783..0bb644a 100755 --- a/testcase/syscalls/ltp.syscalls.bpf_prog01.sh +++ b/testcase/syscalls/ltp.syscalls.bpf_prog01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.bpf_prog02.sh b/testcase/syscalls/ltp.syscalls.bpf_prog02.sh index 7706aa6..bb17adc 100755 --- a/testcase/syscalls/ltp.syscalls.bpf_prog02.sh +++ b/testcase/syscalls/ltp.syscalls.bpf_prog02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.bpf_prog03.sh b/testcase/syscalls/ltp.syscalls.bpf_prog03.sh index c524729..fe48e1e 100755 --- a/testcase/syscalls/ltp.syscalls.bpf_prog03.sh +++ b/testcase/syscalls/ltp.syscalls.bpf_prog03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.bpf_prog04.sh b/testcase/syscalls/ltp.syscalls.bpf_prog04.sh index 34d522b..f821e10 100755 --- a/testcase/syscalls/ltp.syscalls.bpf_prog04.sh +++ b/testcase/syscalls/ltp.syscalls.bpf_prog04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.bpf_prog05.sh b/testcase/syscalls/ltp.syscalls.bpf_prog05.sh index 3cc6483..c12381d 100755 --- a/testcase/syscalls/ltp.syscalls.bpf_prog05.sh +++ b/testcase/syscalls/ltp.syscalls.bpf_prog05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.bpf_prog06.sh b/testcase/syscalls/ltp.syscalls.bpf_prog06.sh index ba06c27..704ddfd 100755 --- a/testcase/syscalls/ltp.syscalls.bpf_prog06.sh +++ b/testcase/syscalls/ltp.syscalls.bpf_prog06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.bpf_prog07.sh b/testcase/syscalls/ltp.syscalls.bpf_prog07.sh index a3807a8..8492dbe 100755 --- a/testcase/syscalls/ltp.syscalls.bpf_prog07.sh +++ b/testcase/syscalls/ltp.syscalls.bpf_prog07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.brk01.sh b/testcase/syscalls/ltp.syscalls.brk01.sh index 87f59e9..24dbef2 100755 --- a/testcase/syscalls/ltp.syscalls.brk01.sh +++ b/testcase/syscalls/ltp.syscalls.brk01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.brk02.sh b/testcase/syscalls/ltp.syscalls.brk02.sh index fb0666e..16f8358 100755 --- a/testcase/syscalls/ltp.syscalls.brk02.sh +++ b/testcase/syscalls/ltp.syscalls.brk02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.cacheflush01.sh b/testcase/syscalls/ltp.syscalls.cacheflush01.sh index e87190f..7dc70ad 100755 --- a/testcase/syscalls/ltp.syscalls.cacheflush01.sh +++ b/testcase/syscalls/ltp.syscalls.cacheflush01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.capget01.sh b/testcase/syscalls/ltp.syscalls.capget01.sh index 07a54ed..d374d5d 100755 --- a/testcase/syscalls/ltp.syscalls.capget01.sh +++ b/testcase/syscalls/ltp.syscalls.capget01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.capget02.sh b/testcase/syscalls/ltp.syscalls.capget02.sh index 9a8b2d2..32564e0 100755 --- a/testcase/syscalls/ltp.syscalls.capget02.sh +++ b/testcase/syscalls/ltp.syscalls.capget02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.capset01.sh b/testcase/syscalls/ltp.syscalls.capset01.sh index 6ef2990..1a871d6 100755 --- a/testcase/syscalls/ltp.syscalls.capset01.sh +++ b/testcase/syscalls/ltp.syscalls.capset01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.capset02.sh b/testcase/syscalls/ltp.syscalls.capset02.sh index 1def0c2..91e2507 100755 --- a/testcase/syscalls/ltp.syscalls.capset02.sh +++ b/testcase/syscalls/ltp.syscalls.capset02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.capset03.sh b/testcase/syscalls/ltp.syscalls.capset03.sh index b301d74..3dfa616 100755 --- a/testcase/syscalls/ltp.syscalls.capset03.sh +++ b/testcase/syscalls/ltp.syscalls.capset03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.capset04.sh b/testcase/syscalls/ltp.syscalls.capset04.sh index 55af68e..4b08689 100755 --- a/testcase/syscalls/ltp.syscalls.capset04.sh +++ b/testcase/syscalls/ltp.syscalls.capset04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chdir01.sh b/testcase/syscalls/ltp.syscalls.chdir01.sh index 6051841..62a218b 100755 --- a/testcase/syscalls/ltp.syscalls.chdir01.sh +++ b/testcase/syscalls/ltp.syscalls.chdir01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chdir01A.sh b/testcase/syscalls/ltp.syscalls.chdir01A.sh index f8192da..fe28221 100755 --- a/testcase/syscalls/ltp.syscalls.chdir01A.sh +++ b/testcase/syscalls/ltp.syscalls.chdir01A.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chdir04.sh b/testcase/syscalls/ltp.syscalls.chdir04.sh index dc85877..e13ff6a 100755 --- a/testcase/syscalls/ltp.syscalls.chdir04.sh +++ b/testcase/syscalls/ltp.syscalls.chdir04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chmod01.sh b/testcase/syscalls/ltp.syscalls.chmod01.sh index 12f4475..c2ae515 100755 --- a/testcase/syscalls/ltp.syscalls.chmod01.sh +++ b/testcase/syscalls/ltp.syscalls.chmod01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chmod01A.sh b/testcase/syscalls/ltp.syscalls.chmod01A.sh index 09e2096..ea84450 100755 --- a/testcase/syscalls/ltp.syscalls.chmod01A.sh +++ b/testcase/syscalls/ltp.syscalls.chmod01A.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chmod03.sh b/testcase/syscalls/ltp.syscalls.chmod03.sh index 0710b56..6112f7a 100755 --- a/testcase/syscalls/ltp.syscalls.chmod03.sh +++ b/testcase/syscalls/ltp.syscalls.chmod03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chmod05.sh b/testcase/syscalls/ltp.syscalls.chmod05.sh index df5888e..f058913 100755 --- a/testcase/syscalls/ltp.syscalls.chmod05.sh +++ b/testcase/syscalls/ltp.syscalls.chmod05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chmod06.sh b/testcase/syscalls/ltp.syscalls.chmod06.sh index 0cbfb40..e28255a 100755 --- a/testcase/syscalls/ltp.syscalls.chmod06.sh +++ b/testcase/syscalls/ltp.syscalls.chmod06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chmod07.sh b/testcase/syscalls/ltp.syscalls.chmod07.sh index e30d868..9d20100 100755 --- a/testcase/syscalls/ltp.syscalls.chmod07.sh +++ b/testcase/syscalls/ltp.syscalls.chmod07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chown01.sh b/testcase/syscalls/ltp.syscalls.chown01.sh index ab76da8..aeb4a75 100755 --- a/testcase/syscalls/ltp.syscalls.chown01.sh +++ b/testcase/syscalls/ltp.syscalls.chown01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chown01_16.sh b/testcase/syscalls/ltp.syscalls.chown01_16.sh index 5ed6836..074df88 100755 --- a/testcase/syscalls/ltp.syscalls.chown01_16.sh +++ b/testcase/syscalls/ltp.syscalls.chown01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chown02.sh b/testcase/syscalls/ltp.syscalls.chown02.sh index bd2b5e3..afea869 100755 --- a/testcase/syscalls/ltp.syscalls.chown02.sh +++ b/testcase/syscalls/ltp.syscalls.chown02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chown02_16.sh b/testcase/syscalls/ltp.syscalls.chown02_16.sh index 573e7a1..5d26776 100755 --- a/testcase/syscalls/ltp.syscalls.chown02_16.sh +++ b/testcase/syscalls/ltp.syscalls.chown02_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chown03.sh b/testcase/syscalls/ltp.syscalls.chown03.sh index dd8d6c5..da2121c 100755 --- a/testcase/syscalls/ltp.syscalls.chown03.sh +++ b/testcase/syscalls/ltp.syscalls.chown03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chown03_16.sh b/testcase/syscalls/ltp.syscalls.chown03_16.sh index fedf705..b89711a 100755 --- a/testcase/syscalls/ltp.syscalls.chown03_16.sh +++ b/testcase/syscalls/ltp.syscalls.chown03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chown04.sh b/testcase/syscalls/ltp.syscalls.chown04.sh index 1fb71b0..f4824a9 100755 --- a/testcase/syscalls/ltp.syscalls.chown04.sh +++ b/testcase/syscalls/ltp.syscalls.chown04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chown04_16.sh b/testcase/syscalls/ltp.syscalls.chown04_16.sh index f8a4ae0..8273b69 100755 --- a/testcase/syscalls/ltp.syscalls.chown04_16.sh +++ b/testcase/syscalls/ltp.syscalls.chown04_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chown05.sh b/testcase/syscalls/ltp.syscalls.chown05.sh index 7846590..df73f9b 100755 --- a/testcase/syscalls/ltp.syscalls.chown05.sh +++ b/testcase/syscalls/ltp.syscalls.chown05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chown05_16.sh b/testcase/syscalls/ltp.syscalls.chown05_16.sh index 7196471..1f97a82 100755 --- a/testcase/syscalls/ltp.syscalls.chown05_16.sh +++ b/testcase/syscalls/ltp.syscalls.chown05_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chroot01.sh b/testcase/syscalls/ltp.syscalls.chroot01.sh index 3118e92..9df6729 100755 --- a/testcase/syscalls/ltp.syscalls.chroot01.sh +++ b/testcase/syscalls/ltp.syscalls.chroot01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chroot02.sh b/testcase/syscalls/ltp.syscalls.chroot02.sh index 3a3c708..b06b018 100755 --- a/testcase/syscalls/ltp.syscalls.chroot02.sh +++ b/testcase/syscalls/ltp.syscalls.chroot02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chroot03.sh b/testcase/syscalls/ltp.syscalls.chroot03.sh index fbef28b..3cabd93 100755 --- a/testcase/syscalls/ltp.syscalls.chroot03.sh +++ b/testcase/syscalls/ltp.syscalls.chroot03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.chroot04.sh b/testcase/syscalls/ltp.syscalls.chroot04.sh index 0202fab..90e35b1 100755 --- a/testcase/syscalls/ltp.syscalls.chroot04.sh +++ b/testcase/syscalls/ltp.syscalls.chroot04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clock_adjtime01.sh b/testcase/syscalls/ltp.syscalls.clock_adjtime01.sh index 65ef9fb..a2da312 100755 --- a/testcase/syscalls/ltp.syscalls.clock_adjtime01.sh +++ b/testcase/syscalls/ltp.syscalls.clock_adjtime01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clock_adjtime02.sh b/testcase/syscalls/ltp.syscalls.clock_adjtime02.sh index 24312e6..29b762a 100755 --- a/testcase/syscalls/ltp.syscalls.clock_adjtime02.sh +++ b/testcase/syscalls/ltp.syscalls.clock_adjtime02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clock_getres01.sh b/testcase/syscalls/ltp.syscalls.clock_getres01.sh index f34acc4..061a462 100755 --- a/testcase/syscalls/ltp.syscalls.clock_getres01.sh +++ b/testcase/syscalls/ltp.syscalls.clock_getres01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clock_gettime01.sh b/testcase/syscalls/ltp.syscalls.clock_gettime01.sh index 2e9e542..5661e82 100755 --- a/testcase/syscalls/ltp.syscalls.clock_gettime01.sh +++ b/testcase/syscalls/ltp.syscalls.clock_gettime01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clock_gettime02.sh b/testcase/syscalls/ltp.syscalls.clock_gettime02.sh index c5ab20f..71be558 100755 --- a/testcase/syscalls/ltp.syscalls.clock_gettime02.sh +++ b/testcase/syscalls/ltp.syscalls.clock_gettime02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clock_gettime03.sh b/testcase/syscalls/ltp.syscalls.clock_gettime03.sh index 99a7b43..7339b01 100755 --- a/testcase/syscalls/ltp.syscalls.clock_gettime03.sh +++ b/testcase/syscalls/ltp.syscalls.clock_gettime03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clock_gettime04.sh b/testcase/syscalls/ltp.syscalls.clock_gettime04.sh index aa9b7fa..d1a4c51 100755 --- a/testcase/syscalls/ltp.syscalls.clock_gettime04.sh +++ b/testcase/syscalls/ltp.syscalls.clock_gettime04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clock_nanosleep01.sh b/testcase/syscalls/ltp.syscalls.clock_nanosleep01.sh index f9ce466..f962bb7 100755 --- a/testcase/syscalls/ltp.syscalls.clock_nanosleep01.sh +++ b/testcase/syscalls/ltp.syscalls.clock_nanosleep01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clock_nanosleep02.sh b/testcase/syscalls/ltp.syscalls.clock_nanosleep02.sh index 6177468..ee89b74 100755 --- a/testcase/syscalls/ltp.syscalls.clock_nanosleep02.sh +++ b/testcase/syscalls/ltp.syscalls.clock_nanosleep02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clock_nanosleep03.sh b/testcase/syscalls/ltp.syscalls.clock_nanosleep03.sh index fc6e7d9..c99627c 100755 --- a/testcase/syscalls/ltp.syscalls.clock_nanosleep03.sh +++ b/testcase/syscalls/ltp.syscalls.clock_nanosleep03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clock_nanosleep04.sh b/testcase/syscalls/ltp.syscalls.clock_nanosleep04.sh index 41c3656..049d7d0 100755 --- a/testcase/syscalls/ltp.syscalls.clock_nanosleep04.sh +++ b/testcase/syscalls/ltp.syscalls.clock_nanosleep04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clock_settime01.sh b/testcase/syscalls/ltp.syscalls.clock_settime01.sh index cb026ed..cfd98c9 100755 --- a/testcase/syscalls/ltp.syscalls.clock_settime01.sh +++ b/testcase/syscalls/ltp.syscalls.clock_settime01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clock_settime02.sh b/testcase/syscalls/ltp.syscalls.clock_settime02.sh index 071e29f..2caac2e 100755 --- a/testcase/syscalls/ltp.syscalls.clock_settime02.sh +++ b/testcase/syscalls/ltp.syscalls.clock_settime02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clock_settime03.sh b/testcase/syscalls/ltp.syscalls.clock_settime03.sh index 4f324e9..c6aedae 100755 --- a/testcase/syscalls/ltp.syscalls.clock_settime03.sh +++ b/testcase/syscalls/ltp.syscalls.clock_settime03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clone01.sh b/testcase/syscalls/ltp.syscalls.clone01.sh index 2565f18..6315551 100755 --- a/testcase/syscalls/ltp.syscalls.clone01.sh +++ b/testcase/syscalls/ltp.syscalls.clone01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clone02.sh b/testcase/syscalls/ltp.syscalls.clone02.sh index 89a7043..7e161f1 100755 --- a/testcase/syscalls/ltp.syscalls.clone02.sh +++ b/testcase/syscalls/ltp.syscalls.clone02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clone03.sh b/testcase/syscalls/ltp.syscalls.clone03.sh index 4e3847f..55fff6a 100755 --- a/testcase/syscalls/ltp.syscalls.clone03.sh +++ b/testcase/syscalls/ltp.syscalls.clone03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clone04.sh b/testcase/syscalls/ltp.syscalls.clone04.sh index feb011c..5be8ad4 100755 --- a/testcase/syscalls/ltp.syscalls.clone04.sh +++ b/testcase/syscalls/ltp.syscalls.clone04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clone05.sh b/testcase/syscalls/ltp.syscalls.clone05.sh index 82353b4..740fb0c 100755 --- a/testcase/syscalls/ltp.syscalls.clone05.sh +++ b/testcase/syscalls/ltp.syscalls.clone05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clone06.sh b/testcase/syscalls/ltp.syscalls.clone06.sh index 3e9eaaa..8ec3574 100755 --- a/testcase/syscalls/ltp.syscalls.clone06.sh +++ b/testcase/syscalls/ltp.syscalls.clone06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clone07.sh b/testcase/syscalls/ltp.syscalls.clone07.sh index 4ff3e0e..ddd03b5 100755 --- a/testcase/syscalls/ltp.syscalls.clone07.sh +++ b/testcase/syscalls/ltp.syscalls.clone07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clone08.sh b/testcase/syscalls/ltp.syscalls.clone08.sh index 66d2718..c99c7e9 100755 --- a/testcase/syscalls/ltp.syscalls.clone08.sh +++ b/testcase/syscalls/ltp.syscalls.clone08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clone09.sh b/testcase/syscalls/ltp.syscalls.clone09.sh index 4ec021b..f64918d 100755 --- a/testcase/syscalls/ltp.syscalls.clone09.sh +++ b/testcase/syscalls/ltp.syscalls.clone09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clone301.sh b/testcase/syscalls/ltp.syscalls.clone301.sh index a5d3e09..f811698 100755 --- a/testcase/syscalls/ltp.syscalls.clone301.sh +++ b/testcase/syscalls/ltp.syscalls.clone301.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clone302.sh b/testcase/syscalls/ltp.syscalls.clone302.sh index 0a1053a..8695aaa 100755 --- a/testcase/syscalls/ltp.syscalls.clone302.sh +++ b/testcase/syscalls/ltp.syscalls.clone302.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.clone303.sh b/testcase/syscalls/ltp.syscalls.clone303.sh index a1458d8..08a4825 100755 --- a/testcase/syscalls/ltp.syscalls.clone303.sh +++ b/testcase/syscalls/ltp.syscalls.clone303.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.close01.sh b/testcase/syscalls/ltp.syscalls.close01.sh index e8e562c..0da44c0 100755 --- a/testcase/syscalls/ltp.syscalls.close01.sh +++ b/testcase/syscalls/ltp.syscalls.close01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.close02.sh b/testcase/syscalls/ltp.syscalls.close02.sh index b82f973..687b5ff 100755 --- a/testcase/syscalls/ltp.syscalls.close02.sh +++ b/testcase/syscalls/ltp.syscalls.close02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.close_range01.sh b/testcase/syscalls/ltp.syscalls.close_range01.sh index b619a63..8354dd1 100755 --- a/testcase/syscalls/ltp.syscalls.close_range01.sh +++ b/testcase/syscalls/ltp.syscalls.close_range01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.close_range02.sh b/testcase/syscalls/ltp.syscalls.close_range02.sh index 208a954..b775863 100755 --- a/testcase/syscalls/ltp.syscalls.close_range02.sh +++ b/testcase/syscalls/ltp.syscalls.close_range02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.confstr01.sh b/testcase/syscalls/ltp.syscalls.confstr01.sh index b4c2616..0e4811a 100755 --- a/testcase/syscalls/ltp.syscalls.confstr01.sh +++ b/testcase/syscalls/ltp.syscalls.confstr01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.connect01.sh b/testcase/syscalls/ltp.syscalls.connect01.sh index 2194199..e3ff3b6 100755 --- a/testcase/syscalls/ltp.syscalls.connect01.sh +++ b/testcase/syscalls/ltp.syscalls.connect01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.connect02.sh b/testcase/syscalls/ltp.syscalls.connect02.sh index b1f1b3b..ec90ddd 100755 --- a/testcase/syscalls/ltp.syscalls.connect02.sh +++ b/testcase/syscalls/ltp.syscalls.connect02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.copy_file_range01.sh b/testcase/syscalls/ltp.syscalls.copy_file_range01.sh index b64cd52..0c1e1ad 100755 --- a/testcase/syscalls/ltp.syscalls.copy_file_range01.sh +++ b/testcase/syscalls/ltp.syscalls.copy_file_range01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.copy_file_range02.sh b/testcase/syscalls/ltp.syscalls.copy_file_range02.sh index c2209c2..7bd92fc 100755 --- a/testcase/syscalls/ltp.syscalls.copy_file_range02.sh +++ b/testcase/syscalls/ltp.syscalls.copy_file_range02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.copy_file_range03.sh b/testcase/syscalls/ltp.syscalls.copy_file_range03.sh index c113040..2559328 100755 --- a/testcase/syscalls/ltp.syscalls.copy_file_range03.sh +++ b/testcase/syscalls/ltp.syscalls.copy_file_range03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.creat01.sh b/testcase/syscalls/ltp.syscalls.creat01.sh index e3e20ea..9abf512 100755 --- a/testcase/syscalls/ltp.syscalls.creat01.sh +++ b/testcase/syscalls/ltp.syscalls.creat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.creat03.sh b/testcase/syscalls/ltp.syscalls.creat03.sh index af80c00..50b5e56 100755 --- a/testcase/syscalls/ltp.syscalls.creat03.sh +++ b/testcase/syscalls/ltp.syscalls.creat03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.creat04.sh b/testcase/syscalls/ltp.syscalls.creat04.sh index 203bafe..af8b40e 100755 --- a/testcase/syscalls/ltp.syscalls.creat04.sh +++ b/testcase/syscalls/ltp.syscalls.creat04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.creat05.sh b/testcase/syscalls/ltp.syscalls.creat05.sh index 57b4619..6d80cc8 100755 --- a/testcase/syscalls/ltp.syscalls.creat05.sh +++ b/testcase/syscalls/ltp.syscalls.creat05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.creat06.sh b/testcase/syscalls/ltp.syscalls.creat06.sh index b3ffaa4..43e060e 100755 --- a/testcase/syscalls/ltp.syscalls.creat06.sh +++ b/testcase/syscalls/ltp.syscalls.creat06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.creat07.sh b/testcase/syscalls/ltp.syscalls.creat07.sh index 813877b..1efffe9 100755 --- a/testcase/syscalls/ltp.syscalls.creat07.sh +++ b/testcase/syscalls/ltp.syscalls.creat07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.creat08.sh b/testcase/syscalls/ltp.syscalls.creat08.sh index 1d93f7a..7ea8848 100755 --- a/testcase/syscalls/ltp.syscalls.creat08.sh +++ b/testcase/syscalls/ltp.syscalls.creat08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.creat09.sh b/testcase/syscalls/ltp.syscalls.creat09.sh index 47d60a6..dc47f71 100755 --- a/testcase/syscalls/ltp.syscalls.creat09.sh +++ b/testcase/syscalls/ltp.syscalls.creat09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.delete_module01.sh b/testcase/syscalls/ltp.syscalls.delete_module01.sh index bd49315..faea2f5 100755 --- a/testcase/syscalls/ltp.syscalls.delete_module01.sh +++ b/testcase/syscalls/ltp.syscalls.delete_module01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.delete_module02.sh b/testcase/syscalls/ltp.syscalls.delete_module02.sh index af5c1c9..2d07cad 100755 --- a/testcase/syscalls/ltp.syscalls.delete_module02.sh +++ b/testcase/syscalls/ltp.syscalls.delete_module02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.delete_module03.sh b/testcase/syscalls/ltp.syscalls.delete_module03.sh index 24c0d6a..3c6f28a 100755 --- a/testcase/syscalls/ltp.syscalls.delete_module03.sh +++ b/testcase/syscalls/ltp.syscalls.delete_module03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dirtyc0w.sh b/testcase/syscalls/ltp.syscalls.dirtyc0w.sh index b6a15ae..fda9a05 100755 --- a/testcase/syscalls/ltp.syscalls.dirtyc0w.sh +++ b/testcase/syscalls/ltp.syscalls.dirtyc0w.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dirtyc0w_shmem.sh b/testcase/syscalls/ltp.syscalls.dirtyc0w_shmem.sh index 71f1022..fee048a 100755 --- a/testcase/syscalls/ltp.syscalls.dirtyc0w_shmem.sh +++ b/testcase/syscalls/ltp.syscalls.dirtyc0w_shmem.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dirtypipe.sh b/testcase/syscalls/ltp.syscalls.dirtypipe.sh index e2af64f..b7793c3 100755 --- a/testcase/syscalls/ltp.syscalls.dirtypipe.sh +++ b/testcase/syscalls/ltp.syscalls.dirtypipe.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dup01.sh b/testcase/syscalls/ltp.syscalls.dup01.sh index 7d34a5a..d6f8111 100755 --- a/testcase/syscalls/ltp.syscalls.dup01.sh +++ b/testcase/syscalls/ltp.syscalls.dup01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dup02.sh b/testcase/syscalls/ltp.syscalls.dup02.sh index b1d9c22..62bc4f4 100755 --- a/testcase/syscalls/ltp.syscalls.dup02.sh +++ b/testcase/syscalls/ltp.syscalls.dup02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dup03.sh b/testcase/syscalls/ltp.syscalls.dup03.sh index cdb23ad..5a28002 100755 --- a/testcase/syscalls/ltp.syscalls.dup03.sh +++ b/testcase/syscalls/ltp.syscalls.dup03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dup04.sh b/testcase/syscalls/ltp.syscalls.dup04.sh index 08dfdc8..a6648fc 100755 --- a/testcase/syscalls/ltp.syscalls.dup04.sh +++ b/testcase/syscalls/ltp.syscalls.dup04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dup05.sh b/testcase/syscalls/ltp.syscalls.dup05.sh index f2b32d9..54dbb65 100755 --- a/testcase/syscalls/ltp.syscalls.dup05.sh +++ b/testcase/syscalls/ltp.syscalls.dup05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dup06.sh b/testcase/syscalls/ltp.syscalls.dup06.sh index 48c0c7a..d8b85be 100755 --- a/testcase/syscalls/ltp.syscalls.dup06.sh +++ b/testcase/syscalls/ltp.syscalls.dup06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dup07.sh b/testcase/syscalls/ltp.syscalls.dup07.sh index fa020ef..635ab84 100755 --- a/testcase/syscalls/ltp.syscalls.dup07.sh +++ b/testcase/syscalls/ltp.syscalls.dup07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dup201.sh b/testcase/syscalls/ltp.syscalls.dup201.sh index cbf60ce..47a1770 100755 --- a/testcase/syscalls/ltp.syscalls.dup201.sh +++ b/testcase/syscalls/ltp.syscalls.dup201.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dup202.sh b/testcase/syscalls/ltp.syscalls.dup202.sh index f201ccb..5b4838c 100755 --- a/testcase/syscalls/ltp.syscalls.dup202.sh +++ b/testcase/syscalls/ltp.syscalls.dup202.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dup203.sh b/testcase/syscalls/ltp.syscalls.dup203.sh index 2627395..a9dc7a4 100755 --- a/testcase/syscalls/ltp.syscalls.dup203.sh +++ b/testcase/syscalls/ltp.syscalls.dup203.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dup204.sh b/testcase/syscalls/ltp.syscalls.dup204.sh index 199e985..9503972 100755 --- a/testcase/syscalls/ltp.syscalls.dup204.sh +++ b/testcase/syscalls/ltp.syscalls.dup204.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dup205.sh b/testcase/syscalls/ltp.syscalls.dup205.sh index cc2c9fc..a445797 100755 --- a/testcase/syscalls/ltp.syscalls.dup205.sh +++ b/testcase/syscalls/ltp.syscalls.dup205.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dup206.sh b/testcase/syscalls/ltp.syscalls.dup206.sh index 17b9b8a..c397a73 100755 --- a/testcase/syscalls/ltp.syscalls.dup206.sh +++ b/testcase/syscalls/ltp.syscalls.dup206.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dup207.sh b/testcase/syscalls/ltp.syscalls.dup207.sh index 08c4078..2148a74 100755 --- a/testcase/syscalls/ltp.syscalls.dup207.sh +++ b/testcase/syscalls/ltp.syscalls.dup207.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dup3_01.sh b/testcase/syscalls/ltp.syscalls.dup3_01.sh index e8685c1..9a8e15d 100755 --- a/testcase/syscalls/ltp.syscalls.dup3_01.sh +++ b/testcase/syscalls/ltp.syscalls.dup3_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.dup3_02.sh b/testcase/syscalls/ltp.syscalls.dup3_02.sh index 34515f2..7c8ab01 100755 --- a/testcase/syscalls/ltp.syscalls.dup3_02.sh +++ b/testcase/syscalls/ltp.syscalls.dup3_02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll01.sh b/testcase/syscalls/ltp.syscalls.epoll01.sh index 49009f0..cb3b729 100755 --- a/testcase/syscalls/ltp.syscalls.epoll01.sh +++ b/testcase/syscalls/ltp.syscalls.epoll01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_create01.sh b/testcase/syscalls/ltp.syscalls.epoll_create01.sh index fb1373b..b7afb86 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_create01.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_create01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_create02.sh b/testcase/syscalls/ltp.syscalls.epoll_create02.sh index b5bb061..85d526f 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_create02.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_create02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_create1_01.sh b/testcase/syscalls/ltp.syscalls.epoll_create1_01.sh index 491bc09..eef6fe6 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_create1_01.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_create1_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_create1_02.sh b/testcase/syscalls/ltp.syscalls.epoll_create1_02.sh index be5a282..4ed8dee 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_create1_02.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_create1_02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_ctl01.sh b/testcase/syscalls/ltp.syscalls.epoll_ctl01.sh index 7f10d19..e727e00 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_ctl01.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_ctl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_ctl02.sh b/testcase/syscalls/ltp.syscalls.epoll_ctl02.sh index ed816c1..2a515b6 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_ctl02.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_ctl02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_ctl03.sh b/testcase/syscalls/ltp.syscalls.epoll_ctl03.sh index 8ca8bbd..4935d1c 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_ctl03.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_ctl03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_ctl04.sh b/testcase/syscalls/ltp.syscalls.epoll_ctl04.sh index 8e193e6..d5df34c 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_ctl04.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_ctl04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_ctl05.sh b/testcase/syscalls/ltp.syscalls.epoll_ctl05.sh index 7fb4c44..24bfb35 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_ctl05.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_ctl05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_pwait01.sh b/testcase/syscalls/ltp.syscalls.epoll_pwait01.sh index 8965212..05cd9c8 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_pwait01.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_pwait01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_pwait02.sh b/testcase/syscalls/ltp.syscalls.epoll_pwait02.sh index 6a005b1..fc0bf3f 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_pwait02.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_pwait02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_pwait03.sh b/testcase/syscalls/ltp.syscalls.epoll_pwait03.sh index 553957c..d564c09 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_pwait03.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_pwait03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_pwait04.sh b/testcase/syscalls/ltp.syscalls.epoll_pwait04.sh index e5d4f2f..a7a1cc9 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_pwait04.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_pwait04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_pwait05.sh b/testcase/syscalls/ltp.syscalls.epoll_pwait05.sh index 728e5b8..350212d 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_pwait05.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_pwait05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_wait01.sh b/testcase/syscalls/ltp.syscalls.epoll_wait01.sh index 5987c8e..891987e 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_wait01.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_wait01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_wait02.sh b/testcase/syscalls/ltp.syscalls.epoll_wait02.sh index 1172964..ad1142d 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_wait02.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_wait02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_wait03.sh b/testcase/syscalls/ltp.syscalls.epoll_wait03.sh index d24c8b0..2492182 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_wait03.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_wait03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_wait04.sh b/testcase/syscalls/ltp.syscalls.epoll_wait04.sh index 3e26fd5..222a760 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_wait04.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_wait04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.epoll_wait05.sh b/testcase/syscalls/ltp.syscalls.epoll_wait05.sh index b4d97a2..31d6e86 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_wait05.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_wait05.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.epoll_wait06.sh b/testcase/syscalls/ltp.syscalls.epoll_wait06.sh index 0890b22..65bf484 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_wait06.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_wait06.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.epoll_wait07.sh b/testcase/syscalls/ltp.syscalls.epoll_wait07.sh index c56fa0a..b31fa99 100755 --- a/testcase/syscalls/ltp.syscalls.epoll_wait07.sh +++ b/testcase/syscalls/ltp.syscalls.epoll_wait07.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.eventfd01.sh b/testcase/syscalls/ltp.syscalls.eventfd01.sh index bf8a82e..101b160 100755 --- a/testcase/syscalls/ltp.syscalls.eventfd01.sh +++ b/testcase/syscalls/ltp.syscalls.eventfd01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.eventfd02.sh b/testcase/syscalls/ltp.syscalls.eventfd02.sh index 9241031..e08c889 100755 --- a/testcase/syscalls/ltp.syscalls.eventfd02.sh +++ b/testcase/syscalls/ltp.syscalls.eventfd02.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.eventfd03.sh b/testcase/syscalls/ltp.syscalls.eventfd03.sh index b233590..97757e6 100755 --- a/testcase/syscalls/ltp.syscalls.eventfd03.sh +++ b/testcase/syscalls/ltp.syscalls.eventfd03.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.eventfd04.sh b/testcase/syscalls/ltp.syscalls.eventfd04.sh index 30d9e90..ab6447b 100755 --- a/testcase/syscalls/ltp.syscalls.eventfd04.sh +++ b/testcase/syscalls/ltp.syscalls.eventfd04.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.eventfd05.sh b/testcase/syscalls/ltp.syscalls.eventfd05.sh index 8bd7b29..66795d2 100755 --- a/testcase/syscalls/ltp.syscalls.eventfd05.sh +++ b/testcase/syscalls/ltp.syscalls.eventfd05.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.eventfd06.sh b/testcase/syscalls/ltp.syscalls.eventfd06.sh index 99e1aec..868d1de 100755 --- a/testcase/syscalls/ltp.syscalls.eventfd06.sh +++ b/testcase/syscalls/ltp.syscalls.eventfd06.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.eventfd2_01.sh b/testcase/syscalls/ltp.syscalls.eventfd2_01.sh index fb28ec5..e63e59c 100755 --- a/testcase/syscalls/ltp.syscalls.eventfd2_01.sh +++ b/testcase/syscalls/ltp.syscalls.eventfd2_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.eventfd2_02.sh b/testcase/syscalls/ltp.syscalls.eventfd2_02.sh index 93051df..5ada6af 100755 --- a/testcase/syscalls/ltp.syscalls.eventfd2_02.sh +++ b/testcase/syscalls/ltp.syscalls.eventfd2_02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.eventfd2_03.sh b/testcase/syscalls/ltp.syscalls.eventfd2_03.sh index 0d3d972..c33be9e 100755 --- a/testcase/syscalls/ltp.syscalls.eventfd2_03.sh +++ b/testcase/syscalls/ltp.syscalls.eventfd2_03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.execl01.sh b/testcase/syscalls/ltp.syscalls.execl01.sh index 5ba28bb..4be3834 100755 --- a/testcase/syscalls/ltp.syscalls.execl01.sh +++ b/testcase/syscalls/ltp.syscalls.execl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.execle01.sh b/testcase/syscalls/ltp.syscalls.execle01.sh index c35ab12..352b8ac 100755 --- a/testcase/syscalls/ltp.syscalls.execle01.sh +++ b/testcase/syscalls/ltp.syscalls.execle01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.execlp01.sh b/testcase/syscalls/ltp.syscalls.execlp01.sh index 6efc72d..58ed68d 100755 --- a/testcase/syscalls/ltp.syscalls.execlp01.sh +++ b/testcase/syscalls/ltp.syscalls.execlp01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.execv01.sh b/testcase/syscalls/ltp.syscalls.execv01.sh index ac793ae..eb44af1 100755 --- a/testcase/syscalls/ltp.syscalls.execv01.sh +++ b/testcase/syscalls/ltp.syscalls.execv01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.execve01.sh b/testcase/syscalls/ltp.syscalls.execve01.sh index f659e5a..b99e0df 100755 --- a/testcase/syscalls/ltp.syscalls.execve01.sh +++ b/testcase/syscalls/ltp.syscalls.execve01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.execve02.sh b/testcase/syscalls/ltp.syscalls.execve02.sh index fbc5600..718244c 100755 --- a/testcase/syscalls/ltp.syscalls.execve02.sh +++ b/testcase/syscalls/ltp.syscalls.execve02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.execve03.sh b/testcase/syscalls/ltp.syscalls.execve03.sh index 325a934..739a1cc 100755 --- a/testcase/syscalls/ltp.syscalls.execve03.sh +++ b/testcase/syscalls/ltp.syscalls.execve03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.execve04.sh b/testcase/syscalls/ltp.syscalls.execve04.sh index 8b890cc..47b8b05 100755 --- a/testcase/syscalls/ltp.syscalls.execve04.sh +++ b/testcase/syscalls/ltp.syscalls.execve04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.execve05.sh b/testcase/syscalls/ltp.syscalls.execve05.sh index 371af54..ccf567f 100755 --- a/testcase/syscalls/ltp.syscalls.execve05.sh +++ b/testcase/syscalls/ltp.syscalls.execve05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.execve06.sh b/testcase/syscalls/ltp.syscalls.execve06.sh index d1d9f37..ceffdb4 100755 --- a/testcase/syscalls/ltp.syscalls.execve06.sh +++ b/testcase/syscalls/ltp.syscalls.execve06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.execveat01.sh b/testcase/syscalls/ltp.syscalls.execveat01.sh index 9977779..8b8f1ce 100755 --- a/testcase/syscalls/ltp.syscalls.execveat01.sh +++ b/testcase/syscalls/ltp.syscalls.execveat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.execveat02.sh b/testcase/syscalls/ltp.syscalls.execveat02.sh index afb8d91..00bda83 100755 --- a/testcase/syscalls/ltp.syscalls.execveat02.sh +++ b/testcase/syscalls/ltp.syscalls.execveat02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.execveat03.sh b/testcase/syscalls/ltp.syscalls.execveat03.sh index 4ff6ba0..cf2c976 100755 --- a/testcase/syscalls/ltp.syscalls.execveat03.sh +++ b/testcase/syscalls/ltp.syscalls.execveat03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.execvp01.sh b/testcase/syscalls/ltp.syscalls.execvp01.sh index 716df20..6bc6176 100755 --- a/testcase/syscalls/ltp.syscalls.execvp01.sh +++ b/testcase/syscalls/ltp.syscalls.execvp01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.exit01.sh b/testcase/syscalls/ltp.syscalls.exit01.sh index 0933d8b..8af86f0 100755 --- a/testcase/syscalls/ltp.syscalls.exit01.sh +++ b/testcase/syscalls/ltp.syscalls.exit01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.exit02.sh b/testcase/syscalls/ltp.syscalls.exit02.sh index 9de45ac..4a5e773 100755 --- a/testcase/syscalls/ltp.syscalls.exit02.sh +++ b/testcase/syscalls/ltp.syscalls.exit02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.exit_group01.sh b/testcase/syscalls/ltp.syscalls.exit_group01.sh index f0a7f02..58f6754 100755 --- a/testcase/syscalls/ltp.syscalls.exit_group01.sh +++ b/testcase/syscalls/ltp.syscalls.exit_group01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.faccessat01.sh b/testcase/syscalls/ltp.syscalls.faccessat01.sh index f2faa94..12af71e 100755 --- a/testcase/syscalls/ltp.syscalls.faccessat01.sh +++ b/testcase/syscalls/ltp.syscalls.faccessat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.faccessat02.sh b/testcase/syscalls/ltp.syscalls.faccessat02.sh index f7a8bcf..8fff444 100755 --- a/testcase/syscalls/ltp.syscalls.faccessat02.sh +++ b/testcase/syscalls/ltp.syscalls.faccessat02.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.faccessat201.sh b/testcase/syscalls/ltp.syscalls.faccessat201.sh index b1db179..1b8f254 100755 --- a/testcase/syscalls/ltp.syscalls.faccessat201.sh +++ b/testcase/syscalls/ltp.syscalls.faccessat201.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.faccessat202.sh b/testcase/syscalls/ltp.syscalls.faccessat202.sh index 4d003e1..7d83564 100755 --- a/testcase/syscalls/ltp.syscalls.faccessat202.sh +++ b/testcase/syscalls/ltp.syscalls.faccessat202.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.fallocate01.sh b/testcase/syscalls/ltp.syscalls.fallocate01.sh index 1e49829..a51c1c6 100755 --- a/testcase/syscalls/ltp.syscalls.fallocate01.sh +++ b/testcase/syscalls/ltp.syscalls.fallocate01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fallocate02.sh b/testcase/syscalls/ltp.syscalls.fallocate02.sh index 19f370b..a9892bc 100755 --- a/testcase/syscalls/ltp.syscalls.fallocate02.sh +++ b/testcase/syscalls/ltp.syscalls.fallocate02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fallocate03.sh b/testcase/syscalls/ltp.syscalls.fallocate03.sh index 887487c..b3c6237 100755 --- a/testcase/syscalls/ltp.syscalls.fallocate03.sh +++ b/testcase/syscalls/ltp.syscalls.fallocate03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fallocate04.sh b/testcase/syscalls/ltp.syscalls.fallocate04.sh index 2a37ce2..0df446a 100755 --- a/testcase/syscalls/ltp.syscalls.fallocate04.sh +++ b/testcase/syscalls/ltp.syscalls.fallocate04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fallocate05.sh b/testcase/syscalls/ltp.syscalls.fallocate05.sh index a956039..b7271fb 100755 --- a/testcase/syscalls/ltp.syscalls.fallocate05.sh +++ b/testcase/syscalls/ltp.syscalls.fallocate05.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fallocate06.sh b/testcase/syscalls/ltp.syscalls.fallocate06.sh index 520acdd..9c5e018 100755 --- a/testcase/syscalls/ltp.syscalls.fallocate06.sh +++ b/testcase/syscalls/ltp.syscalls.fallocate06.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify01.sh b/testcase/syscalls/ltp.syscalls.fanotify01.sh index 2d092fb..39baa6d 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify01.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify02.sh b/testcase/syscalls/ltp.syscalls.fanotify02.sh index 5c06b19..2b40939 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify02.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify03.sh b/testcase/syscalls/ltp.syscalls.fanotify03.sh index 2ef77c3..6174854 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify03.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify04.sh b/testcase/syscalls/ltp.syscalls.fanotify04.sh index 31cba49..2e0a9f8 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify04.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify05.sh b/testcase/syscalls/ltp.syscalls.fanotify05.sh index c37c85f..b6de5d4 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify05.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify06.sh b/testcase/syscalls/ltp.syscalls.fanotify06.sh index 1a3659c..3ad49bf 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify06.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify07.sh b/testcase/syscalls/ltp.syscalls.fanotify07.sh index 1e86a95..2609de1 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify07.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify08.sh b/testcase/syscalls/ltp.syscalls.fanotify08.sh index 67ebea3..cd055a5 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify08.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify09.sh b/testcase/syscalls/ltp.syscalls.fanotify09.sh index e329b48..013383a 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify09.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify10.sh b/testcase/syscalls/ltp.syscalls.fanotify10.sh index 61a90f5..22fc30a 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify10.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify11.sh b/testcase/syscalls/ltp.syscalls.fanotify11.sh index 33a1f8e..7bf31b2 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify11.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify12.sh b/testcase/syscalls/ltp.syscalls.fanotify12.sh index beefa0d..abe80a9 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify12.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify13.sh b/testcase/syscalls/ltp.syscalls.fanotify13.sh index 6317fb4..29089ff 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify13.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify14.sh b/testcase/syscalls/ltp.syscalls.fanotify14.sh index b33118d..f42b24b 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify14.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify15.sh b/testcase/syscalls/ltp.syscalls.fanotify15.sh index a525f8d..a521a6f 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify15.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify16.sh b/testcase/syscalls/ltp.syscalls.fanotify16.sh index db5245e..e52a581 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify16.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify17.sh b/testcase/syscalls/ltp.syscalls.fanotify17.sh index 67f9ac2..7f00e5d 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify17.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify18.sh b/testcase/syscalls/ltp.syscalls.fanotify18.sh index 5f0abb5..943b5de 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify18.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify19.sh b/testcase/syscalls/ltp.syscalls.fanotify19.sh index 87ffca8..221ba13 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify19.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify20.sh b/testcase/syscalls/ltp.syscalls.fanotify20.sh index 56c330a..1f5d8d6 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify20.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify20.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify21.sh b/testcase/syscalls/ltp.syscalls.fanotify21.sh index 4b4f932..8dca717 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify21.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify22.sh b/testcase/syscalls/ltp.syscalls.fanotify22.sh index df3cf04..51762c8 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify22.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify22.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fanotify23.sh b/testcase/syscalls/ltp.syscalls.fanotify23.sh index 1dbec09..c725851 100755 --- a/testcase/syscalls/ltp.syscalls.fanotify23.sh +++ b/testcase/syscalls/ltp.syscalls.fanotify23.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.fchdir01.sh b/testcase/syscalls/ltp.syscalls.fchdir01.sh index 5fba4a1..5f3b3bb 100755 --- a/testcase/syscalls/ltp.syscalls.fchdir01.sh +++ b/testcase/syscalls/ltp.syscalls.fchdir01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchdir02.sh b/testcase/syscalls/ltp.syscalls.fchdir02.sh index a884250..89ff4d0 100755 --- a/testcase/syscalls/ltp.syscalls.fchdir02.sh +++ b/testcase/syscalls/ltp.syscalls.fchdir02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchdir03.sh b/testcase/syscalls/ltp.syscalls.fchdir03.sh index 582199f..0151752 100755 --- a/testcase/syscalls/ltp.syscalls.fchdir03.sh +++ b/testcase/syscalls/ltp.syscalls.fchdir03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchmod01.sh b/testcase/syscalls/ltp.syscalls.fchmod01.sh index e4f4cd0..7f9c460 100755 --- a/testcase/syscalls/ltp.syscalls.fchmod01.sh +++ b/testcase/syscalls/ltp.syscalls.fchmod01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchmod02.sh b/testcase/syscalls/ltp.syscalls.fchmod02.sh index 2e97622..c75b21a 100755 --- a/testcase/syscalls/ltp.syscalls.fchmod02.sh +++ b/testcase/syscalls/ltp.syscalls.fchmod02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchmod03.sh b/testcase/syscalls/ltp.syscalls.fchmod03.sh index d639874..ba90c3e 100755 --- a/testcase/syscalls/ltp.syscalls.fchmod03.sh +++ b/testcase/syscalls/ltp.syscalls.fchmod03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchmod04.sh b/testcase/syscalls/ltp.syscalls.fchmod04.sh index adcedae..1541c8e 100755 --- a/testcase/syscalls/ltp.syscalls.fchmod04.sh +++ b/testcase/syscalls/ltp.syscalls.fchmod04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchmod05.sh b/testcase/syscalls/ltp.syscalls.fchmod05.sh index 5fcf621..155236d 100755 --- a/testcase/syscalls/ltp.syscalls.fchmod05.sh +++ b/testcase/syscalls/ltp.syscalls.fchmod05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchmod06.sh b/testcase/syscalls/ltp.syscalls.fchmod06.sh index 040a9ff..2b5ad16 100755 --- a/testcase/syscalls/ltp.syscalls.fchmod06.sh +++ b/testcase/syscalls/ltp.syscalls.fchmod06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchmodat01.sh b/testcase/syscalls/ltp.syscalls.fchmodat01.sh index 09980eb..a531a37 100755 --- a/testcase/syscalls/ltp.syscalls.fchmodat01.sh +++ b/testcase/syscalls/ltp.syscalls.fchmodat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchmodat02.sh b/testcase/syscalls/ltp.syscalls.fchmodat02.sh index c9cd2ca..68862e5 100755 --- a/testcase/syscalls/ltp.syscalls.fchmodat02.sh +++ b/testcase/syscalls/ltp.syscalls.fchmodat02.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.fchown01.sh b/testcase/syscalls/ltp.syscalls.fchown01.sh index a561061..23a6659 100755 --- a/testcase/syscalls/ltp.syscalls.fchown01.sh +++ b/testcase/syscalls/ltp.syscalls.fchown01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchown01_16.sh b/testcase/syscalls/ltp.syscalls.fchown01_16.sh index a604599..e9db5e4 100755 --- a/testcase/syscalls/ltp.syscalls.fchown01_16.sh +++ b/testcase/syscalls/ltp.syscalls.fchown01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchown02.sh b/testcase/syscalls/ltp.syscalls.fchown02.sh index 89570e8..dc9b7bc 100755 --- a/testcase/syscalls/ltp.syscalls.fchown02.sh +++ b/testcase/syscalls/ltp.syscalls.fchown02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchown02_16.sh b/testcase/syscalls/ltp.syscalls.fchown02_16.sh index c84a41b..ab3653f 100755 --- a/testcase/syscalls/ltp.syscalls.fchown02_16.sh +++ b/testcase/syscalls/ltp.syscalls.fchown02_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchown03.sh b/testcase/syscalls/ltp.syscalls.fchown03.sh index 48acfce..e62f447 100755 --- a/testcase/syscalls/ltp.syscalls.fchown03.sh +++ b/testcase/syscalls/ltp.syscalls.fchown03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchown03_16.sh b/testcase/syscalls/ltp.syscalls.fchown03_16.sh index 086cd72..8574cbe 100755 --- a/testcase/syscalls/ltp.syscalls.fchown03_16.sh +++ b/testcase/syscalls/ltp.syscalls.fchown03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchown04.sh b/testcase/syscalls/ltp.syscalls.fchown04.sh index 5d03269..6c0d873 100755 --- a/testcase/syscalls/ltp.syscalls.fchown04.sh +++ b/testcase/syscalls/ltp.syscalls.fchown04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchown04_16.sh b/testcase/syscalls/ltp.syscalls.fchown04_16.sh index 349c3fb..e77c873 100755 --- a/testcase/syscalls/ltp.syscalls.fchown04_16.sh +++ b/testcase/syscalls/ltp.syscalls.fchown04_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchown05.sh b/testcase/syscalls/ltp.syscalls.fchown05.sh index a1d74bd..7598fd2 100755 --- a/testcase/syscalls/ltp.syscalls.fchown05.sh +++ b/testcase/syscalls/ltp.syscalls.fchown05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchown05_16.sh b/testcase/syscalls/ltp.syscalls.fchown05_16.sh index b3965ed..75ec3fc 100755 --- a/testcase/syscalls/ltp.syscalls.fchown05_16.sh +++ b/testcase/syscalls/ltp.syscalls.fchown05_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchownat01.sh b/testcase/syscalls/ltp.syscalls.fchownat01.sh index 811e394..19964f8 100755 --- a/testcase/syscalls/ltp.syscalls.fchownat01.sh +++ b/testcase/syscalls/ltp.syscalls.fchownat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fchownat02.sh b/testcase/syscalls/ltp.syscalls.fchownat02.sh index e7322f1..64e14cb 100755 --- a/testcase/syscalls/ltp.syscalls.fchownat02.sh +++ b/testcase/syscalls/ltp.syscalls.fchownat02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl01.sh b/testcase/syscalls/ltp.syscalls.fcntl01.sh index ebf16cc..a9d282f 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl01.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl01_64.sh b/testcase/syscalls/ltp.syscalls.fcntl01_64.sh index 12d0162..4dc5cc1 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl01_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl01_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl02.sh b/testcase/syscalls/ltp.syscalls.fcntl02.sh index 41fe264..fa62c2d 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl02.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl02_64.sh b/testcase/syscalls/ltp.syscalls.fcntl02_64.sh index 9b3d236..3a5dc42 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl02_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl02_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl03.sh b/testcase/syscalls/ltp.syscalls.fcntl03.sh index 20c1113..78e7d3a 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl03.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl03_64.sh b/testcase/syscalls/ltp.syscalls.fcntl03_64.sh index 8d4d23e..78cdbe6 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl03_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl03_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl04.sh b/testcase/syscalls/ltp.syscalls.fcntl04.sh index e7145c3..d34ee24 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl04.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl04_64.sh b/testcase/syscalls/ltp.syscalls.fcntl04_64.sh index b3de0ad..64411c0 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl04_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl04_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl05.sh b/testcase/syscalls/ltp.syscalls.fcntl05.sh index f2be5fd..1eed280 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl05.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl05_64.sh b/testcase/syscalls/ltp.syscalls.fcntl05_64.sh index 124b16a..64e36ab 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl05_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl05_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl07.sh b/testcase/syscalls/ltp.syscalls.fcntl07.sh index 06bca1e..e99618c 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl07.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl07_64.sh b/testcase/syscalls/ltp.syscalls.fcntl07_64.sh index bb82020..fa702c0 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl07_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl07_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl08.sh b/testcase/syscalls/ltp.syscalls.fcntl08.sh index 66ce525..3bc728e 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl08.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl08_64.sh b/testcase/syscalls/ltp.syscalls.fcntl08_64.sh index 6c2474d..0a1ed20 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl08_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl08_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl09.sh b/testcase/syscalls/ltp.syscalls.fcntl09.sh index a4fa5b9..bb7324e 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl09.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl09_64.sh b/testcase/syscalls/ltp.syscalls.fcntl09_64.sh index 2a73247..0af67d6 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl09_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl09_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl10.sh b/testcase/syscalls/ltp.syscalls.fcntl10.sh index fe9d6f1..d65aaee 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl10.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl10_64.sh b/testcase/syscalls/ltp.syscalls.fcntl10_64.sh index 21eeed1..4e0250a 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl10_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl10_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl11.sh b/testcase/syscalls/ltp.syscalls.fcntl11.sh index e2b7df9..505e30e 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl11.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl11_64.sh b/testcase/syscalls/ltp.syscalls.fcntl11_64.sh index d80981f..244e788 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl11_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl11_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl12.sh b/testcase/syscalls/ltp.syscalls.fcntl12.sh index 47f400c..e65e2f6 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl12.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl12_64.sh b/testcase/syscalls/ltp.syscalls.fcntl12_64.sh index 99a3424..c1a99dd 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl12_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl12_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl13.sh b/testcase/syscalls/ltp.syscalls.fcntl13.sh index cdee71b..f520998 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl13.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl13_64.sh b/testcase/syscalls/ltp.syscalls.fcntl13_64.sh index fdac359..217a5c5 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl13_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl13_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl14.sh b/testcase/syscalls/ltp.syscalls.fcntl14.sh index c2f7620..c413056 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl14.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl14_64.sh b/testcase/syscalls/ltp.syscalls.fcntl14_64.sh index dec336d..5a2122c 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl14_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl14_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl15.sh b/testcase/syscalls/ltp.syscalls.fcntl15.sh index b2a60b3..0753f40 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl15.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl15_64.sh b/testcase/syscalls/ltp.syscalls.fcntl15_64.sh index 531bb23..63514be 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl15_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl15_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl16.sh b/testcase/syscalls/ltp.syscalls.fcntl16.sh index cc6ab1d..5035077 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl16.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl16_64.sh b/testcase/syscalls/ltp.syscalls.fcntl16_64.sh index ad003ec..f6c1219 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl16_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl16_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl17.sh b/testcase/syscalls/ltp.syscalls.fcntl17.sh index 7b60b6e..532c28b 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl17.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl17_64.sh b/testcase/syscalls/ltp.syscalls.fcntl17_64.sh index 5b5bf45..d128ddd 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl17_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl17_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl18.sh b/testcase/syscalls/ltp.syscalls.fcntl18.sh index da217ea..ba21bf9 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl18.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl18_64.sh b/testcase/syscalls/ltp.syscalls.fcntl18_64.sh index b792a95..276ac5a 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl18_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl18_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl19.sh b/testcase/syscalls/ltp.syscalls.fcntl19.sh index c04c1bc..b8781aa 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl19.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl19_64.sh b/testcase/syscalls/ltp.syscalls.fcntl19_64.sh index bb8d05a..bfaae91 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl19_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl19_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl20.sh b/testcase/syscalls/ltp.syscalls.fcntl20.sh index 81a7cdb..6c0eaf2 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl20.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl20.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl20_64.sh b/testcase/syscalls/ltp.syscalls.fcntl20_64.sh index 30546f1..78a9037 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl20_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl20_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl21.sh b/testcase/syscalls/ltp.syscalls.fcntl21.sh index ad93e34..9c0d2e4 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl21.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl21_64.sh b/testcase/syscalls/ltp.syscalls.fcntl21_64.sh index 6335e48..a203272 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl21_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl21_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl22.sh b/testcase/syscalls/ltp.syscalls.fcntl22.sh index 52160e2..fd48ce8 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl22.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl22.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl22_64.sh b/testcase/syscalls/ltp.syscalls.fcntl22_64.sh index b8775ea..8d5090c 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl22_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl22_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl23.sh b/testcase/syscalls/ltp.syscalls.fcntl23.sh index 853b67a..231a3fb 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl23.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl23.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl23_64.sh b/testcase/syscalls/ltp.syscalls.fcntl23_64.sh index 1178719..c06f15f 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl23_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl23_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl24.sh b/testcase/syscalls/ltp.syscalls.fcntl24.sh index 23817d8..f36e873 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl24.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl24.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl24_64.sh b/testcase/syscalls/ltp.syscalls.fcntl24_64.sh index 8199e25..b7fefb7 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl24_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl24_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl25.sh b/testcase/syscalls/ltp.syscalls.fcntl25.sh index 9b1dddf..3a13449 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl25.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl25.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl25_64.sh b/testcase/syscalls/ltp.syscalls.fcntl25_64.sh index 1021475..7101675 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl25_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl25_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl26.sh b/testcase/syscalls/ltp.syscalls.fcntl26.sh index e74574e..c69b71c 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl26.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl26.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl26_64.sh b/testcase/syscalls/ltp.syscalls.fcntl26_64.sh index c86457b..37ba35a 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl26_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl26_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl27.sh b/testcase/syscalls/ltp.syscalls.fcntl27.sh index 8b1dfdc..8d172c2 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl27.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl27.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl27_64.sh b/testcase/syscalls/ltp.syscalls.fcntl27_64.sh index 1986bc0..8439efc 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl27_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl27_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl29.sh b/testcase/syscalls/ltp.syscalls.fcntl29.sh index e0c3486..0fa48ad 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl29.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl29.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl29_64.sh b/testcase/syscalls/ltp.syscalls.fcntl29_64.sh index 1dc80de..705fba4 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl29_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl29_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl30.sh b/testcase/syscalls/ltp.syscalls.fcntl30.sh index 2535648..f537e62 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl30.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl30.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl30_64.sh b/testcase/syscalls/ltp.syscalls.fcntl30_64.sh index caf5ce5..1e39c64 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl30_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl30_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl31.sh b/testcase/syscalls/ltp.syscalls.fcntl31.sh index aa095ac..1a0d657 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl31.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl31.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl31_64.sh b/testcase/syscalls/ltp.syscalls.fcntl31_64.sh index a5965ad..e414437 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl31_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl31_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl32.sh b/testcase/syscalls/ltp.syscalls.fcntl32.sh index 86fd39d..d800c47 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl32.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl32.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl32_64.sh b/testcase/syscalls/ltp.syscalls.fcntl32_64.sh index 4f19655..8de2fac 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl32_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl32_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl33.sh b/testcase/syscalls/ltp.syscalls.fcntl33.sh index 7cfcc8b..59ed1c9 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl33.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl33.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl33_64.sh b/testcase/syscalls/ltp.syscalls.fcntl33_64.sh index 2239d83..48dacc8 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl33_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl33_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl34.sh b/testcase/syscalls/ltp.syscalls.fcntl34.sh index 8102031..a63d3a0 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl34.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl34.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl34_64.sh b/testcase/syscalls/ltp.syscalls.fcntl34_64.sh index 38c7d74..fc5f1e9 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl34_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl34_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl35.sh b/testcase/syscalls/ltp.syscalls.fcntl35.sh index cbc5346..22fddb2 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl35.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl35.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl35_64.sh b/testcase/syscalls/ltp.syscalls.fcntl35_64.sh index 8f8aced..cec7a57 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl35_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl35_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl36.sh b/testcase/syscalls/ltp.syscalls.fcntl36.sh index 9433010..4c978d2 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl36.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl36.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl36_64.sh b/testcase/syscalls/ltp.syscalls.fcntl36_64.sh index 1c512e9..0015e52 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl36_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl36_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl37.sh b/testcase/syscalls/ltp.syscalls.fcntl37.sh index 6fd36f5..ff6d378 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl37.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl37.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl37_64.sh b/testcase/syscalls/ltp.syscalls.fcntl37_64.sh index af4e017..3ec85b7 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl37_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl37_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl38.sh b/testcase/syscalls/ltp.syscalls.fcntl38.sh index 9a7981e..9ee5ea0 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl38.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl38.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl38_64.sh b/testcase/syscalls/ltp.syscalls.fcntl38_64.sh index 418d721..9403627 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl38_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl38_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl39.sh b/testcase/syscalls/ltp.syscalls.fcntl39.sh index 796a1de..ee77361 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl39.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl39.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fcntl39_64.sh b/testcase/syscalls/ltp.syscalls.fcntl39_64.sh index 8c4d798..7415b85 100755 --- a/testcase/syscalls/ltp.syscalls.fcntl39_64.sh +++ b/testcase/syscalls/ltp.syscalls.fcntl39_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fdatasync01.sh b/testcase/syscalls/ltp.syscalls.fdatasync01.sh index 199f81e..805c4a7 100755 --- a/testcase/syscalls/ltp.syscalls.fdatasync01.sh +++ b/testcase/syscalls/ltp.syscalls.fdatasync01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fdatasync02.sh b/testcase/syscalls/ltp.syscalls.fdatasync02.sh index e69bcd3..4228b42 100755 --- a/testcase/syscalls/ltp.syscalls.fdatasync02.sh +++ b/testcase/syscalls/ltp.syscalls.fdatasync02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fdatasync03.sh b/testcase/syscalls/ltp.syscalls.fdatasync03.sh index f01dc6d..d76c2fa 100755 --- a/testcase/syscalls/ltp.syscalls.fdatasync03.sh +++ b/testcase/syscalls/ltp.syscalls.fdatasync03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fgetxattr01.sh b/testcase/syscalls/ltp.syscalls.fgetxattr01.sh index 39b912d..a394700 100755 --- a/testcase/syscalls/ltp.syscalls.fgetxattr01.sh +++ b/testcase/syscalls/ltp.syscalls.fgetxattr01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fgetxattr02.sh b/testcase/syscalls/ltp.syscalls.fgetxattr02.sh index 51b5ed2..7cdd013 100755 --- a/testcase/syscalls/ltp.syscalls.fgetxattr02.sh +++ b/testcase/syscalls/ltp.syscalls.fgetxattr02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fgetxattr03.sh b/testcase/syscalls/ltp.syscalls.fgetxattr03.sh index 535354e..ce42e89 100755 --- a/testcase/syscalls/ltp.syscalls.fgetxattr03.sh +++ b/testcase/syscalls/ltp.syscalls.fgetxattr03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.finit_module01.sh b/testcase/syscalls/ltp.syscalls.finit_module01.sh index eb0a521..fb05f13 100755 --- a/testcase/syscalls/ltp.syscalls.finit_module01.sh +++ b/testcase/syscalls/ltp.syscalls.finit_module01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.finit_module02.sh b/testcase/syscalls/ltp.syscalls.finit_module02.sh index d1ef3b4..c80df55 100755 --- a/testcase/syscalls/ltp.syscalls.finit_module02.sh +++ b/testcase/syscalls/ltp.syscalls.finit_module02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.flistxattr01.sh b/testcase/syscalls/ltp.syscalls.flistxattr01.sh index 8deff02..c3939ca 100755 --- a/testcase/syscalls/ltp.syscalls.flistxattr01.sh +++ b/testcase/syscalls/ltp.syscalls.flistxattr01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.flistxattr02.sh b/testcase/syscalls/ltp.syscalls.flistxattr02.sh index 16b8cb9..5ad15c3 100755 --- a/testcase/syscalls/ltp.syscalls.flistxattr02.sh +++ b/testcase/syscalls/ltp.syscalls.flistxattr02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.flistxattr03.sh b/testcase/syscalls/ltp.syscalls.flistxattr03.sh index 0597cc0..cebb299 100755 --- a/testcase/syscalls/ltp.syscalls.flistxattr03.sh +++ b/testcase/syscalls/ltp.syscalls.flistxattr03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.flock01.sh b/testcase/syscalls/ltp.syscalls.flock01.sh index d6b88f5..24c874f 100755 --- a/testcase/syscalls/ltp.syscalls.flock01.sh +++ b/testcase/syscalls/ltp.syscalls.flock01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.flock02.sh b/testcase/syscalls/ltp.syscalls.flock02.sh index 6a3a3de..d4d2bb7 100755 --- a/testcase/syscalls/ltp.syscalls.flock02.sh +++ b/testcase/syscalls/ltp.syscalls.flock02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.flock03.sh b/testcase/syscalls/ltp.syscalls.flock03.sh index 2115e1b..86c585a 100755 --- a/testcase/syscalls/ltp.syscalls.flock03.sh +++ b/testcase/syscalls/ltp.syscalls.flock03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.flock04.sh b/testcase/syscalls/ltp.syscalls.flock04.sh index 8718e94..b350f21 100755 --- a/testcase/syscalls/ltp.syscalls.flock04.sh +++ b/testcase/syscalls/ltp.syscalls.flock04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.flock06.sh b/testcase/syscalls/ltp.syscalls.flock06.sh index d924e48..c88b713 100755 --- a/testcase/syscalls/ltp.syscalls.flock06.sh +++ b/testcase/syscalls/ltp.syscalls.flock06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fmtmsg01.sh b/testcase/syscalls/ltp.syscalls.fmtmsg01.sh index 864b177..5d99ee9 100755 --- a/testcase/syscalls/ltp.syscalls.fmtmsg01.sh +++ b/testcase/syscalls/ltp.syscalls.fmtmsg01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fork01.sh b/testcase/syscalls/ltp.syscalls.fork01.sh index 90adf4c..05f50de 100755 --- a/testcase/syscalls/ltp.syscalls.fork01.sh +++ b/testcase/syscalls/ltp.syscalls.fork01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fork03.sh b/testcase/syscalls/ltp.syscalls.fork03.sh index 7539e81..9aeb6d5 100755 --- a/testcase/syscalls/ltp.syscalls.fork03.sh +++ b/testcase/syscalls/ltp.syscalls.fork03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fork04.sh b/testcase/syscalls/ltp.syscalls.fork04.sh index 32bc5ec..7e8880d 100755 --- a/testcase/syscalls/ltp.syscalls.fork04.sh +++ b/testcase/syscalls/ltp.syscalls.fork04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fork05.sh b/testcase/syscalls/ltp.syscalls.fork05.sh index 0b6df20..e2ec662 100755 --- a/testcase/syscalls/ltp.syscalls.fork05.sh +++ b/testcase/syscalls/ltp.syscalls.fork05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fork06.sh b/testcase/syscalls/ltp.syscalls.fork06.sh index e4594ab..91761e1 100755 --- a/testcase/syscalls/ltp.syscalls.fork06.sh +++ b/testcase/syscalls/ltp.syscalls.fork06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fork07.sh b/testcase/syscalls/ltp.syscalls.fork07.sh index 043e60e..f413ba3 100755 --- a/testcase/syscalls/ltp.syscalls.fork07.sh +++ b/testcase/syscalls/ltp.syscalls.fork07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fork08.sh b/testcase/syscalls/ltp.syscalls.fork08.sh index 433f3f2..cc0921e 100755 --- a/testcase/syscalls/ltp.syscalls.fork08.sh +++ b/testcase/syscalls/ltp.syscalls.fork08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fork09.sh b/testcase/syscalls/ltp.syscalls.fork09.sh index 20795bd..56f19d4 100755 --- a/testcase/syscalls/ltp.syscalls.fork09.sh +++ b/testcase/syscalls/ltp.syscalls.fork09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fork10.sh b/testcase/syscalls/ltp.syscalls.fork10.sh index da62659..3b73b1b 100755 --- a/testcase/syscalls/ltp.syscalls.fork10.sh +++ b/testcase/syscalls/ltp.syscalls.fork10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fork11.sh b/testcase/syscalls/ltp.syscalls.fork11.sh index fa12c54..60b367d 100755 --- a/testcase/syscalls/ltp.syscalls.fork11.sh +++ b/testcase/syscalls/ltp.syscalls.fork11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fork13.sh b/testcase/syscalls/ltp.syscalls.fork13.sh index 39f242b..a8fbd61 100755 --- a/testcase/syscalls/ltp.syscalls.fork13.sh +++ b/testcase/syscalls/ltp.syscalls.fork13.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fork14.sh b/testcase/syscalls/ltp.syscalls.fork14.sh index ad8098d..9d33750 100755 --- a/testcase/syscalls/ltp.syscalls.fork14.sh +++ b/testcase/syscalls/ltp.syscalls.fork14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fpathconf01.sh b/testcase/syscalls/ltp.syscalls.fpathconf01.sh index 6df9bad..131a38d 100755 --- a/testcase/syscalls/ltp.syscalls.fpathconf01.sh +++ b/testcase/syscalls/ltp.syscalls.fpathconf01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fremovexattr01.sh b/testcase/syscalls/ltp.syscalls.fremovexattr01.sh index f60ba39..e104446 100755 --- a/testcase/syscalls/ltp.syscalls.fremovexattr01.sh +++ b/testcase/syscalls/ltp.syscalls.fremovexattr01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fremovexattr02.sh b/testcase/syscalls/ltp.syscalls.fremovexattr02.sh index 3d19aeb..f6181be 100755 --- a/testcase/syscalls/ltp.syscalls.fremovexattr02.sh +++ b/testcase/syscalls/ltp.syscalls.fremovexattr02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fsconfig01.sh b/testcase/syscalls/ltp.syscalls.fsconfig01.sh index 28346ae..c639262 100755 --- a/testcase/syscalls/ltp.syscalls.fsconfig01.sh +++ b/testcase/syscalls/ltp.syscalls.fsconfig01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fsconfig02.sh b/testcase/syscalls/ltp.syscalls.fsconfig02.sh index fcaabab..69a0691 100755 --- a/testcase/syscalls/ltp.syscalls.fsconfig02.sh +++ b/testcase/syscalls/ltp.syscalls.fsconfig02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fsconfig03.sh b/testcase/syscalls/ltp.syscalls.fsconfig03.sh index 962df23..fed1827 100755 --- a/testcase/syscalls/ltp.syscalls.fsconfig03.sh +++ b/testcase/syscalls/ltp.syscalls.fsconfig03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fsetxattr01.sh b/testcase/syscalls/ltp.syscalls.fsetxattr01.sh index 98d72b7..3f32920 100755 --- a/testcase/syscalls/ltp.syscalls.fsetxattr01.sh +++ b/testcase/syscalls/ltp.syscalls.fsetxattr01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fsetxattr02.sh b/testcase/syscalls/ltp.syscalls.fsetxattr02.sh index 74eadb9..b067131 100755 --- a/testcase/syscalls/ltp.syscalls.fsetxattr02.sh +++ b/testcase/syscalls/ltp.syscalls.fsetxattr02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fsmount01.sh b/testcase/syscalls/ltp.syscalls.fsmount01.sh index fd75673..0169386 100755 --- a/testcase/syscalls/ltp.syscalls.fsmount01.sh +++ b/testcase/syscalls/ltp.syscalls.fsmount01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fsmount02.sh b/testcase/syscalls/ltp.syscalls.fsmount02.sh index 134ec6d..159656a 100755 --- a/testcase/syscalls/ltp.syscalls.fsmount02.sh +++ b/testcase/syscalls/ltp.syscalls.fsmount02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fsopen01.sh b/testcase/syscalls/ltp.syscalls.fsopen01.sh index 0e41b81..76a0c56 100755 --- a/testcase/syscalls/ltp.syscalls.fsopen01.sh +++ b/testcase/syscalls/ltp.syscalls.fsopen01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fsopen02.sh b/testcase/syscalls/ltp.syscalls.fsopen02.sh index 629029c..f07c179 100755 --- a/testcase/syscalls/ltp.syscalls.fsopen02.sh +++ b/testcase/syscalls/ltp.syscalls.fsopen02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fspick01.sh b/testcase/syscalls/ltp.syscalls.fspick01.sh index 5f940c5..26efe0f 100755 --- a/testcase/syscalls/ltp.syscalls.fspick01.sh +++ b/testcase/syscalls/ltp.syscalls.fspick01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fspick02.sh b/testcase/syscalls/ltp.syscalls.fspick02.sh index 826b87f..580cade 100755 --- a/testcase/syscalls/ltp.syscalls.fspick02.sh +++ b/testcase/syscalls/ltp.syscalls.fspick02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fstat02.sh b/testcase/syscalls/ltp.syscalls.fstat02.sh index 79bf4e2..4afcc99 100755 --- a/testcase/syscalls/ltp.syscalls.fstat02.sh +++ b/testcase/syscalls/ltp.syscalls.fstat02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fstat02_64.sh b/testcase/syscalls/ltp.syscalls.fstat02_64.sh index a142f04..1088625 100755 --- a/testcase/syscalls/ltp.syscalls.fstat02_64.sh +++ b/testcase/syscalls/ltp.syscalls.fstat02_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fstat03.sh b/testcase/syscalls/ltp.syscalls.fstat03.sh index ae59b34..4a75eb2 100755 --- a/testcase/syscalls/ltp.syscalls.fstat03.sh +++ b/testcase/syscalls/ltp.syscalls.fstat03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fstat03_64.sh b/testcase/syscalls/ltp.syscalls.fstat03_64.sh index cda22b3..cfceec8 100755 --- a/testcase/syscalls/ltp.syscalls.fstat03_64.sh +++ b/testcase/syscalls/ltp.syscalls.fstat03_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fstatat01.sh b/testcase/syscalls/ltp.syscalls.fstatat01.sh index 2f67d71..8b63bb3 100755 --- a/testcase/syscalls/ltp.syscalls.fstatat01.sh +++ b/testcase/syscalls/ltp.syscalls.fstatat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fstatfs01.sh b/testcase/syscalls/ltp.syscalls.fstatfs01.sh index dd828e9..62de356 100755 --- a/testcase/syscalls/ltp.syscalls.fstatfs01.sh +++ b/testcase/syscalls/ltp.syscalls.fstatfs01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fstatfs01_64.sh b/testcase/syscalls/ltp.syscalls.fstatfs01_64.sh index 9a88a5b..c3d4894 100755 --- a/testcase/syscalls/ltp.syscalls.fstatfs01_64.sh +++ b/testcase/syscalls/ltp.syscalls.fstatfs01_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fstatfs02.sh b/testcase/syscalls/ltp.syscalls.fstatfs02.sh index b420d80..2d4cd8f 100755 --- a/testcase/syscalls/ltp.syscalls.fstatfs02.sh +++ b/testcase/syscalls/ltp.syscalls.fstatfs02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fstatfs02_64.sh b/testcase/syscalls/ltp.syscalls.fstatfs02_64.sh index 025fb5c..40c681f 100755 --- a/testcase/syscalls/ltp.syscalls.fstatfs02_64.sh +++ b/testcase/syscalls/ltp.syscalls.fstatfs02_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fsync01.sh b/testcase/syscalls/ltp.syscalls.fsync01.sh index ff5f655..55a35d8 100755 --- a/testcase/syscalls/ltp.syscalls.fsync01.sh +++ b/testcase/syscalls/ltp.syscalls.fsync01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fsync02.sh b/testcase/syscalls/ltp.syscalls.fsync02.sh index eb73361..5952877 100755 --- a/testcase/syscalls/ltp.syscalls.fsync02.sh +++ b/testcase/syscalls/ltp.syscalls.fsync02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fsync03.sh b/testcase/syscalls/ltp.syscalls.fsync03.sh index e1aaa78..c57a5ea 100755 --- a/testcase/syscalls/ltp.syscalls.fsync03.sh +++ b/testcase/syscalls/ltp.syscalls.fsync03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.fsync04.sh b/testcase/syscalls/ltp.syscalls.fsync04.sh index a44c327..2a7d1e8 100755 --- a/testcase/syscalls/ltp.syscalls.fsync04.sh +++ b/testcase/syscalls/ltp.syscalls.fsync04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ftruncate01.sh b/testcase/syscalls/ltp.syscalls.ftruncate01.sh index a3dc4fb..45946bb 100755 --- a/testcase/syscalls/ltp.syscalls.ftruncate01.sh +++ b/testcase/syscalls/ltp.syscalls.ftruncate01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ftruncate01_64.sh b/testcase/syscalls/ltp.syscalls.ftruncate01_64.sh index ca676c2..15babe1 100755 --- a/testcase/syscalls/ltp.syscalls.ftruncate01_64.sh +++ b/testcase/syscalls/ltp.syscalls.ftruncate01_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ftruncate03.sh b/testcase/syscalls/ltp.syscalls.ftruncate03.sh index b3cd08e..60cf0b6 100755 --- a/testcase/syscalls/ltp.syscalls.ftruncate03.sh +++ b/testcase/syscalls/ltp.syscalls.ftruncate03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ftruncate03_64.sh b/testcase/syscalls/ltp.syscalls.ftruncate03_64.sh index 6783691..766ffba 100755 --- a/testcase/syscalls/ltp.syscalls.ftruncate03_64.sh +++ b/testcase/syscalls/ltp.syscalls.ftruncate03_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ftruncate04.sh b/testcase/syscalls/ltp.syscalls.ftruncate04.sh index cdb534c..ea69b49 100755 --- a/testcase/syscalls/ltp.syscalls.ftruncate04.sh +++ b/testcase/syscalls/ltp.syscalls.ftruncate04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ftruncate04_64.sh b/testcase/syscalls/ltp.syscalls.ftruncate04_64.sh index 6037b50..55e66ce 100755 --- a/testcase/syscalls/ltp.syscalls.ftruncate04_64.sh +++ b/testcase/syscalls/ltp.syscalls.ftruncate04_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.futex_cmp_requeue01.sh b/testcase/syscalls/ltp.syscalls.futex_cmp_requeue01.sh index fe826c6..729c8a0 100755 --- a/testcase/syscalls/ltp.syscalls.futex_cmp_requeue01.sh +++ b/testcase/syscalls/ltp.syscalls.futex_cmp_requeue01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.futex_cmp_requeue02.sh b/testcase/syscalls/ltp.syscalls.futex_cmp_requeue02.sh index 8c03100..ecfb5a2 100755 --- a/testcase/syscalls/ltp.syscalls.futex_cmp_requeue02.sh +++ b/testcase/syscalls/ltp.syscalls.futex_cmp_requeue02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.futex_wait01.sh b/testcase/syscalls/ltp.syscalls.futex_wait01.sh index 03fb83e..eced552 100755 --- a/testcase/syscalls/ltp.syscalls.futex_wait01.sh +++ b/testcase/syscalls/ltp.syscalls.futex_wait01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.futex_wait02.sh b/testcase/syscalls/ltp.syscalls.futex_wait02.sh index ec97164..29c70ca 100755 --- a/testcase/syscalls/ltp.syscalls.futex_wait02.sh +++ b/testcase/syscalls/ltp.syscalls.futex_wait02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.futex_wait03.sh b/testcase/syscalls/ltp.syscalls.futex_wait03.sh index ee042a0..49cd4f0 100755 --- a/testcase/syscalls/ltp.syscalls.futex_wait03.sh +++ b/testcase/syscalls/ltp.syscalls.futex_wait03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.futex_wait04.sh b/testcase/syscalls/ltp.syscalls.futex_wait04.sh index daac7e9..b64c250 100755 --- a/testcase/syscalls/ltp.syscalls.futex_wait04.sh +++ b/testcase/syscalls/ltp.syscalls.futex_wait04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.futex_wait05.sh b/testcase/syscalls/ltp.syscalls.futex_wait05.sh index 7cd1db8..68c6066 100755 --- a/testcase/syscalls/ltp.syscalls.futex_wait05.sh +++ b/testcase/syscalls/ltp.syscalls.futex_wait05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.futex_wait_bitset01.sh b/testcase/syscalls/ltp.syscalls.futex_wait_bitset01.sh index 4f77092..c35fb0f 100755 --- a/testcase/syscalls/ltp.syscalls.futex_wait_bitset01.sh +++ b/testcase/syscalls/ltp.syscalls.futex_wait_bitset01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.futex_waitv01.sh b/testcase/syscalls/ltp.syscalls.futex_waitv01.sh index 6ebf8db..24942fe 100755 --- a/testcase/syscalls/ltp.syscalls.futex_waitv01.sh +++ b/testcase/syscalls/ltp.syscalls.futex_waitv01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.futex_waitv02.sh b/testcase/syscalls/ltp.syscalls.futex_waitv02.sh index ace5382..b171e36 100755 --- a/testcase/syscalls/ltp.syscalls.futex_waitv02.sh +++ b/testcase/syscalls/ltp.syscalls.futex_waitv02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.futex_waitv03.sh b/testcase/syscalls/ltp.syscalls.futex_waitv03.sh index c728b32..9b7a24e 100755 --- a/testcase/syscalls/ltp.syscalls.futex_waitv03.sh +++ b/testcase/syscalls/ltp.syscalls.futex_waitv03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.futex_wake01.sh b/testcase/syscalls/ltp.syscalls.futex_wake01.sh index 83e0acf..191d240 100755 --- a/testcase/syscalls/ltp.syscalls.futex_wake01.sh +++ b/testcase/syscalls/ltp.syscalls.futex_wake01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.futex_wake02.sh b/testcase/syscalls/ltp.syscalls.futex_wake02.sh index 175a72d..247ea0b 100755 --- a/testcase/syscalls/ltp.syscalls.futex_wake02.sh +++ b/testcase/syscalls/ltp.syscalls.futex_wake02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.futex_wake03.sh b/testcase/syscalls/ltp.syscalls.futex_wake03.sh index d947f3c..f3b6820 100755 --- a/testcase/syscalls/ltp.syscalls.futex_wake03.sh +++ b/testcase/syscalls/ltp.syscalls.futex_wake03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.futex_wake04.sh b/testcase/syscalls/ltp.syscalls.futex_wake04.sh index 98356d0..4ae428f 100755 --- a/testcase/syscalls/ltp.syscalls.futex_wake04.sh +++ b/testcase/syscalls/ltp.syscalls.futex_wake04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.futimesat01.sh b/testcase/syscalls/ltp.syscalls.futimesat01.sh index edb33ba..263748f 100755 --- a/testcase/syscalls/ltp.syscalls.futimesat01.sh +++ b/testcase/syscalls/ltp.syscalls.futimesat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.get_mempolicy01.sh b/testcase/syscalls/ltp.syscalls.get_mempolicy01.sh index e7a420f..f5d88ec 100755 --- a/testcase/syscalls/ltp.syscalls.get_mempolicy01.sh +++ b/testcase/syscalls/ltp.syscalls.get_mempolicy01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.get_mempolicy02.sh b/testcase/syscalls/ltp.syscalls.get_mempolicy02.sh index a6a93e9..fff6581 100755 --- a/testcase/syscalls/ltp.syscalls.get_mempolicy02.sh +++ b/testcase/syscalls/ltp.syscalls.get_mempolicy02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.get_robust_list01.sh b/testcase/syscalls/ltp.syscalls.get_robust_list01.sh index 6fe3f41..96ff7e7 100755 --- a/testcase/syscalls/ltp.syscalls.get_robust_list01.sh +++ b/testcase/syscalls/ltp.syscalls.get_robust_list01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getcontext01.sh b/testcase/syscalls/ltp.syscalls.getcontext01.sh index c422cee..43126d9 100755 --- a/testcase/syscalls/ltp.syscalls.getcontext01.sh +++ b/testcase/syscalls/ltp.syscalls.getcontext01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getcpu01.sh b/testcase/syscalls/ltp.syscalls.getcpu01.sh index be2e341..c5f7dda 100755 --- a/testcase/syscalls/ltp.syscalls.getcpu01.sh +++ b/testcase/syscalls/ltp.syscalls.getcpu01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getcwd01.sh b/testcase/syscalls/ltp.syscalls.getcwd01.sh index 6b0180f..68482f7 100755 --- a/testcase/syscalls/ltp.syscalls.getcwd01.sh +++ b/testcase/syscalls/ltp.syscalls.getcwd01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getcwd02.sh b/testcase/syscalls/ltp.syscalls.getcwd02.sh index 79ebd1e..bd1fb3c 100755 --- a/testcase/syscalls/ltp.syscalls.getcwd02.sh +++ b/testcase/syscalls/ltp.syscalls.getcwd02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getcwd03.sh b/testcase/syscalls/ltp.syscalls.getcwd03.sh index c7bd758..f662b2e 100755 --- a/testcase/syscalls/ltp.syscalls.getcwd03.sh +++ b/testcase/syscalls/ltp.syscalls.getcwd03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getcwd04.sh b/testcase/syscalls/ltp.syscalls.getcwd04.sh index 4d5cd66..c69763f 100755 --- a/testcase/syscalls/ltp.syscalls.getcwd04.sh +++ b/testcase/syscalls/ltp.syscalls.getcwd04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getdents01.sh b/testcase/syscalls/ltp.syscalls.getdents01.sh index d5aa415..a1cc1f4 100755 --- a/testcase/syscalls/ltp.syscalls.getdents01.sh +++ b/testcase/syscalls/ltp.syscalls.getdents01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getdents02.sh b/testcase/syscalls/ltp.syscalls.getdents02.sh index ff69270..ab2209b 100755 --- a/testcase/syscalls/ltp.syscalls.getdents02.sh +++ b/testcase/syscalls/ltp.syscalls.getdents02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getdomainname01.sh b/testcase/syscalls/ltp.syscalls.getdomainname01.sh index 2ca3868..59ee1de 100755 --- a/testcase/syscalls/ltp.syscalls.getdomainname01.sh +++ b/testcase/syscalls/ltp.syscalls.getdomainname01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getegid01.sh b/testcase/syscalls/ltp.syscalls.getegid01.sh index f75af69..a8b6568 100755 --- a/testcase/syscalls/ltp.syscalls.getegid01.sh +++ b/testcase/syscalls/ltp.syscalls.getegid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getegid01_16.sh b/testcase/syscalls/ltp.syscalls.getegid01_16.sh index 7668211..8b7dacc 100755 --- a/testcase/syscalls/ltp.syscalls.getegid01_16.sh +++ b/testcase/syscalls/ltp.syscalls.getegid01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getegid02.sh b/testcase/syscalls/ltp.syscalls.getegid02.sh index 9b82656..625a514 100755 --- a/testcase/syscalls/ltp.syscalls.getegid02.sh +++ b/testcase/syscalls/ltp.syscalls.getegid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getegid02_16.sh b/testcase/syscalls/ltp.syscalls.getegid02_16.sh index 50d7e06..4f7d682 100755 --- a/testcase/syscalls/ltp.syscalls.getegid02_16.sh +++ b/testcase/syscalls/ltp.syscalls.getegid02_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.geteuid01.sh b/testcase/syscalls/ltp.syscalls.geteuid01.sh index 326bb13..b883857 100755 --- a/testcase/syscalls/ltp.syscalls.geteuid01.sh +++ b/testcase/syscalls/ltp.syscalls.geteuid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.geteuid01_16.sh b/testcase/syscalls/ltp.syscalls.geteuid01_16.sh index 3dff6eb..c01cf34 100755 --- a/testcase/syscalls/ltp.syscalls.geteuid01_16.sh +++ b/testcase/syscalls/ltp.syscalls.geteuid01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.geteuid02.sh b/testcase/syscalls/ltp.syscalls.geteuid02.sh index 5f6811b..a2ec482 100755 --- a/testcase/syscalls/ltp.syscalls.geteuid02.sh +++ b/testcase/syscalls/ltp.syscalls.geteuid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.geteuid02_16.sh b/testcase/syscalls/ltp.syscalls.geteuid02_16.sh index 1ca7021..7889836 100755 --- a/testcase/syscalls/ltp.syscalls.geteuid02_16.sh +++ b/testcase/syscalls/ltp.syscalls.geteuid02_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getgid01.sh b/testcase/syscalls/ltp.syscalls.getgid01.sh index fde32d4..b310e24 100755 --- a/testcase/syscalls/ltp.syscalls.getgid01.sh +++ b/testcase/syscalls/ltp.syscalls.getgid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getgid01_16.sh b/testcase/syscalls/ltp.syscalls.getgid01_16.sh index d9fa1fe..6332102 100755 --- a/testcase/syscalls/ltp.syscalls.getgid01_16.sh +++ b/testcase/syscalls/ltp.syscalls.getgid01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getgid03.sh b/testcase/syscalls/ltp.syscalls.getgid03.sh index cfa336e..b6d0d70 100755 --- a/testcase/syscalls/ltp.syscalls.getgid03.sh +++ b/testcase/syscalls/ltp.syscalls.getgid03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getgid03_16.sh b/testcase/syscalls/ltp.syscalls.getgid03_16.sh index 3197fc3..c559d1f 100755 --- a/testcase/syscalls/ltp.syscalls.getgid03_16.sh +++ b/testcase/syscalls/ltp.syscalls.getgid03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getgroups01.sh b/testcase/syscalls/ltp.syscalls.getgroups01.sh index e5ba674..47951b4 100755 --- a/testcase/syscalls/ltp.syscalls.getgroups01.sh +++ b/testcase/syscalls/ltp.syscalls.getgroups01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getgroups01_16.sh b/testcase/syscalls/ltp.syscalls.getgroups01_16.sh index faf984b..2d35f5d 100755 --- a/testcase/syscalls/ltp.syscalls.getgroups01_16.sh +++ b/testcase/syscalls/ltp.syscalls.getgroups01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getgroups03.sh b/testcase/syscalls/ltp.syscalls.getgroups03.sh index 485cf28..cb277ba 100755 --- a/testcase/syscalls/ltp.syscalls.getgroups03.sh +++ b/testcase/syscalls/ltp.syscalls.getgroups03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getgroups03_16.sh b/testcase/syscalls/ltp.syscalls.getgroups03_16.sh index 60bb140..4304fec 100755 --- a/testcase/syscalls/ltp.syscalls.getgroups03_16.sh +++ b/testcase/syscalls/ltp.syscalls.getgroups03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.gethostbyname_r01.sh b/testcase/syscalls/ltp.syscalls.gethostbyname_r01.sh index bfbe795..73a6912 100755 --- a/testcase/syscalls/ltp.syscalls.gethostbyname_r01.sh +++ b/testcase/syscalls/ltp.syscalls.gethostbyname_r01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.gethostid01.sh b/testcase/syscalls/ltp.syscalls.gethostid01.sh index 74f74fd..aa266d6 100755 --- a/testcase/syscalls/ltp.syscalls.gethostid01.sh +++ b/testcase/syscalls/ltp.syscalls.gethostid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.gethostname01.sh b/testcase/syscalls/ltp.syscalls.gethostname01.sh index 750c8e5..0282d33 100755 --- a/testcase/syscalls/ltp.syscalls.gethostname01.sh +++ b/testcase/syscalls/ltp.syscalls.gethostname01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.gethostname02.sh b/testcase/syscalls/ltp.syscalls.gethostname02.sh index 53f2dc8..6bb2ae7 100755 --- a/testcase/syscalls/ltp.syscalls.gethostname02.sh +++ b/testcase/syscalls/ltp.syscalls.gethostname02.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.getitimer01.sh b/testcase/syscalls/ltp.syscalls.getitimer01.sh index 859fd8a..abc844e 100755 --- a/testcase/syscalls/ltp.syscalls.getitimer01.sh +++ b/testcase/syscalls/ltp.syscalls.getitimer01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getitimer02.sh b/testcase/syscalls/ltp.syscalls.getitimer02.sh index 3edcf98..de5df47 100755 --- a/testcase/syscalls/ltp.syscalls.getitimer02.sh +++ b/testcase/syscalls/ltp.syscalls.getitimer02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getpagesize01.sh b/testcase/syscalls/ltp.syscalls.getpagesize01.sh index 03ba8d2..fecc277 100755 --- a/testcase/syscalls/ltp.syscalls.getpagesize01.sh +++ b/testcase/syscalls/ltp.syscalls.getpagesize01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getpeername01.sh b/testcase/syscalls/ltp.syscalls.getpeername01.sh index 7bd7529..061a5fb 100755 --- a/testcase/syscalls/ltp.syscalls.getpeername01.sh +++ b/testcase/syscalls/ltp.syscalls.getpeername01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getpgid01.sh b/testcase/syscalls/ltp.syscalls.getpgid01.sh index 802bc6d..c0ab4f5 100755 --- a/testcase/syscalls/ltp.syscalls.getpgid01.sh +++ b/testcase/syscalls/ltp.syscalls.getpgid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getpgid02.sh b/testcase/syscalls/ltp.syscalls.getpgid02.sh index d140bc9..c27f972 100755 --- a/testcase/syscalls/ltp.syscalls.getpgid02.sh +++ b/testcase/syscalls/ltp.syscalls.getpgid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getpgrp01.sh b/testcase/syscalls/ltp.syscalls.getpgrp01.sh index 2ad099e..9e51655 100755 --- a/testcase/syscalls/ltp.syscalls.getpgrp01.sh +++ b/testcase/syscalls/ltp.syscalls.getpgrp01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getpid01.sh b/testcase/syscalls/ltp.syscalls.getpid01.sh index dbd1963..8996343 100755 --- a/testcase/syscalls/ltp.syscalls.getpid01.sh +++ b/testcase/syscalls/ltp.syscalls.getpid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getpid02.sh b/testcase/syscalls/ltp.syscalls.getpid02.sh index ca667d2..8eada4f 100755 --- a/testcase/syscalls/ltp.syscalls.getpid02.sh +++ b/testcase/syscalls/ltp.syscalls.getpid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getppid01.sh b/testcase/syscalls/ltp.syscalls.getppid01.sh index 4cc0dd7..399e7ff 100755 --- a/testcase/syscalls/ltp.syscalls.getppid01.sh +++ b/testcase/syscalls/ltp.syscalls.getppid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getppid02.sh b/testcase/syscalls/ltp.syscalls.getppid02.sh index 20f118f..3b82cd0 100755 --- a/testcase/syscalls/ltp.syscalls.getppid02.sh +++ b/testcase/syscalls/ltp.syscalls.getppid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getpriority01.sh b/testcase/syscalls/ltp.syscalls.getpriority01.sh index 56c001d..5f78fd5 100755 --- a/testcase/syscalls/ltp.syscalls.getpriority01.sh +++ b/testcase/syscalls/ltp.syscalls.getpriority01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getpriority02.sh b/testcase/syscalls/ltp.syscalls.getpriority02.sh index c559962..66493f1 100755 --- a/testcase/syscalls/ltp.syscalls.getpriority02.sh +++ b/testcase/syscalls/ltp.syscalls.getpriority02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getrandom01.sh b/testcase/syscalls/ltp.syscalls.getrandom01.sh index f8f0ef2..9559591 100755 --- a/testcase/syscalls/ltp.syscalls.getrandom01.sh +++ b/testcase/syscalls/ltp.syscalls.getrandom01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getrandom02.sh b/testcase/syscalls/ltp.syscalls.getrandom02.sh index de01a86..686da48 100755 --- a/testcase/syscalls/ltp.syscalls.getrandom02.sh +++ b/testcase/syscalls/ltp.syscalls.getrandom02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getrandom03.sh b/testcase/syscalls/ltp.syscalls.getrandom03.sh index 1aa2af0..9e69acb 100755 --- a/testcase/syscalls/ltp.syscalls.getrandom03.sh +++ b/testcase/syscalls/ltp.syscalls.getrandom03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getrandom04.sh b/testcase/syscalls/ltp.syscalls.getrandom04.sh index d16bcd3..96de885 100755 --- a/testcase/syscalls/ltp.syscalls.getrandom04.sh +++ b/testcase/syscalls/ltp.syscalls.getrandom04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getrandom05.sh b/testcase/syscalls/ltp.syscalls.getrandom05.sh index 7d36b40..e38db4e 100755 --- a/testcase/syscalls/ltp.syscalls.getrandom05.sh +++ b/testcase/syscalls/ltp.syscalls.getrandom05.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.getresgid01.sh b/testcase/syscalls/ltp.syscalls.getresgid01.sh index 4ec4730..768edc5 100755 --- a/testcase/syscalls/ltp.syscalls.getresgid01.sh +++ b/testcase/syscalls/ltp.syscalls.getresgid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getresgid01_16.sh b/testcase/syscalls/ltp.syscalls.getresgid01_16.sh index 4b30ed4..a342e69 100755 --- a/testcase/syscalls/ltp.syscalls.getresgid01_16.sh +++ b/testcase/syscalls/ltp.syscalls.getresgid01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getresgid02.sh b/testcase/syscalls/ltp.syscalls.getresgid02.sh index 60e900d..1a6670b 100755 --- a/testcase/syscalls/ltp.syscalls.getresgid02.sh +++ b/testcase/syscalls/ltp.syscalls.getresgid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getresgid02_16.sh b/testcase/syscalls/ltp.syscalls.getresgid02_16.sh index 9b9827b..24b2a69 100755 --- a/testcase/syscalls/ltp.syscalls.getresgid02_16.sh +++ b/testcase/syscalls/ltp.syscalls.getresgid02_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getresgid03.sh b/testcase/syscalls/ltp.syscalls.getresgid03.sh index 83c9058..4574ef0 100755 --- a/testcase/syscalls/ltp.syscalls.getresgid03.sh +++ b/testcase/syscalls/ltp.syscalls.getresgid03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getresgid03_16.sh b/testcase/syscalls/ltp.syscalls.getresgid03_16.sh index 5c9f8b8..8b7d82d 100755 --- a/testcase/syscalls/ltp.syscalls.getresgid03_16.sh +++ b/testcase/syscalls/ltp.syscalls.getresgid03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getresuid01.sh b/testcase/syscalls/ltp.syscalls.getresuid01.sh index 077564d..9d29a9b 100755 --- a/testcase/syscalls/ltp.syscalls.getresuid01.sh +++ b/testcase/syscalls/ltp.syscalls.getresuid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getresuid01_16.sh b/testcase/syscalls/ltp.syscalls.getresuid01_16.sh index ef13180..8ec1a7b 100755 --- a/testcase/syscalls/ltp.syscalls.getresuid01_16.sh +++ b/testcase/syscalls/ltp.syscalls.getresuid01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getresuid02.sh b/testcase/syscalls/ltp.syscalls.getresuid02.sh index a5d29c0..e13bce4 100755 --- a/testcase/syscalls/ltp.syscalls.getresuid02.sh +++ b/testcase/syscalls/ltp.syscalls.getresuid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getresuid02_16.sh b/testcase/syscalls/ltp.syscalls.getresuid02_16.sh index d994928..890de83 100755 --- a/testcase/syscalls/ltp.syscalls.getresuid02_16.sh +++ b/testcase/syscalls/ltp.syscalls.getresuid02_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getresuid03.sh b/testcase/syscalls/ltp.syscalls.getresuid03.sh index 8abc131..2073351 100755 --- a/testcase/syscalls/ltp.syscalls.getresuid03.sh +++ b/testcase/syscalls/ltp.syscalls.getresuid03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getresuid03_16.sh b/testcase/syscalls/ltp.syscalls.getresuid03_16.sh index 4e1cf75..56143b4 100755 --- a/testcase/syscalls/ltp.syscalls.getresuid03_16.sh +++ b/testcase/syscalls/ltp.syscalls.getresuid03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getrlimit01.sh b/testcase/syscalls/ltp.syscalls.getrlimit01.sh index 75db19d..f4dc8e5 100755 --- a/testcase/syscalls/ltp.syscalls.getrlimit01.sh +++ b/testcase/syscalls/ltp.syscalls.getrlimit01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getrlimit02.sh b/testcase/syscalls/ltp.syscalls.getrlimit02.sh index 870edf6..ab11eec 100755 --- a/testcase/syscalls/ltp.syscalls.getrlimit02.sh +++ b/testcase/syscalls/ltp.syscalls.getrlimit02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getrlimit03.sh b/testcase/syscalls/ltp.syscalls.getrlimit03.sh index 520e9ac..008eb04 100755 --- a/testcase/syscalls/ltp.syscalls.getrlimit03.sh +++ b/testcase/syscalls/ltp.syscalls.getrlimit03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getrusage01.sh b/testcase/syscalls/ltp.syscalls.getrusage01.sh index 1f7286b..012d60b 100755 --- a/testcase/syscalls/ltp.syscalls.getrusage01.sh +++ b/testcase/syscalls/ltp.syscalls.getrusage01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getrusage02.sh b/testcase/syscalls/ltp.syscalls.getrusage02.sh index d31c521..0a98a84 100755 --- a/testcase/syscalls/ltp.syscalls.getrusage02.sh +++ b/testcase/syscalls/ltp.syscalls.getrusage02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getrusage03.sh b/testcase/syscalls/ltp.syscalls.getrusage03.sh index bc569e0..3465866 100755 --- a/testcase/syscalls/ltp.syscalls.getrusage03.sh +++ b/testcase/syscalls/ltp.syscalls.getrusage03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getrusage04.sh b/testcase/syscalls/ltp.syscalls.getrusage04.sh index b83b406..11e86d0 100755 --- a/testcase/syscalls/ltp.syscalls.getrusage04.sh +++ b/testcase/syscalls/ltp.syscalls.getrusage04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getsid01.sh b/testcase/syscalls/ltp.syscalls.getsid01.sh index bec84aa..97a208f 100755 --- a/testcase/syscalls/ltp.syscalls.getsid01.sh +++ b/testcase/syscalls/ltp.syscalls.getsid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getsid02.sh b/testcase/syscalls/ltp.syscalls.getsid02.sh index 4a65490..213d31a 100755 --- a/testcase/syscalls/ltp.syscalls.getsid02.sh +++ b/testcase/syscalls/ltp.syscalls.getsid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getsockname01.sh b/testcase/syscalls/ltp.syscalls.getsockname01.sh index 75d94b0..a3614ed 100755 --- a/testcase/syscalls/ltp.syscalls.getsockname01.sh +++ b/testcase/syscalls/ltp.syscalls.getsockname01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getsockopt01.sh b/testcase/syscalls/ltp.syscalls.getsockopt01.sh index 5f940d6..30ba07a 100755 --- a/testcase/syscalls/ltp.syscalls.getsockopt01.sh +++ b/testcase/syscalls/ltp.syscalls.getsockopt01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getsockopt02.sh b/testcase/syscalls/ltp.syscalls.getsockopt02.sh index 4d041fd..4f0f42b 100755 --- a/testcase/syscalls/ltp.syscalls.getsockopt02.sh +++ b/testcase/syscalls/ltp.syscalls.getsockopt02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.gettid01.sh b/testcase/syscalls/ltp.syscalls.gettid01.sh index 27268de..db0f907 100755 --- a/testcase/syscalls/ltp.syscalls.gettid01.sh +++ b/testcase/syscalls/ltp.syscalls.gettid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.gettid02.sh b/testcase/syscalls/ltp.syscalls.gettid02.sh index 12e5266..21b53ca 100755 --- a/testcase/syscalls/ltp.syscalls.gettid02.sh +++ b/testcase/syscalls/ltp.syscalls.gettid02.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.gettimeofday01.sh b/testcase/syscalls/ltp.syscalls.gettimeofday01.sh index a548de7..3dddd47 100755 --- a/testcase/syscalls/ltp.syscalls.gettimeofday01.sh +++ b/testcase/syscalls/ltp.syscalls.gettimeofday01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.gettimeofday02.sh b/testcase/syscalls/ltp.syscalls.gettimeofday02.sh index 5754cc7..1b1ee93 100755 --- a/testcase/syscalls/ltp.syscalls.gettimeofday02.sh +++ b/testcase/syscalls/ltp.syscalls.gettimeofday02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getuid01.sh b/testcase/syscalls/ltp.syscalls.getuid01.sh index 9540824..7419014 100755 --- a/testcase/syscalls/ltp.syscalls.getuid01.sh +++ b/testcase/syscalls/ltp.syscalls.getuid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getuid01_16.sh b/testcase/syscalls/ltp.syscalls.getuid01_16.sh index 7d27977..cca9720 100755 --- a/testcase/syscalls/ltp.syscalls.getuid01_16.sh +++ b/testcase/syscalls/ltp.syscalls.getuid01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getuid03.sh b/testcase/syscalls/ltp.syscalls.getuid03.sh index 8543f8c..d28e15d 100755 --- a/testcase/syscalls/ltp.syscalls.getuid03.sh +++ b/testcase/syscalls/ltp.syscalls.getuid03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getuid03_16.sh b/testcase/syscalls/ltp.syscalls.getuid03_16.sh index 3466ba0..ca2aece 100755 --- a/testcase/syscalls/ltp.syscalls.getuid03_16.sh +++ b/testcase/syscalls/ltp.syscalls.getuid03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getxattr01.sh b/testcase/syscalls/ltp.syscalls.getxattr01.sh index c38405a..5b313ae 100755 --- a/testcase/syscalls/ltp.syscalls.getxattr01.sh +++ b/testcase/syscalls/ltp.syscalls.getxattr01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getxattr02.sh b/testcase/syscalls/ltp.syscalls.getxattr02.sh index 8b902f1..c2783d8 100755 --- a/testcase/syscalls/ltp.syscalls.getxattr02.sh +++ b/testcase/syscalls/ltp.syscalls.getxattr02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getxattr03.sh b/testcase/syscalls/ltp.syscalls.getxattr03.sh index bbd9ff5..47f0055 100755 --- a/testcase/syscalls/ltp.syscalls.getxattr03.sh +++ b/testcase/syscalls/ltp.syscalls.getxattr03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getxattr04.sh b/testcase/syscalls/ltp.syscalls.getxattr04.sh index 21216cc..7e6be03 100755 --- a/testcase/syscalls/ltp.syscalls.getxattr04.sh +++ b/testcase/syscalls/ltp.syscalls.getxattr04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.getxattr05.sh b/testcase/syscalls/ltp.syscalls.getxattr05.sh index a4af02f..94b1327 100755 --- a/testcase/syscalls/ltp.syscalls.getxattr05.sh +++ b/testcase/syscalls/ltp.syscalls.getxattr05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.init_module01.sh b/testcase/syscalls/ltp.syscalls.init_module01.sh index 3fbabde..47414fe 100755 --- a/testcase/syscalls/ltp.syscalls.init_module01.sh +++ b/testcase/syscalls/ltp.syscalls.init_module01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.init_module02.sh b/testcase/syscalls/ltp.syscalls.init_module02.sh index 2604824..21a4dc7 100755 --- a/testcase/syscalls/ltp.syscalls.init_module02.sh +++ b/testcase/syscalls/ltp.syscalls.init_module02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.inotify01.sh b/testcase/syscalls/ltp.syscalls.inotify01.sh index 0434621..37b968d 100755 --- a/testcase/syscalls/ltp.syscalls.inotify01.sh +++ b/testcase/syscalls/ltp.syscalls.inotify01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.inotify02.sh b/testcase/syscalls/ltp.syscalls.inotify02.sh index f542df8..660b1fb 100755 --- a/testcase/syscalls/ltp.syscalls.inotify02.sh +++ b/testcase/syscalls/ltp.syscalls.inotify02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.inotify03.sh b/testcase/syscalls/ltp.syscalls.inotify03.sh index 4618afc..da7bb43 100755 --- a/testcase/syscalls/ltp.syscalls.inotify03.sh +++ b/testcase/syscalls/ltp.syscalls.inotify03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.inotify04.sh b/testcase/syscalls/ltp.syscalls.inotify04.sh index 127a476..a3544c7 100755 --- a/testcase/syscalls/ltp.syscalls.inotify04.sh +++ b/testcase/syscalls/ltp.syscalls.inotify04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.inotify05.sh b/testcase/syscalls/ltp.syscalls.inotify05.sh index 039b960..a6babdf 100755 --- a/testcase/syscalls/ltp.syscalls.inotify05.sh +++ b/testcase/syscalls/ltp.syscalls.inotify05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.inotify06.sh b/testcase/syscalls/ltp.syscalls.inotify06.sh index a22d7e3..095da3d 100755 --- a/testcase/syscalls/ltp.syscalls.inotify06.sh +++ b/testcase/syscalls/ltp.syscalls.inotify06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.inotify07.sh b/testcase/syscalls/ltp.syscalls.inotify07.sh index 1ff658c..7606ea0 100755 --- a/testcase/syscalls/ltp.syscalls.inotify07.sh +++ b/testcase/syscalls/ltp.syscalls.inotify07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.inotify08.sh b/testcase/syscalls/ltp.syscalls.inotify08.sh index afc27ed..83631e8 100755 --- a/testcase/syscalls/ltp.syscalls.inotify08.sh +++ b/testcase/syscalls/ltp.syscalls.inotify08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.inotify09.sh b/testcase/syscalls/ltp.syscalls.inotify09.sh index 166f654..737e08c 100755 --- a/testcase/syscalls/ltp.syscalls.inotify09.sh +++ b/testcase/syscalls/ltp.syscalls.inotify09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.inotify10.sh b/testcase/syscalls/ltp.syscalls.inotify10.sh index cf14f7c..899af1a 100755 --- a/testcase/syscalls/ltp.syscalls.inotify10.sh +++ b/testcase/syscalls/ltp.syscalls.inotify10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.inotify11.sh b/testcase/syscalls/ltp.syscalls.inotify11.sh index 5f7f308..5612b2f 100755 --- a/testcase/syscalls/ltp.syscalls.inotify11.sh +++ b/testcase/syscalls/ltp.syscalls.inotify11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.inotify12.sh b/testcase/syscalls/ltp.syscalls.inotify12.sh index 8fda8c2..9ecbef5 100755 --- a/testcase/syscalls/ltp.syscalls.inotify12.sh +++ b/testcase/syscalls/ltp.syscalls.inotify12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.inotify_init1_01.sh b/testcase/syscalls/ltp.syscalls.inotify_init1_01.sh index 47c7234..b0869cb 100755 --- a/testcase/syscalls/ltp.syscalls.inotify_init1_01.sh +++ b/testcase/syscalls/ltp.syscalls.inotify_init1_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.inotify_init1_02.sh b/testcase/syscalls/ltp.syscalls.inotify_init1_02.sh index b4480f6..03acb20 100755 --- a/testcase/syscalls/ltp.syscalls.inotify_init1_02.sh +++ b/testcase/syscalls/ltp.syscalls.inotify_init1_02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.io_cancel01.sh b/testcase/syscalls/ltp.syscalls.io_cancel01.sh index 38b884a..f308dea 100755 --- a/testcase/syscalls/ltp.syscalls.io_cancel01.sh +++ b/testcase/syscalls/ltp.syscalls.io_cancel01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.io_cancel02.sh b/testcase/syscalls/ltp.syscalls.io_cancel02.sh index 8419d8a..b4ba323 100755 --- a/testcase/syscalls/ltp.syscalls.io_cancel02.sh +++ b/testcase/syscalls/ltp.syscalls.io_cancel02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.io_destroy01.sh b/testcase/syscalls/ltp.syscalls.io_destroy01.sh index 46d7952..367d89e 100755 --- a/testcase/syscalls/ltp.syscalls.io_destroy01.sh +++ b/testcase/syscalls/ltp.syscalls.io_destroy01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.io_destroy02.sh b/testcase/syscalls/ltp.syscalls.io_destroy02.sh index b47ed44..bfc3811 100755 --- a/testcase/syscalls/ltp.syscalls.io_destroy02.sh +++ b/testcase/syscalls/ltp.syscalls.io_destroy02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.io_getevents01.sh b/testcase/syscalls/ltp.syscalls.io_getevents01.sh index 3b97d7a..fb6e409 100755 --- a/testcase/syscalls/ltp.syscalls.io_getevents01.sh +++ b/testcase/syscalls/ltp.syscalls.io_getevents01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.io_getevents02.sh b/testcase/syscalls/ltp.syscalls.io_getevents02.sh index f6467f5..43b9b5a 100755 --- a/testcase/syscalls/ltp.syscalls.io_getevents02.sh +++ b/testcase/syscalls/ltp.syscalls.io_getevents02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.io_pgetevents01.sh b/testcase/syscalls/ltp.syscalls.io_pgetevents01.sh index 89f4df9..c0f6ce7 100755 --- a/testcase/syscalls/ltp.syscalls.io_pgetevents01.sh +++ b/testcase/syscalls/ltp.syscalls.io_pgetevents01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.io_pgetevents02.sh b/testcase/syscalls/ltp.syscalls.io_pgetevents02.sh index 7a650af..06ff37a 100755 --- a/testcase/syscalls/ltp.syscalls.io_pgetevents02.sh +++ b/testcase/syscalls/ltp.syscalls.io_pgetevents02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.io_setup01.sh b/testcase/syscalls/ltp.syscalls.io_setup01.sh index 95b3d56..51650fe 100755 --- a/testcase/syscalls/ltp.syscalls.io_setup01.sh +++ b/testcase/syscalls/ltp.syscalls.io_setup01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.io_setup02.sh b/testcase/syscalls/ltp.syscalls.io_setup02.sh index 46d45be..625fba8 100755 --- a/testcase/syscalls/ltp.syscalls.io_setup02.sh +++ b/testcase/syscalls/ltp.syscalls.io_setup02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.io_submit01.sh b/testcase/syscalls/ltp.syscalls.io_submit01.sh index f449679..4f33667 100755 --- a/testcase/syscalls/ltp.syscalls.io_submit01.sh +++ b/testcase/syscalls/ltp.syscalls.io_submit01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.io_submit02.sh b/testcase/syscalls/ltp.syscalls.io_submit02.sh index 96b5335..b356b5b 100755 --- a/testcase/syscalls/ltp.syscalls.io_submit02.sh +++ b/testcase/syscalls/ltp.syscalls.io_submit02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.io_submit03.sh b/testcase/syscalls/ltp.syscalls.io_submit03.sh index 4105972..cfe7d37 100755 --- a/testcase/syscalls/ltp.syscalls.io_submit03.sh +++ b/testcase/syscalls/ltp.syscalls.io_submit03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.io_uring01.sh b/testcase/syscalls/ltp.syscalls.io_uring01.sh index 1c5cf27..0ace9fd 100755 --- a/testcase/syscalls/ltp.syscalls.io_uring01.sh +++ b/testcase/syscalls/ltp.syscalls.io_uring01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.io_uring02.sh b/testcase/syscalls/ltp.syscalls.io_uring02.sh index c8c3013..86c2117 100755 --- a/testcase/syscalls/ltp.syscalls.io_uring02.sh +++ b/testcase/syscalls/ltp.syscalls.io_uring02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl01.sh b/testcase/syscalls/ltp.syscalls.ioctl01.sh index 58670ea..e7f310a 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl01.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl01.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.ioctl02.sh b/testcase/syscalls/ltp.syscalls.ioctl02.sh index abf41a9..8381cba 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl02.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl02.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.ioctl03.sh b/testcase/syscalls/ltp.syscalls.ioctl03.sh index 42b26f4..a495eb8 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl03.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl04.sh b/testcase/syscalls/ltp.syscalls.ioctl04.sh index 29749de..c4036d7 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl04.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl05.sh b/testcase/syscalls/ltp.syscalls.ioctl05.sh index 494d364..64cbacc 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl05.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl06.sh b/testcase/syscalls/ltp.syscalls.ioctl06.sh index b935c84..33b0996 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl06.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl07.sh b/testcase/syscalls/ltp.syscalls.ioctl07.sh index ae8ad9d..63aca75 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl07.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl08.sh b/testcase/syscalls/ltp.syscalls.ioctl08.sh index 4e1e0f0..8461352 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl08.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl09.sh b/testcase/syscalls/ltp.syscalls.ioctl09.sh index 4fc0849..d049d0a 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl09.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl_loop01.sh b/testcase/syscalls/ltp.syscalls.ioctl_loop01.sh index 36dcda0..ed2f600 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl_loop01.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl_loop01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl_loop02.sh b/testcase/syscalls/ltp.syscalls.ioctl_loop02.sh index 915963e..9c4e0f0 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl_loop02.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl_loop02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl_loop03.sh b/testcase/syscalls/ltp.syscalls.ioctl_loop03.sh index 2f634d1..5112150 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl_loop03.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl_loop03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl_loop04.sh b/testcase/syscalls/ltp.syscalls.ioctl_loop04.sh index dedb8dc..8712c43 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl_loop04.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl_loop04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl_loop05.sh b/testcase/syscalls/ltp.syscalls.ioctl_loop05.sh index 899731b..754f539 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl_loop05.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl_loop05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl_loop06.sh b/testcase/syscalls/ltp.syscalls.ioctl_loop06.sh index 8d3f280..8ac8825 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl_loop06.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl_loop06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl_loop07.sh b/testcase/syscalls/ltp.syscalls.ioctl_loop07.sh index 38fb510..d471356 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl_loop07.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl_loop07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ns01.sh b/testcase/syscalls/ltp.syscalls.ioctl_ns01.sh index 2662e4e..0dc0e6b 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl_ns01.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl_ns01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ns02.sh b/testcase/syscalls/ltp.syscalls.ioctl_ns02.sh index 01f0897..c1eaf25 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl_ns02.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl_ns02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ns03.sh b/testcase/syscalls/ltp.syscalls.ioctl_ns03.sh index f6bec6e..62811c1 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl_ns03.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl_ns03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ns04.sh b/testcase/syscalls/ltp.syscalls.ioctl_ns04.sh index 887f8ac..09e9feb 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl_ns04.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl_ns04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ns05.sh b/testcase/syscalls/ltp.syscalls.ioctl_ns05.sh index b0673c2..2870a4e 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl_ns05.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl_ns05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ns06.sh b/testcase/syscalls/ltp.syscalls.ioctl_ns06.sh index 29fb3cc..1822996 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl_ns06.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl_ns06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ns07.sh b/testcase/syscalls/ltp.syscalls.ioctl_ns07.sh index 04258c3..766a628 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl_ns07.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl_ns07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioctl_sg01.sh b/testcase/syscalls/ltp.syscalls.ioctl_sg01.sh index 24e2032..9499e11 100755 --- a/testcase/syscalls/ltp.syscalls.ioctl_sg01.sh +++ b/testcase/syscalls/ltp.syscalls.ioctl_sg01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioperm01.sh b/testcase/syscalls/ltp.syscalls.ioperm01.sh index 8cecc58..604f5d8 100755 --- a/testcase/syscalls/ltp.syscalls.ioperm01.sh +++ b/testcase/syscalls/ltp.syscalls.ioperm01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioperm02.sh b/testcase/syscalls/ltp.syscalls.ioperm02.sh index 4c686ec..c1e85d0 100755 --- a/testcase/syscalls/ltp.syscalls.ioperm02.sh +++ b/testcase/syscalls/ltp.syscalls.ioperm02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.iopl01.sh b/testcase/syscalls/ltp.syscalls.iopl01.sh index 2053f08..3881f72 100755 --- a/testcase/syscalls/ltp.syscalls.iopl01.sh +++ b/testcase/syscalls/ltp.syscalls.iopl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.iopl02.sh b/testcase/syscalls/ltp.syscalls.iopl02.sh index 748434d..bc75cdc 100755 --- a/testcase/syscalls/ltp.syscalls.iopl02.sh +++ b/testcase/syscalls/ltp.syscalls.iopl02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioprio_get01.sh b/testcase/syscalls/ltp.syscalls.ioprio_get01.sh index 5035e8d..b8520a5 100755 --- a/testcase/syscalls/ltp.syscalls.ioprio_get01.sh +++ b/testcase/syscalls/ltp.syscalls.ioprio_get01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioprio_set01.sh b/testcase/syscalls/ltp.syscalls.ioprio_set01.sh index 61938cc..d30262d 100755 --- a/testcase/syscalls/ltp.syscalls.ioprio_set01.sh +++ b/testcase/syscalls/ltp.syscalls.ioprio_set01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioprio_set02.sh b/testcase/syscalls/ltp.syscalls.ioprio_set02.sh index 2458cb4..819edf1 100755 --- a/testcase/syscalls/ltp.syscalls.ioprio_set02.sh +++ b/testcase/syscalls/ltp.syscalls.ioprio_set02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ioprio_set03.sh b/testcase/syscalls/ltp.syscalls.ioprio_set03.sh index cc2fa10..93a26f4 100755 --- a/testcase/syscalls/ltp.syscalls.ioprio_set03.sh +++ b/testcase/syscalls/ltp.syscalls.ioprio_set03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.kcmp01.sh b/testcase/syscalls/ltp.syscalls.kcmp01.sh index c3b4e0b..890f396 100755 --- a/testcase/syscalls/ltp.syscalls.kcmp01.sh +++ b/testcase/syscalls/ltp.syscalls.kcmp01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.kcmp02.sh b/testcase/syscalls/ltp.syscalls.kcmp02.sh index 863aa5f..b98fd91 100755 --- a/testcase/syscalls/ltp.syscalls.kcmp02.sh +++ b/testcase/syscalls/ltp.syscalls.kcmp02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.kcmp03.sh b/testcase/syscalls/ltp.syscalls.kcmp03.sh index e64a608..e08b20f 100755 --- a/testcase/syscalls/ltp.syscalls.kcmp03.sh +++ b/testcase/syscalls/ltp.syscalls.kcmp03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.keyctl01.sh b/testcase/syscalls/ltp.syscalls.keyctl01.sh index d23103e..fd17aaa 100755 --- a/testcase/syscalls/ltp.syscalls.keyctl01.sh +++ b/testcase/syscalls/ltp.syscalls.keyctl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.keyctl02.sh b/testcase/syscalls/ltp.syscalls.keyctl02.sh index 22c2c5a..38681a7 100755 --- a/testcase/syscalls/ltp.syscalls.keyctl02.sh +++ b/testcase/syscalls/ltp.syscalls.keyctl02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.keyctl03.sh b/testcase/syscalls/ltp.syscalls.keyctl03.sh index 890026f..83d9887 100755 --- a/testcase/syscalls/ltp.syscalls.keyctl03.sh +++ b/testcase/syscalls/ltp.syscalls.keyctl03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.keyctl04.sh b/testcase/syscalls/ltp.syscalls.keyctl04.sh index 524a95d..0fe99fb 100755 --- a/testcase/syscalls/ltp.syscalls.keyctl04.sh +++ b/testcase/syscalls/ltp.syscalls.keyctl04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.keyctl05.sh b/testcase/syscalls/ltp.syscalls.keyctl05.sh index 37a55ea..8c34f7e 100755 --- a/testcase/syscalls/ltp.syscalls.keyctl05.sh +++ b/testcase/syscalls/ltp.syscalls.keyctl05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.keyctl06.sh b/testcase/syscalls/ltp.syscalls.keyctl06.sh index b220b17..cbee971 100755 --- a/testcase/syscalls/ltp.syscalls.keyctl06.sh +++ b/testcase/syscalls/ltp.syscalls.keyctl06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.keyctl07.sh b/testcase/syscalls/ltp.syscalls.keyctl07.sh index 84dd0c2..15516e7 100755 --- a/testcase/syscalls/ltp.syscalls.keyctl07.sh +++ b/testcase/syscalls/ltp.syscalls.keyctl07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.keyctl08.sh b/testcase/syscalls/ltp.syscalls.keyctl08.sh index b7defa3..77860f4 100755 --- a/testcase/syscalls/ltp.syscalls.keyctl08.sh +++ b/testcase/syscalls/ltp.syscalls.keyctl08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.keyctl09.sh b/testcase/syscalls/ltp.syscalls.keyctl09.sh index 48cc748..372493c 100755 --- a/testcase/syscalls/ltp.syscalls.keyctl09.sh +++ b/testcase/syscalls/ltp.syscalls.keyctl09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.kill02.sh b/testcase/syscalls/ltp.syscalls.kill02.sh index c0a3725..f811019 100755 --- a/testcase/syscalls/ltp.syscalls.kill02.sh +++ b/testcase/syscalls/ltp.syscalls.kill02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.kill03.sh b/testcase/syscalls/ltp.syscalls.kill03.sh index 6126966..337187e 100755 --- a/testcase/syscalls/ltp.syscalls.kill03.sh +++ b/testcase/syscalls/ltp.syscalls.kill03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.kill05.sh b/testcase/syscalls/ltp.syscalls.kill05.sh index f5ce44b..bb9fbe9 100755 --- a/testcase/syscalls/ltp.syscalls.kill05.sh +++ b/testcase/syscalls/ltp.syscalls.kill05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.kill06.sh b/testcase/syscalls/ltp.syscalls.kill06.sh index 18dc7f1..fd2f67f 100755 --- a/testcase/syscalls/ltp.syscalls.kill06.sh +++ b/testcase/syscalls/ltp.syscalls.kill06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.kill07.sh b/testcase/syscalls/ltp.syscalls.kill07.sh index 4c8663f..002a345 100755 --- a/testcase/syscalls/ltp.syscalls.kill07.sh +++ b/testcase/syscalls/ltp.syscalls.kill07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.kill08.sh b/testcase/syscalls/ltp.syscalls.kill08.sh index 6dcda51..cb45a61 100755 --- a/testcase/syscalls/ltp.syscalls.kill08.sh +++ b/testcase/syscalls/ltp.syscalls.kill08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.kill09.sh b/testcase/syscalls/ltp.syscalls.kill09.sh index 58b52eb..b0e6567 100755 --- a/testcase/syscalls/ltp.syscalls.kill09.sh +++ b/testcase/syscalls/ltp.syscalls.kill09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.kill10.sh b/testcase/syscalls/ltp.syscalls.kill10.sh index eb28614..832709f 100755 --- a/testcase/syscalls/ltp.syscalls.kill10.sh +++ b/testcase/syscalls/ltp.syscalls.kill10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.kill11.sh b/testcase/syscalls/ltp.syscalls.kill11.sh index 0c28d30..4f132b6 100755 --- a/testcase/syscalls/ltp.syscalls.kill11.sh +++ b/testcase/syscalls/ltp.syscalls.kill11.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.kill12.sh b/testcase/syscalls/ltp.syscalls.kill12.sh index c7da52c..0033487 100755 --- a/testcase/syscalls/ltp.syscalls.kill12.sh +++ b/testcase/syscalls/ltp.syscalls.kill12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.kill13.sh b/testcase/syscalls/ltp.syscalls.kill13.sh index 564c86b..e80e599 100755 --- a/testcase/syscalls/ltp.syscalls.kill13.sh +++ b/testcase/syscalls/ltp.syscalls.kill13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lchown01.sh b/testcase/syscalls/ltp.syscalls.lchown01.sh index 03916f0..93ca548 100755 --- a/testcase/syscalls/ltp.syscalls.lchown01.sh +++ b/testcase/syscalls/ltp.syscalls.lchown01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lchown01_16.sh b/testcase/syscalls/ltp.syscalls.lchown01_16.sh index 56734c7..2032bae 100755 --- a/testcase/syscalls/ltp.syscalls.lchown01_16.sh +++ b/testcase/syscalls/ltp.syscalls.lchown01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lchown02.sh b/testcase/syscalls/ltp.syscalls.lchown02.sh index 893af83..64dfce3 100755 --- a/testcase/syscalls/ltp.syscalls.lchown02.sh +++ b/testcase/syscalls/ltp.syscalls.lchown02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lchown02_16.sh b/testcase/syscalls/ltp.syscalls.lchown02_16.sh index 2987523..222d92b 100755 --- a/testcase/syscalls/ltp.syscalls.lchown02_16.sh +++ b/testcase/syscalls/ltp.syscalls.lchown02_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lchown03.sh b/testcase/syscalls/ltp.syscalls.lchown03.sh index a7e4e67..9b34b98 100755 --- a/testcase/syscalls/ltp.syscalls.lchown03.sh +++ b/testcase/syscalls/ltp.syscalls.lchown03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lchown03_16.sh b/testcase/syscalls/ltp.syscalls.lchown03_16.sh index 77afddb..76966f2 100755 --- a/testcase/syscalls/ltp.syscalls.lchown03_16.sh +++ b/testcase/syscalls/ltp.syscalls.lchown03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.leapsec01.sh b/testcase/syscalls/ltp.syscalls.leapsec01.sh index 5c3bebf..828e454 100755 --- a/testcase/syscalls/ltp.syscalls.leapsec01.sh +++ b/testcase/syscalls/ltp.syscalls.leapsec01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lgetxattr01.sh b/testcase/syscalls/ltp.syscalls.lgetxattr01.sh index ad7f3ba..d3c44be 100755 --- a/testcase/syscalls/ltp.syscalls.lgetxattr01.sh +++ b/testcase/syscalls/ltp.syscalls.lgetxattr01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lgetxattr02.sh b/testcase/syscalls/ltp.syscalls.lgetxattr02.sh index 4207379..7f4f2fb 100755 --- a/testcase/syscalls/ltp.syscalls.lgetxattr02.sh +++ b/testcase/syscalls/ltp.syscalls.lgetxattr02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.link01.sh b/testcase/syscalls/ltp.syscalls.link01.sh index 9138aa2..bfaa82c 100755 --- a/testcase/syscalls/ltp.syscalls.link01.sh +++ b/testcase/syscalls/ltp.syscalls.link01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.link02.sh b/testcase/syscalls/ltp.syscalls.link02.sh index f2f773d..f8529f7 100755 --- a/testcase/syscalls/ltp.syscalls.link02.sh +++ b/testcase/syscalls/ltp.syscalls.link02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.link04.sh b/testcase/syscalls/ltp.syscalls.link04.sh index 6d02e2e..f48856e 100755 --- a/testcase/syscalls/ltp.syscalls.link04.sh +++ b/testcase/syscalls/ltp.syscalls.link04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.link05.sh b/testcase/syscalls/ltp.syscalls.link05.sh index 984dba5..c976071 100755 --- a/testcase/syscalls/ltp.syscalls.link05.sh +++ b/testcase/syscalls/ltp.syscalls.link05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.link08.sh b/testcase/syscalls/ltp.syscalls.link08.sh index c74bc8b..bb08cbd 100755 --- a/testcase/syscalls/ltp.syscalls.link08.sh +++ b/testcase/syscalls/ltp.syscalls.link08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.linkat01.sh b/testcase/syscalls/ltp.syscalls.linkat01.sh index cd20a37..54cfcb4 100755 --- a/testcase/syscalls/ltp.syscalls.linkat01.sh +++ b/testcase/syscalls/ltp.syscalls.linkat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.linkat02.sh b/testcase/syscalls/ltp.syscalls.linkat02.sh index fa90d03..8940e30 100755 --- a/testcase/syscalls/ltp.syscalls.linkat02.sh +++ b/testcase/syscalls/ltp.syscalls.linkat02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.listen01.sh b/testcase/syscalls/ltp.syscalls.listen01.sh index 2491cf7..0632a8c 100755 --- a/testcase/syscalls/ltp.syscalls.listen01.sh +++ b/testcase/syscalls/ltp.syscalls.listen01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.listxattr01.sh b/testcase/syscalls/ltp.syscalls.listxattr01.sh index a48deb7..ef26caf 100755 --- a/testcase/syscalls/ltp.syscalls.listxattr01.sh +++ b/testcase/syscalls/ltp.syscalls.listxattr01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.listxattr02.sh b/testcase/syscalls/ltp.syscalls.listxattr02.sh index 9bdd327..aeaf23d 100755 --- a/testcase/syscalls/ltp.syscalls.listxattr02.sh +++ b/testcase/syscalls/ltp.syscalls.listxattr02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.listxattr03.sh b/testcase/syscalls/ltp.syscalls.listxattr03.sh index ebb8c54..994abe0 100755 --- a/testcase/syscalls/ltp.syscalls.listxattr03.sh +++ b/testcase/syscalls/ltp.syscalls.listxattr03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.llistxattr01.sh b/testcase/syscalls/ltp.syscalls.llistxattr01.sh index 77b0f36..7b2fd02 100755 --- a/testcase/syscalls/ltp.syscalls.llistxattr01.sh +++ b/testcase/syscalls/ltp.syscalls.llistxattr01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.llistxattr02.sh b/testcase/syscalls/ltp.syscalls.llistxattr02.sh index 2b95560..6caa6df 100755 --- a/testcase/syscalls/ltp.syscalls.llistxattr02.sh +++ b/testcase/syscalls/ltp.syscalls.llistxattr02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.llistxattr03.sh b/testcase/syscalls/ltp.syscalls.llistxattr03.sh index 250b64e..95d1e6d 100755 --- a/testcase/syscalls/ltp.syscalls.llistxattr03.sh +++ b/testcase/syscalls/ltp.syscalls.llistxattr03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.llseek01.sh b/testcase/syscalls/ltp.syscalls.llseek01.sh index 979c461..4a64439 100755 --- a/testcase/syscalls/ltp.syscalls.llseek01.sh +++ b/testcase/syscalls/ltp.syscalls.llseek01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.llseek02.sh b/testcase/syscalls/ltp.syscalls.llseek02.sh index f330418..b0b5b39 100755 --- a/testcase/syscalls/ltp.syscalls.llseek02.sh +++ b/testcase/syscalls/ltp.syscalls.llseek02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.llseek03.sh b/testcase/syscalls/ltp.syscalls.llseek03.sh index c9502b3..2b9fc0f 100755 --- a/testcase/syscalls/ltp.syscalls.llseek03.sh +++ b/testcase/syscalls/ltp.syscalls.llseek03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lremovexattr01.sh b/testcase/syscalls/ltp.syscalls.lremovexattr01.sh index 9c96fc6..f9744e9 100755 --- a/testcase/syscalls/ltp.syscalls.lremovexattr01.sh +++ b/testcase/syscalls/ltp.syscalls.lremovexattr01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lseek01.sh b/testcase/syscalls/ltp.syscalls.lseek01.sh index b3f8ba5..e50e80d 100755 --- a/testcase/syscalls/ltp.syscalls.lseek01.sh +++ b/testcase/syscalls/ltp.syscalls.lseek01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lseek02.sh b/testcase/syscalls/ltp.syscalls.lseek02.sh index 177f1aa..9c19fce 100755 --- a/testcase/syscalls/ltp.syscalls.lseek02.sh +++ b/testcase/syscalls/ltp.syscalls.lseek02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lseek07.sh b/testcase/syscalls/ltp.syscalls.lseek07.sh index fbe33b7..2601fcc 100755 --- a/testcase/syscalls/ltp.syscalls.lseek07.sh +++ b/testcase/syscalls/ltp.syscalls.lseek07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lseek11.sh b/testcase/syscalls/ltp.syscalls.lseek11.sh index d71d525..7c8975c 100755 --- a/testcase/syscalls/ltp.syscalls.lseek11.sh +++ b/testcase/syscalls/ltp.syscalls.lseek11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lstat01.sh b/testcase/syscalls/ltp.syscalls.lstat01.sh index c5ce7ce..cc36a5c 100755 --- a/testcase/syscalls/ltp.syscalls.lstat01.sh +++ b/testcase/syscalls/ltp.syscalls.lstat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lstat01A.sh b/testcase/syscalls/ltp.syscalls.lstat01A.sh index 96c2c80..f7d2ea4 100755 --- a/testcase/syscalls/ltp.syscalls.lstat01A.sh +++ b/testcase/syscalls/ltp.syscalls.lstat01A.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lstat01A_64.sh b/testcase/syscalls/ltp.syscalls.lstat01A_64.sh index 12a18ec..4490671 100755 --- a/testcase/syscalls/ltp.syscalls.lstat01A_64.sh +++ b/testcase/syscalls/ltp.syscalls.lstat01A_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lstat01_64.sh b/testcase/syscalls/ltp.syscalls.lstat01_64.sh index 79bbfc8..4f1ce2e 100755 --- a/testcase/syscalls/ltp.syscalls.lstat01_64.sh +++ b/testcase/syscalls/ltp.syscalls.lstat01_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lstat02.sh b/testcase/syscalls/ltp.syscalls.lstat02.sh index 718b7da..f69f5f9 100755 --- a/testcase/syscalls/ltp.syscalls.lstat02.sh +++ b/testcase/syscalls/ltp.syscalls.lstat02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.lstat02_64.sh b/testcase/syscalls/ltp.syscalls.lstat02_64.sh index 9e5a2dd..2091b45 100755 --- a/testcase/syscalls/ltp.syscalls.lstat02_64.sh +++ b/testcase/syscalls/ltp.syscalls.lstat02_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.madvise01.sh b/testcase/syscalls/ltp.syscalls.madvise01.sh index 725f01b..ba5c9a9 100755 --- a/testcase/syscalls/ltp.syscalls.madvise01.sh +++ b/testcase/syscalls/ltp.syscalls.madvise01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.madvise02.sh b/testcase/syscalls/ltp.syscalls.madvise02.sh index c1f0cf4..9e2492d 100755 --- a/testcase/syscalls/ltp.syscalls.madvise02.sh +++ b/testcase/syscalls/ltp.syscalls.madvise02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.madvise03.sh b/testcase/syscalls/ltp.syscalls.madvise03.sh index 11dc16e..1ca9bba 100755 --- a/testcase/syscalls/ltp.syscalls.madvise03.sh +++ b/testcase/syscalls/ltp.syscalls.madvise03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.madvise05.sh b/testcase/syscalls/ltp.syscalls.madvise05.sh index d0dab8a..b0acbbf 100755 --- a/testcase/syscalls/ltp.syscalls.madvise05.sh +++ b/testcase/syscalls/ltp.syscalls.madvise05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.madvise06.sh b/testcase/syscalls/ltp.syscalls.madvise06.sh index b8c386c..b56ba23 100755 --- a/testcase/syscalls/ltp.syscalls.madvise06.sh +++ b/testcase/syscalls/ltp.syscalls.madvise06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.madvise07.sh b/testcase/syscalls/ltp.syscalls.madvise07.sh index 5d53d8e..d0d25ff 100755 --- a/testcase/syscalls/ltp.syscalls.madvise07.sh +++ b/testcase/syscalls/ltp.syscalls.madvise07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.madvise08.sh b/testcase/syscalls/ltp.syscalls.madvise08.sh index d15eb9c..a4a653d 100755 --- a/testcase/syscalls/ltp.syscalls.madvise08.sh +++ b/testcase/syscalls/ltp.syscalls.madvise08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.madvise09.sh b/testcase/syscalls/ltp.syscalls.madvise09.sh index c2fdd2f..db9ffa5 100755 --- a/testcase/syscalls/ltp.syscalls.madvise09.sh +++ b/testcase/syscalls/ltp.syscalls.madvise09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.madvise10.sh b/testcase/syscalls/ltp.syscalls.madvise10.sh index 9d62bdf..5ebddb5 100755 --- a/testcase/syscalls/ltp.syscalls.madvise10.sh +++ b/testcase/syscalls/ltp.syscalls.madvise10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.madvise11.sh b/testcase/syscalls/ltp.syscalls.madvise11.sh index f2ee57b..3c58028 100755 --- a/testcase/syscalls/ltp.syscalls.madvise11.sh +++ b/testcase/syscalls/ltp.syscalls.madvise11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mallinfo02.sh b/testcase/syscalls/ltp.syscalls.mallinfo02.sh index c8b0d74..1bcc3ac 100755 --- a/testcase/syscalls/ltp.syscalls.mallinfo02.sh +++ b/testcase/syscalls/ltp.syscalls.mallinfo02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mallinfo2_01.sh b/testcase/syscalls/ltp.syscalls.mallinfo2_01.sh index 176ed66..6909334 100755 --- a/testcase/syscalls/ltp.syscalls.mallinfo2_01.sh +++ b/testcase/syscalls/ltp.syscalls.mallinfo2_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mallopt01.sh b/testcase/syscalls/ltp.syscalls.mallopt01.sh index e52f8a5..3282e87 100755 --- a/testcase/syscalls/ltp.syscalls.mallopt01.sh +++ b/testcase/syscalls/ltp.syscalls.mallopt01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mbind01.sh b/testcase/syscalls/ltp.syscalls.mbind01.sh index eb3efaf..90979d7 100755 --- a/testcase/syscalls/ltp.syscalls.mbind01.sh +++ b/testcase/syscalls/ltp.syscalls.mbind01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mbind02.sh b/testcase/syscalls/ltp.syscalls.mbind02.sh index ddebcd8..2b9eff1 100755 --- a/testcase/syscalls/ltp.syscalls.mbind02.sh +++ b/testcase/syscalls/ltp.syscalls.mbind02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mbind03.sh b/testcase/syscalls/ltp.syscalls.mbind03.sh index 3c4b39a..39cefcc 100755 --- a/testcase/syscalls/ltp.syscalls.mbind03.sh +++ b/testcase/syscalls/ltp.syscalls.mbind03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mbind04.sh b/testcase/syscalls/ltp.syscalls.mbind04.sh index 5ec0c9a..ec92f76 100755 --- a/testcase/syscalls/ltp.syscalls.mbind04.sh +++ b/testcase/syscalls/ltp.syscalls.mbind04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.membarrier01.sh b/testcase/syscalls/ltp.syscalls.membarrier01.sh index 6584353..d8d613c 100755 --- a/testcase/syscalls/ltp.syscalls.membarrier01.sh +++ b/testcase/syscalls/ltp.syscalls.membarrier01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.memcmp01.sh b/testcase/syscalls/ltp.syscalls.memcmp01.sh index f0a82a5..290d610 100755 --- a/testcase/syscalls/ltp.syscalls.memcmp01.sh +++ b/testcase/syscalls/ltp.syscalls.memcmp01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.memcpy01.sh b/testcase/syscalls/ltp.syscalls.memcpy01.sh index f2f3e9a..053551a 100755 --- a/testcase/syscalls/ltp.syscalls.memcpy01.sh +++ b/testcase/syscalls/ltp.syscalls.memcpy01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.memfd_create01.sh b/testcase/syscalls/ltp.syscalls.memfd_create01.sh index 8663d91..8fa9128 100755 --- a/testcase/syscalls/ltp.syscalls.memfd_create01.sh +++ b/testcase/syscalls/ltp.syscalls.memfd_create01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.memfd_create02.sh b/testcase/syscalls/ltp.syscalls.memfd_create02.sh index 12d2c49..6284e6b 100755 --- a/testcase/syscalls/ltp.syscalls.memfd_create02.sh +++ b/testcase/syscalls/ltp.syscalls.memfd_create02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.memfd_create03.sh b/testcase/syscalls/ltp.syscalls.memfd_create03.sh index 2168faf..19fa6c5 100755 --- a/testcase/syscalls/ltp.syscalls.memfd_create03.sh +++ b/testcase/syscalls/ltp.syscalls.memfd_create03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.memfd_create04.sh b/testcase/syscalls/ltp.syscalls.memfd_create04.sh index 4467ecf..ed71406 100755 --- a/testcase/syscalls/ltp.syscalls.memfd_create04.sh +++ b/testcase/syscalls/ltp.syscalls.memfd_create04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.memset01.sh b/testcase/syscalls/ltp.syscalls.memset01.sh index d561046..7959240 100755 --- a/testcase/syscalls/ltp.syscalls.memset01.sh +++ b/testcase/syscalls/ltp.syscalls.memset01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.migrate_pages01.sh b/testcase/syscalls/ltp.syscalls.migrate_pages01.sh index 760e270..14da8cb 100755 --- a/testcase/syscalls/ltp.syscalls.migrate_pages01.sh +++ b/testcase/syscalls/ltp.syscalls.migrate_pages01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.migrate_pages02.sh b/testcase/syscalls/ltp.syscalls.migrate_pages02.sh index b4225a3..b6efe81 100755 --- a/testcase/syscalls/ltp.syscalls.migrate_pages02.sh +++ b/testcase/syscalls/ltp.syscalls.migrate_pages02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.migrate_pages03.sh b/testcase/syscalls/ltp.syscalls.migrate_pages03.sh index a68b22e..3eab4ee 100755 --- a/testcase/syscalls/ltp.syscalls.migrate_pages03.sh +++ b/testcase/syscalls/ltp.syscalls.migrate_pages03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mincore01.sh b/testcase/syscalls/ltp.syscalls.mincore01.sh index 62a706a..e024c86 100755 --- a/testcase/syscalls/ltp.syscalls.mincore01.sh +++ b/testcase/syscalls/ltp.syscalls.mincore01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mincore02.sh b/testcase/syscalls/ltp.syscalls.mincore02.sh index b1dfd42..cb1bfbc 100755 --- a/testcase/syscalls/ltp.syscalls.mincore02.sh +++ b/testcase/syscalls/ltp.syscalls.mincore02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mincore03.sh b/testcase/syscalls/ltp.syscalls.mincore03.sh index 8db9da6..119cba4 100755 --- a/testcase/syscalls/ltp.syscalls.mincore03.sh +++ b/testcase/syscalls/ltp.syscalls.mincore03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mincore04.sh b/testcase/syscalls/ltp.syscalls.mincore04.sh index 8fc5042..d7c68b3 100755 --- a/testcase/syscalls/ltp.syscalls.mincore04.sh +++ b/testcase/syscalls/ltp.syscalls.mincore04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mkdir02.sh b/testcase/syscalls/ltp.syscalls.mkdir02.sh index 6698b8b..120809f 100755 --- a/testcase/syscalls/ltp.syscalls.mkdir02.sh +++ b/testcase/syscalls/ltp.syscalls.mkdir02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mkdir03.sh b/testcase/syscalls/ltp.syscalls.mkdir03.sh index 6dfae51..367dbc3 100755 --- a/testcase/syscalls/ltp.syscalls.mkdir03.sh +++ b/testcase/syscalls/ltp.syscalls.mkdir03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mkdir04.sh b/testcase/syscalls/ltp.syscalls.mkdir04.sh index ad77821..26f5043 100755 --- a/testcase/syscalls/ltp.syscalls.mkdir04.sh +++ b/testcase/syscalls/ltp.syscalls.mkdir04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mkdir05.sh b/testcase/syscalls/ltp.syscalls.mkdir05.sh index 35ec901..161e317 100755 --- a/testcase/syscalls/ltp.syscalls.mkdir05.sh +++ b/testcase/syscalls/ltp.syscalls.mkdir05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mkdir09.sh b/testcase/syscalls/ltp.syscalls.mkdir09.sh index 54d810b..64b2d7f 100755 --- a/testcase/syscalls/ltp.syscalls.mkdir09.sh +++ b/testcase/syscalls/ltp.syscalls.mkdir09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mkdirat01.sh b/testcase/syscalls/ltp.syscalls.mkdirat01.sh index 0de568c..52f4fb9 100755 --- a/testcase/syscalls/ltp.syscalls.mkdirat01.sh +++ b/testcase/syscalls/ltp.syscalls.mkdirat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mkdirat02.sh b/testcase/syscalls/ltp.syscalls.mkdirat02.sh index 8aec2fe..41264b9 100755 --- a/testcase/syscalls/ltp.syscalls.mkdirat02.sh +++ b/testcase/syscalls/ltp.syscalls.mkdirat02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mknod01.sh b/testcase/syscalls/ltp.syscalls.mknod01.sh index 4dec138..789cc8f 100755 --- a/testcase/syscalls/ltp.syscalls.mknod01.sh +++ b/testcase/syscalls/ltp.syscalls.mknod01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mknod02.sh b/testcase/syscalls/ltp.syscalls.mknod02.sh index 1deb821..bf17a0c 100755 --- a/testcase/syscalls/ltp.syscalls.mknod02.sh +++ b/testcase/syscalls/ltp.syscalls.mknod02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mknod03.sh b/testcase/syscalls/ltp.syscalls.mknod03.sh index 6266bb3..a9e55c7 100755 --- a/testcase/syscalls/ltp.syscalls.mknod03.sh +++ b/testcase/syscalls/ltp.syscalls.mknod03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mknod04.sh b/testcase/syscalls/ltp.syscalls.mknod04.sh index 10d1087..33abd6e 100755 --- a/testcase/syscalls/ltp.syscalls.mknod04.sh +++ b/testcase/syscalls/ltp.syscalls.mknod04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mknod05.sh b/testcase/syscalls/ltp.syscalls.mknod05.sh index afd5cc2..d083ca2 100755 --- a/testcase/syscalls/ltp.syscalls.mknod05.sh +++ b/testcase/syscalls/ltp.syscalls.mknod05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mknod06.sh b/testcase/syscalls/ltp.syscalls.mknod06.sh index b806ee2..0f50c1c 100755 --- a/testcase/syscalls/ltp.syscalls.mknod06.sh +++ b/testcase/syscalls/ltp.syscalls.mknod06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mknod07.sh b/testcase/syscalls/ltp.syscalls.mknod07.sh index 0996788..64f49d1 100755 --- a/testcase/syscalls/ltp.syscalls.mknod07.sh +++ b/testcase/syscalls/ltp.syscalls.mknod07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mknod08.sh b/testcase/syscalls/ltp.syscalls.mknod08.sh index 06aa94c..5baa9ff 100755 --- a/testcase/syscalls/ltp.syscalls.mknod08.sh +++ b/testcase/syscalls/ltp.syscalls.mknod08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mknod09.sh b/testcase/syscalls/ltp.syscalls.mknod09.sh index 9225fee..20a50b7 100755 --- a/testcase/syscalls/ltp.syscalls.mknod09.sh +++ b/testcase/syscalls/ltp.syscalls.mknod09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mknodat01.sh b/testcase/syscalls/ltp.syscalls.mknodat01.sh index 02ec30f..ed7209e 100755 --- a/testcase/syscalls/ltp.syscalls.mknodat01.sh +++ b/testcase/syscalls/ltp.syscalls.mknodat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mknodat02.sh b/testcase/syscalls/ltp.syscalls.mknodat02.sh index 820bc71..704457c 100755 --- a/testcase/syscalls/ltp.syscalls.mknodat02.sh +++ b/testcase/syscalls/ltp.syscalls.mknodat02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mlock01.sh b/testcase/syscalls/ltp.syscalls.mlock01.sh index d77208b..d5182ca 100755 --- a/testcase/syscalls/ltp.syscalls.mlock01.sh +++ b/testcase/syscalls/ltp.syscalls.mlock01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mlock02.sh b/testcase/syscalls/ltp.syscalls.mlock02.sh index b5709c8..1020380 100755 --- a/testcase/syscalls/ltp.syscalls.mlock02.sh +++ b/testcase/syscalls/ltp.syscalls.mlock02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mlock03.sh b/testcase/syscalls/ltp.syscalls.mlock03.sh index 41722c4..93d248f 100755 --- a/testcase/syscalls/ltp.syscalls.mlock03.sh +++ b/testcase/syscalls/ltp.syscalls.mlock03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mlock04.sh b/testcase/syscalls/ltp.syscalls.mlock04.sh index fdb56fa..e8d05bf 100755 --- a/testcase/syscalls/ltp.syscalls.mlock04.sh +++ b/testcase/syscalls/ltp.syscalls.mlock04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mlock05.sh b/testcase/syscalls/ltp.syscalls.mlock05.sh index 1a8b7a9..46f8b90 100755 --- a/testcase/syscalls/ltp.syscalls.mlock05.sh +++ b/testcase/syscalls/ltp.syscalls.mlock05.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.mlock201.sh b/testcase/syscalls/ltp.syscalls.mlock201.sh index 0810256..e1d182c 100755 --- a/testcase/syscalls/ltp.syscalls.mlock201.sh +++ b/testcase/syscalls/ltp.syscalls.mlock201.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mlock202.sh b/testcase/syscalls/ltp.syscalls.mlock202.sh index 0056499..f5b6c70 100755 --- a/testcase/syscalls/ltp.syscalls.mlock202.sh +++ b/testcase/syscalls/ltp.syscalls.mlock202.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mlock203.sh b/testcase/syscalls/ltp.syscalls.mlock203.sh index d30bebc..39ecd31 100755 --- a/testcase/syscalls/ltp.syscalls.mlock203.sh +++ b/testcase/syscalls/ltp.syscalls.mlock203.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mlockall01.sh b/testcase/syscalls/ltp.syscalls.mlockall01.sh index 0655395..3455603 100755 --- a/testcase/syscalls/ltp.syscalls.mlockall01.sh +++ b/testcase/syscalls/ltp.syscalls.mlockall01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mlockall02.sh b/testcase/syscalls/ltp.syscalls.mlockall02.sh index 7a8b3b0..61c0d8d 100755 --- a/testcase/syscalls/ltp.syscalls.mlockall02.sh +++ b/testcase/syscalls/ltp.syscalls.mlockall02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mlockall03.sh b/testcase/syscalls/ltp.syscalls.mlockall03.sh index a5348a3..6a11043 100755 --- a/testcase/syscalls/ltp.syscalls.mlockall03.sh +++ b/testcase/syscalls/ltp.syscalls.mlockall03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap01.sh b/testcase/syscalls/ltp.syscalls.mmap01.sh index 981a247..2ba484b 100755 --- a/testcase/syscalls/ltp.syscalls.mmap01.sh +++ b/testcase/syscalls/ltp.syscalls.mmap01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap02.sh b/testcase/syscalls/ltp.syscalls.mmap02.sh index 1077160..cc00055 100755 --- a/testcase/syscalls/ltp.syscalls.mmap02.sh +++ b/testcase/syscalls/ltp.syscalls.mmap02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap03.sh b/testcase/syscalls/ltp.syscalls.mmap03.sh index 8b7eb62..5677ee0 100755 --- a/testcase/syscalls/ltp.syscalls.mmap03.sh +++ b/testcase/syscalls/ltp.syscalls.mmap03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap04.sh b/testcase/syscalls/ltp.syscalls.mmap04.sh index 193f0f3..6fbf812 100755 --- a/testcase/syscalls/ltp.syscalls.mmap04.sh +++ b/testcase/syscalls/ltp.syscalls.mmap04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap05.sh b/testcase/syscalls/ltp.syscalls.mmap05.sh index a5e371f..0c30c97 100755 --- a/testcase/syscalls/ltp.syscalls.mmap05.sh +++ b/testcase/syscalls/ltp.syscalls.mmap05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap06.sh b/testcase/syscalls/ltp.syscalls.mmap06.sh index 9b70291..da73455 100755 --- a/testcase/syscalls/ltp.syscalls.mmap06.sh +++ b/testcase/syscalls/ltp.syscalls.mmap06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap08.sh b/testcase/syscalls/ltp.syscalls.mmap08.sh index fb96ee0..d8c3c6c 100755 --- a/testcase/syscalls/ltp.syscalls.mmap08.sh +++ b/testcase/syscalls/ltp.syscalls.mmap08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap09.sh b/testcase/syscalls/ltp.syscalls.mmap09.sh index d044e4f..fbb4a4b 100755 --- a/testcase/syscalls/ltp.syscalls.mmap09.sh +++ b/testcase/syscalls/ltp.syscalls.mmap09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap12.sh b/testcase/syscalls/ltp.syscalls.mmap12.sh index 6f5d4c9..8b55368 100755 --- a/testcase/syscalls/ltp.syscalls.mmap12.sh +++ b/testcase/syscalls/ltp.syscalls.mmap12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap13.sh b/testcase/syscalls/ltp.syscalls.mmap13.sh index 048ecdf..063a8ea 100755 --- a/testcase/syscalls/ltp.syscalls.mmap13.sh +++ b/testcase/syscalls/ltp.syscalls.mmap13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap14.sh b/testcase/syscalls/ltp.syscalls.mmap14.sh index 7ebb82b..142c2c1 100755 --- a/testcase/syscalls/ltp.syscalls.mmap14.sh +++ b/testcase/syscalls/ltp.syscalls.mmap14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap15.sh b/testcase/syscalls/ltp.syscalls.mmap15.sh index a13d792..2f47601 100755 --- a/testcase/syscalls/ltp.syscalls.mmap15.sh +++ b/testcase/syscalls/ltp.syscalls.mmap15.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap16.sh b/testcase/syscalls/ltp.syscalls.mmap16.sh index 0e4aff5..305c597 100755 --- a/testcase/syscalls/ltp.syscalls.mmap16.sh +++ b/testcase/syscalls/ltp.syscalls.mmap16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap17.sh b/testcase/syscalls/ltp.syscalls.mmap17.sh index 059e757..4c399ae 100755 --- a/testcase/syscalls/ltp.syscalls.mmap17.sh +++ b/testcase/syscalls/ltp.syscalls.mmap17.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap18.sh b/testcase/syscalls/ltp.syscalls.mmap18.sh index dc93ed9..5451162 100755 --- a/testcase/syscalls/ltp.syscalls.mmap18.sh +++ b/testcase/syscalls/ltp.syscalls.mmap18.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap19.sh b/testcase/syscalls/ltp.syscalls.mmap19.sh index e91dbc4..c667c3e 100755 --- a/testcase/syscalls/ltp.syscalls.mmap19.sh +++ b/testcase/syscalls/ltp.syscalls.mmap19.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mmap20.sh b/testcase/syscalls/ltp.syscalls.mmap20.sh index e8e9b12..0b8f8e9 100755 --- a/testcase/syscalls/ltp.syscalls.mmap20.sh +++ b/testcase/syscalls/ltp.syscalls.mmap20.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.modify_ldt01.sh b/testcase/syscalls/ltp.syscalls.modify_ldt01.sh index 19dde8e..68bf6bc 100755 --- a/testcase/syscalls/ltp.syscalls.modify_ldt01.sh +++ b/testcase/syscalls/ltp.syscalls.modify_ldt01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.modify_ldt02.sh b/testcase/syscalls/ltp.syscalls.modify_ldt02.sh index 71464e6..d577caa 100755 --- a/testcase/syscalls/ltp.syscalls.modify_ldt02.sh +++ b/testcase/syscalls/ltp.syscalls.modify_ldt02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.modify_ldt03.sh b/testcase/syscalls/ltp.syscalls.modify_ldt03.sh index 5d044d1..115c830 100755 --- a/testcase/syscalls/ltp.syscalls.modify_ldt03.sh +++ b/testcase/syscalls/ltp.syscalls.modify_ldt03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mount01.sh b/testcase/syscalls/ltp.syscalls.mount01.sh index d92da72..069e092 100755 --- a/testcase/syscalls/ltp.syscalls.mount01.sh +++ b/testcase/syscalls/ltp.syscalls.mount01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mount02.sh b/testcase/syscalls/ltp.syscalls.mount02.sh index 881d33b..32f79d9 100755 --- a/testcase/syscalls/ltp.syscalls.mount02.sh +++ b/testcase/syscalls/ltp.syscalls.mount02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mount03.sh b/testcase/syscalls/ltp.syscalls.mount03.sh index 1d5f74d..0dcf9a8 100755 --- a/testcase/syscalls/ltp.syscalls.mount03.sh +++ b/testcase/syscalls/ltp.syscalls.mount03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mount04.sh b/testcase/syscalls/ltp.syscalls.mount04.sh index 37cd41c..fecdc68 100755 --- a/testcase/syscalls/ltp.syscalls.mount04.sh +++ b/testcase/syscalls/ltp.syscalls.mount04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mount05.sh b/testcase/syscalls/ltp.syscalls.mount05.sh index 23f2dbc..8bdcfb4 100755 --- a/testcase/syscalls/ltp.syscalls.mount05.sh +++ b/testcase/syscalls/ltp.syscalls.mount05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mount06.sh b/testcase/syscalls/ltp.syscalls.mount06.sh index e48d465..f44df31 100755 --- a/testcase/syscalls/ltp.syscalls.mount06.sh +++ b/testcase/syscalls/ltp.syscalls.mount06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mount07.sh b/testcase/syscalls/ltp.syscalls.mount07.sh index 34dc236..5f5a113 100755 --- a/testcase/syscalls/ltp.syscalls.mount07.sh +++ b/testcase/syscalls/ltp.syscalls.mount07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mount_setattr01.sh b/testcase/syscalls/ltp.syscalls.mount_setattr01.sh index 68500f8..a2cca62 100755 --- a/testcase/syscalls/ltp.syscalls.mount_setattr01.sh +++ b/testcase/syscalls/ltp.syscalls.mount_setattr01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.move_mount01.sh b/testcase/syscalls/ltp.syscalls.move_mount01.sh index df7db50..e102ca6 100755 --- a/testcase/syscalls/ltp.syscalls.move_mount01.sh +++ b/testcase/syscalls/ltp.syscalls.move_mount01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.move_mount02.sh b/testcase/syscalls/ltp.syscalls.move_mount02.sh index 4cc1c27..0357cae 100755 --- a/testcase/syscalls/ltp.syscalls.move_mount02.sh +++ b/testcase/syscalls/ltp.syscalls.move_mount02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.move_pages01.sh b/testcase/syscalls/ltp.syscalls.move_pages01.sh index 15b8b83..718dfb7 100755 --- a/testcase/syscalls/ltp.syscalls.move_pages01.sh +++ b/testcase/syscalls/ltp.syscalls.move_pages01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.move_pages02.sh b/testcase/syscalls/ltp.syscalls.move_pages02.sh index f6f19cc..07a036d 100755 --- a/testcase/syscalls/ltp.syscalls.move_pages02.sh +++ b/testcase/syscalls/ltp.syscalls.move_pages02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.move_pages03.sh b/testcase/syscalls/ltp.syscalls.move_pages03.sh index fb1930f..d6a6140 100755 --- a/testcase/syscalls/ltp.syscalls.move_pages03.sh +++ b/testcase/syscalls/ltp.syscalls.move_pages03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.move_pages04.sh b/testcase/syscalls/ltp.syscalls.move_pages04.sh index 4468167..614ccfd 100755 --- a/testcase/syscalls/ltp.syscalls.move_pages04.sh +++ b/testcase/syscalls/ltp.syscalls.move_pages04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.move_pages05.sh b/testcase/syscalls/ltp.syscalls.move_pages05.sh index 174b1cf..115382b 100755 --- a/testcase/syscalls/ltp.syscalls.move_pages05.sh +++ b/testcase/syscalls/ltp.syscalls.move_pages05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.move_pages06.sh b/testcase/syscalls/ltp.syscalls.move_pages06.sh index a320ecf..be53a6f 100755 --- a/testcase/syscalls/ltp.syscalls.move_pages06.sh +++ b/testcase/syscalls/ltp.syscalls.move_pages06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.move_pages07.sh b/testcase/syscalls/ltp.syscalls.move_pages07.sh index cec877a..96b0cd1 100755 --- a/testcase/syscalls/ltp.syscalls.move_pages07.sh +++ b/testcase/syscalls/ltp.syscalls.move_pages07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.move_pages09.sh b/testcase/syscalls/ltp.syscalls.move_pages09.sh index 1922fff..e0f860d 100755 --- a/testcase/syscalls/ltp.syscalls.move_pages09.sh +++ b/testcase/syscalls/ltp.syscalls.move_pages09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.move_pages10.sh b/testcase/syscalls/ltp.syscalls.move_pages10.sh index 619f8a0..593ec60 100755 --- a/testcase/syscalls/ltp.syscalls.move_pages10.sh +++ b/testcase/syscalls/ltp.syscalls.move_pages10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.move_pages11.sh b/testcase/syscalls/ltp.syscalls.move_pages11.sh index 643bad4..c29831c 100755 --- a/testcase/syscalls/ltp.syscalls.move_pages11.sh +++ b/testcase/syscalls/ltp.syscalls.move_pages11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.move_pages12.sh b/testcase/syscalls/ltp.syscalls.move_pages12.sh index e6f6b42..8ad3445 100755 --- a/testcase/syscalls/ltp.syscalls.move_pages12.sh +++ b/testcase/syscalls/ltp.syscalls.move_pages12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mprotect01.sh b/testcase/syscalls/ltp.syscalls.mprotect01.sh index 0a4e00f..05efc90 100755 --- a/testcase/syscalls/ltp.syscalls.mprotect01.sh +++ b/testcase/syscalls/ltp.syscalls.mprotect01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mprotect02.sh b/testcase/syscalls/ltp.syscalls.mprotect02.sh index f9fb651..b0ee45f 100755 --- a/testcase/syscalls/ltp.syscalls.mprotect02.sh +++ b/testcase/syscalls/ltp.syscalls.mprotect02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mprotect03.sh b/testcase/syscalls/ltp.syscalls.mprotect03.sh index e149662..0ec1d94 100755 --- a/testcase/syscalls/ltp.syscalls.mprotect03.sh +++ b/testcase/syscalls/ltp.syscalls.mprotect03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mprotect04.sh b/testcase/syscalls/ltp.syscalls.mprotect04.sh index 1fe26e7..3f75c7d 100755 --- a/testcase/syscalls/ltp.syscalls.mprotect04.sh +++ b/testcase/syscalls/ltp.syscalls.mprotect04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mprotect05.sh b/testcase/syscalls/ltp.syscalls.mprotect05.sh index 44090a6..308e133 100755 --- a/testcase/syscalls/ltp.syscalls.mprotect05.sh +++ b/testcase/syscalls/ltp.syscalls.mprotect05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mq_notify01.sh b/testcase/syscalls/ltp.syscalls.mq_notify01.sh index 796c06d..8d4905f 100755 --- a/testcase/syscalls/ltp.syscalls.mq_notify01.sh +++ b/testcase/syscalls/ltp.syscalls.mq_notify01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mq_notify02.sh b/testcase/syscalls/ltp.syscalls.mq_notify02.sh index d67c808..159a7e7 100755 --- a/testcase/syscalls/ltp.syscalls.mq_notify02.sh +++ b/testcase/syscalls/ltp.syscalls.mq_notify02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mq_notify03.sh b/testcase/syscalls/ltp.syscalls.mq_notify03.sh index 8741dbb..a0df274 100755 --- a/testcase/syscalls/ltp.syscalls.mq_notify03.sh +++ b/testcase/syscalls/ltp.syscalls.mq_notify03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mq_open01.sh b/testcase/syscalls/ltp.syscalls.mq_open01.sh index b40007e..c6e170f 100755 --- a/testcase/syscalls/ltp.syscalls.mq_open01.sh +++ b/testcase/syscalls/ltp.syscalls.mq_open01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mq_timedreceive01.sh b/testcase/syscalls/ltp.syscalls.mq_timedreceive01.sh index 0b5b90c..62724c7 100755 --- a/testcase/syscalls/ltp.syscalls.mq_timedreceive01.sh +++ b/testcase/syscalls/ltp.syscalls.mq_timedreceive01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mq_timedsend01.sh b/testcase/syscalls/ltp.syscalls.mq_timedsend01.sh index dc47ace..f3a0578 100755 --- a/testcase/syscalls/ltp.syscalls.mq_timedsend01.sh +++ b/testcase/syscalls/ltp.syscalls.mq_timedsend01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mq_unlink01.sh b/testcase/syscalls/ltp.syscalls.mq_unlink01.sh index b156e66..e1fa5b9 100755 --- a/testcase/syscalls/ltp.syscalls.mq_unlink01.sh +++ b/testcase/syscalls/ltp.syscalls.mq_unlink01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mremap01.sh b/testcase/syscalls/ltp.syscalls.mremap01.sh index c2ddafb..25079ad 100755 --- a/testcase/syscalls/ltp.syscalls.mremap01.sh +++ b/testcase/syscalls/ltp.syscalls.mremap01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mremap02.sh b/testcase/syscalls/ltp.syscalls.mremap02.sh index f3ef51b..9ab81fc 100755 --- a/testcase/syscalls/ltp.syscalls.mremap02.sh +++ b/testcase/syscalls/ltp.syscalls.mremap02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mremap03.sh b/testcase/syscalls/ltp.syscalls.mremap03.sh index 520bdc6..84495f3 100755 --- a/testcase/syscalls/ltp.syscalls.mremap03.sh +++ b/testcase/syscalls/ltp.syscalls.mremap03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mremap04.sh b/testcase/syscalls/ltp.syscalls.mremap04.sh index e098993..661cd28 100755 --- a/testcase/syscalls/ltp.syscalls.mremap04.sh +++ b/testcase/syscalls/ltp.syscalls.mremap04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mremap05.sh b/testcase/syscalls/ltp.syscalls.mremap05.sh index e7c1e18..df35e55 100755 --- a/testcase/syscalls/ltp.syscalls.mremap05.sh +++ b/testcase/syscalls/ltp.syscalls.mremap05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.mremap06.sh b/testcase/syscalls/ltp.syscalls.mremap06.sh index 7132068..813725a 100755 --- a/testcase/syscalls/ltp.syscalls.mremap06.sh +++ b/testcase/syscalls/ltp.syscalls.mremap06.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.msgctl01.sh b/testcase/syscalls/ltp.syscalls.msgctl01.sh index 913c32e..f8c14bb 100755 --- a/testcase/syscalls/ltp.syscalls.msgctl01.sh +++ b/testcase/syscalls/ltp.syscalls.msgctl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgctl02.sh b/testcase/syscalls/ltp.syscalls.msgctl02.sh index f5a9734..ab8ff4b 100755 --- a/testcase/syscalls/ltp.syscalls.msgctl02.sh +++ b/testcase/syscalls/ltp.syscalls.msgctl02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgctl03.sh b/testcase/syscalls/ltp.syscalls.msgctl03.sh index 61bc35e..035a1f9 100755 --- a/testcase/syscalls/ltp.syscalls.msgctl03.sh +++ b/testcase/syscalls/ltp.syscalls.msgctl03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgctl04.sh b/testcase/syscalls/ltp.syscalls.msgctl04.sh index 3de3af6..0447dea 100755 --- a/testcase/syscalls/ltp.syscalls.msgctl04.sh +++ b/testcase/syscalls/ltp.syscalls.msgctl04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgctl05.sh b/testcase/syscalls/ltp.syscalls.msgctl05.sh index 7fb0785..0afc4d4 100755 --- a/testcase/syscalls/ltp.syscalls.msgctl05.sh +++ b/testcase/syscalls/ltp.syscalls.msgctl05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgctl06.sh b/testcase/syscalls/ltp.syscalls.msgctl06.sh index d8dfb4e..8d90d7a 100755 --- a/testcase/syscalls/ltp.syscalls.msgctl06.sh +++ b/testcase/syscalls/ltp.syscalls.msgctl06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgctl12.sh b/testcase/syscalls/ltp.syscalls.msgctl12.sh index ed6aeaf..6f11743 100755 --- a/testcase/syscalls/ltp.syscalls.msgctl12.sh +++ b/testcase/syscalls/ltp.syscalls.msgctl12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgget01.sh b/testcase/syscalls/ltp.syscalls.msgget01.sh index 6121c21..17870c9 100755 --- a/testcase/syscalls/ltp.syscalls.msgget01.sh +++ b/testcase/syscalls/ltp.syscalls.msgget01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgget02.sh b/testcase/syscalls/ltp.syscalls.msgget02.sh index f71d263..b2f3af4 100755 --- a/testcase/syscalls/ltp.syscalls.msgget02.sh +++ b/testcase/syscalls/ltp.syscalls.msgget02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgget03.sh b/testcase/syscalls/ltp.syscalls.msgget03.sh index e846991..47d6c0b 100755 --- a/testcase/syscalls/ltp.syscalls.msgget03.sh +++ b/testcase/syscalls/ltp.syscalls.msgget03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgget04.sh b/testcase/syscalls/ltp.syscalls.msgget04.sh index 059f39e..80e13b2 100755 --- a/testcase/syscalls/ltp.syscalls.msgget04.sh +++ b/testcase/syscalls/ltp.syscalls.msgget04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgget05.sh b/testcase/syscalls/ltp.syscalls.msgget05.sh index 84caeca..127e288 100755 --- a/testcase/syscalls/ltp.syscalls.msgget05.sh +++ b/testcase/syscalls/ltp.syscalls.msgget05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgrcv01.sh b/testcase/syscalls/ltp.syscalls.msgrcv01.sh index 852ff48..7b4ac62 100755 --- a/testcase/syscalls/ltp.syscalls.msgrcv01.sh +++ b/testcase/syscalls/ltp.syscalls.msgrcv01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgrcv02.sh b/testcase/syscalls/ltp.syscalls.msgrcv02.sh index ce2148d..1dd0fef 100755 --- a/testcase/syscalls/ltp.syscalls.msgrcv02.sh +++ b/testcase/syscalls/ltp.syscalls.msgrcv02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgrcv03.sh b/testcase/syscalls/ltp.syscalls.msgrcv03.sh index 2db90a3..04f97ad 100755 --- a/testcase/syscalls/ltp.syscalls.msgrcv03.sh +++ b/testcase/syscalls/ltp.syscalls.msgrcv03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgrcv05.sh b/testcase/syscalls/ltp.syscalls.msgrcv05.sh index 59102e6..68afd9f 100755 --- a/testcase/syscalls/ltp.syscalls.msgrcv05.sh +++ b/testcase/syscalls/ltp.syscalls.msgrcv05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgrcv06.sh b/testcase/syscalls/ltp.syscalls.msgrcv06.sh index 339bd3f..3dcdb4a 100755 --- a/testcase/syscalls/ltp.syscalls.msgrcv06.sh +++ b/testcase/syscalls/ltp.syscalls.msgrcv06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgrcv07.sh b/testcase/syscalls/ltp.syscalls.msgrcv07.sh index 423f659..33eb5cf 100755 --- a/testcase/syscalls/ltp.syscalls.msgrcv07.sh +++ b/testcase/syscalls/ltp.syscalls.msgrcv07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgrcv08.sh b/testcase/syscalls/ltp.syscalls.msgrcv08.sh index aba4826..8e66db1 100755 --- a/testcase/syscalls/ltp.syscalls.msgrcv08.sh +++ b/testcase/syscalls/ltp.syscalls.msgrcv08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgsnd01.sh b/testcase/syscalls/ltp.syscalls.msgsnd01.sh index 0fbc64d..1134d61 100755 --- a/testcase/syscalls/ltp.syscalls.msgsnd01.sh +++ b/testcase/syscalls/ltp.syscalls.msgsnd01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgsnd02.sh b/testcase/syscalls/ltp.syscalls.msgsnd02.sh index 517608b..adaaab3 100755 --- a/testcase/syscalls/ltp.syscalls.msgsnd02.sh +++ b/testcase/syscalls/ltp.syscalls.msgsnd02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgsnd05.sh b/testcase/syscalls/ltp.syscalls.msgsnd05.sh index a2a36d6..269e61d 100755 --- a/testcase/syscalls/ltp.syscalls.msgsnd05.sh +++ b/testcase/syscalls/ltp.syscalls.msgsnd05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgsnd06.sh b/testcase/syscalls/ltp.syscalls.msgsnd06.sh index 839f9f3..b16f012 100755 --- a/testcase/syscalls/ltp.syscalls.msgsnd06.sh +++ b/testcase/syscalls/ltp.syscalls.msgsnd06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msgstress01.sh b/testcase/syscalls/ltp.syscalls.msgstress01.sh index 21cdcc1..f9cdf09 100755 --- a/testcase/syscalls/ltp.syscalls.msgstress01.sh +++ b/testcase/syscalls/ltp.syscalls.msgstress01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msync01.sh b/testcase/syscalls/ltp.syscalls.msync01.sh index 8260d73..984cee6 100755 --- a/testcase/syscalls/ltp.syscalls.msync01.sh +++ b/testcase/syscalls/ltp.syscalls.msync01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msync02.sh b/testcase/syscalls/ltp.syscalls.msync02.sh index 2bcab29..4c0dc60 100755 --- a/testcase/syscalls/ltp.syscalls.msync02.sh +++ b/testcase/syscalls/ltp.syscalls.msync02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msync03.sh b/testcase/syscalls/ltp.syscalls.msync03.sh index aab5ed6..e57b77a 100755 --- a/testcase/syscalls/ltp.syscalls.msync03.sh +++ b/testcase/syscalls/ltp.syscalls.msync03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.msync04.sh b/testcase/syscalls/ltp.syscalls.msync04.sh index b7de5ea..7ac0042 100755 --- a/testcase/syscalls/ltp.syscalls.msync04.sh +++ b/testcase/syscalls/ltp.syscalls.msync04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.munlock01.sh b/testcase/syscalls/ltp.syscalls.munlock01.sh index c7967cc..452757a 100755 --- a/testcase/syscalls/ltp.syscalls.munlock01.sh +++ b/testcase/syscalls/ltp.syscalls.munlock01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.munlock02.sh b/testcase/syscalls/ltp.syscalls.munlock02.sh index 1ddcea8..fbb6f25 100755 --- a/testcase/syscalls/ltp.syscalls.munlock02.sh +++ b/testcase/syscalls/ltp.syscalls.munlock02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.munlockall01.sh b/testcase/syscalls/ltp.syscalls.munlockall01.sh index 1c03c1f..c75564e 100755 --- a/testcase/syscalls/ltp.syscalls.munlockall01.sh +++ b/testcase/syscalls/ltp.syscalls.munlockall01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.munmap01.sh b/testcase/syscalls/ltp.syscalls.munmap01.sh index cee3c98..242b46e 100755 --- a/testcase/syscalls/ltp.syscalls.munmap01.sh +++ b/testcase/syscalls/ltp.syscalls.munmap01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.munmap02.sh b/testcase/syscalls/ltp.syscalls.munmap02.sh index d528428..f83258b 100755 --- a/testcase/syscalls/ltp.syscalls.munmap02.sh +++ b/testcase/syscalls/ltp.syscalls.munmap02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.munmap03.sh b/testcase/syscalls/ltp.syscalls.munmap03.sh index 4854bd6..dbc0eb1 100755 --- a/testcase/syscalls/ltp.syscalls.munmap03.sh +++ b/testcase/syscalls/ltp.syscalls.munmap03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.name_to_handle_at01.sh b/testcase/syscalls/ltp.syscalls.name_to_handle_at01.sh index ea94ce1..7603a1e 100755 --- a/testcase/syscalls/ltp.syscalls.name_to_handle_at01.sh +++ b/testcase/syscalls/ltp.syscalls.name_to_handle_at01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.name_to_handle_at02.sh b/testcase/syscalls/ltp.syscalls.name_to_handle_at02.sh index aadb03e..2018d53 100755 --- a/testcase/syscalls/ltp.syscalls.name_to_handle_at02.sh +++ b/testcase/syscalls/ltp.syscalls.name_to_handle_at02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.nanosleep01.sh b/testcase/syscalls/ltp.syscalls.nanosleep01.sh index a1aba57..471cb0a 100755 --- a/testcase/syscalls/ltp.syscalls.nanosleep01.sh +++ b/testcase/syscalls/ltp.syscalls.nanosleep01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.nanosleep02.sh b/testcase/syscalls/ltp.syscalls.nanosleep02.sh index edbfce8..8b68157 100755 --- a/testcase/syscalls/ltp.syscalls.nanosleep02.sh +++ b/testcase/syscalls/ltp.syscalls.nanosleep02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.nanosleep04.sh b/testcase/syscalls/ltp.syscalls.nanosleep04.sh index b77e22c..48cf014 100755 --- a/testcase/syscalls/ltp.syscalls.nanosleep04.sh +++ b/testcase/syscalls/ltp.syscalls.nanosleep04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.newuname01.sh b/testcase/syscalls/ltp.syscalls.newuname01.sh index b520012..1c71470 100755 --- a/testcase/syscalls/ltp.syscalls.newuname01.sh +++ b/testcase/syscalls/ltp.syscalls.newuname01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.nftw01.sh b/testcase/syscalls/ltp.syscalls.nftw01.sh index 73f963f..315a38f 100755 --- a/testcase/syscalls/ltp.syscalls.nftw01.sh +++ b/testcase/syscalls/ltp.syscalls.nftw01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.nftw6401.sh b/testcase/syscalls/ltp.syscalls.nftw6401.sh index 10a8241..b1d17ee 100755 --- a/testcase/syscalls/ltp.syscalls.nftw6401.sh +++ b/testcase/syscalls/ltp.syscalls.nftw6401.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.nice01.sh b/testcase/syscalls/ltp.syscalls.nice01.sh index 1dd15fd..baf1260 100755 --- a/testcase/syscalls/ltp.syscalls.nice01.sh +++ b/testcase/syscalls/ltp.syscalls.nice01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.nice02.sh b/testcase/syscalls/ltp.syscalls.nice02.sh index 48ad463..20eea50 100755 --- a/testcase/syscalls/ltp.syscalls.nice02.sh +++ b/testcase/syscalls/ltp.syscalls.nice02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.nice03.sh b/testcase/syscalls/ltp.syscalls.nice03.sh index 6885193..714d878 100755 --- a/testcase/syscalls/ltp.syscalls.nice03.sh +++ b/testcase/syscalls/ltp.syscalls.nice03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.nice04.sh b/testcase/syscalls/ltp.syscalls.nice04.sh index 669c36f..0c79b9b 100755 --- a/testcase/syscalls/ltp.syscalls.nice04.sh +++ b/testcase/syscalls/ltp.syscalls.nice04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.nice05.sh b/testcase/syscalls/ltp.syscalls.nice05.sh index 4e080d9..eb87f1d 100755 --- a/testcase/syscalls/ltp.syscalls.nice05.sh +++ b/testcase/syscalls/ltp.syscalls.nice05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open01.sh b/testcase/syscalls/ltp.syscalls.open01.sh index 76ab876..790b225 100755 --- a/testcase/syscalls/ltp.syscalls.open01.sh +++ b/testcase/syscalls/ltp.syscalls.open01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open01A.sh b/testcase/syscalls/ltp.syscalls.open01A.sh index a748a41..b5af261 100755 --- a/testcase/syscalls/ltp.syscalls.open01A.sh +++ b/testcase/syscalls/ltp.syscalls.open01A.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open02.sh b/testcase/syscalls/ltp.syscalls.open02.sh index f0a24a0..a40b02c 100755 --- a/testcase/syscalls/ltp.syscalls.open02.sh +++ b/testcase/syscalls/ltp.syscalls.open02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open03.sh b/testcase/syscalls/ltp.syscalls.open03.sh index dcac47c..a4fcd4e 100755 --- a/testcase/syscalls/ltp.syscalls.open03.sh +++ b/testcase/syscalls/ltp.syscalls.open03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open04.sh b/testcase/syscalls/ltp.syscalls.open04.sh index e5f0183..fe076c9 100755 --- a/testcase/syscalls/ltp.syscalls.open04.sh +++ b/testcase/syscalls/ltp.syscalls.open04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open06.sh b/testcase/syscalls/ltp.syscalls.open06.sh index c144b5b..96fb703 100755 --- a/testcase/syscalls/ltp.syscalls.open06.sh +++ b/testcase/syscalls/ltp.syscalls.open06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open07.sh b/testcase/syscalls/ltp.syscalls.open07.sh index 5aefc3c..e4724dd 100755 --- a/testcase/syscalls/ltp.syscalls.open07.sh +++ b/testcase/syscalls/ltp.syscalls.open07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open08.sh b/testcase/syscalls/ltp.syscalls.open08.sh index 449220c..138dad8 100755 --- a/testcase/syscalls/ltp.syscalls.open08.sh +++ b/testcase/syscalls/ltp.syscalls.open08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open09.sh b/testcase/syscalls/ltp.syscalls.open09.sh index 42a5608..e53017d 100755 --- a/testcase/syscalls/ltp.syscalls.open09.sh +++ b/testcase/syscalls/ltp.syscalls.open09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open10.sh b/testcase/syscalls/ltp.syscalls.open10.sh index be740c9..ef44b81 100755 --- a/testcase/syscalls/ltp.syscalls.open10.sh +++ b/testcase/syscalls/ltp.syscalls.open10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open11.sh b/testcase/syscalls/ltp.syscalls.open11.sh index 7f23135..6e2638e 100755 --- a/testcase/syscalls/ltp.syscalls.open11.sh +++ b/testcase/syscalls/ltp.syscalls.open11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open12.sh b/testcase/syscalls/ltp.syscalls.open12.sh index bf4a699..41d1107 100755 --- a/testcase/syscalls/ltp.syscalls.open12.sh +++ b/testcase/syscalls/ltp.syscalls.open12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open13.sh b/testcase/syscalls/ltp.syscalls.open13.sh index 5a54f71..0ea6dbe 100755 --- a/testcase/syscalls/ltp.syscalls.open13.sh +++ b/testcase/syscalls/ltp.syscalls.open13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open14.sh b/testcase/syscalls/ltp.syscalls.open14.sh index 9136e6d..e33b00b 100755 --- a/testcase/syscalls/ltp.syscalls.open14.sh +++ b/testcase/syscalls/ltp.syscalls.open14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open_by_handle_at01.sh b/testcase/syscalls/ltp.syscalls.open_by_handle_at01.sh index 1edceb0..ba64cb1 100755 --- a/testcase/syscalls/ltp.syscalls.open_by_handle_at01.sh +++ b/testcase/syscalls/ltp.syscalls.open_by_handle_at01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open_by_handle_at02.sh b/testcase/syscalls/ltp.syscalls.open_by_handle_at02.sh index 7b56456..96ff94c 100755 --- a/testcase/syscalls/ltp.syscalls.open_by_handle_at02.sh +++ b/testcase/syscalls/ltp.syscalls.open_by_handle_at02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open_tree01.sh b/testcase/syscalls/ltp.syscalls.open_tree01.sh index 94690ae..2426f7c 100755 --- a/testcase/syscalls/ltp.syscalls.open_tree01.sh +++ b/testcase/syscalls/ltp.syscalls.open_tree01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.open_tree02.sh b/testcase/syscalls/ltp.syscalls.open_tree02.sh index d262988..7c913a1 100755 --- a/testcase/syscalls/ltp.syscalls.open_tree02.sh +++ b/testcase/syscalls/ltp.syscalls.open_tree02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.openat01.sh b/testcase/syscalls/ltp.syscalls.openat01.sh index f09c396..922938f 100755 --- a/testcase/syscalls/ltp.syscalls.openat01.sh +++ b/testcase/syscalls/ltp.syscalls.openat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.openat02.sh b/testcase/syscalls/ltp.syscalls.openat02.sh index b28bcb3..e45a66f 100755 --- a/testcase/syscalls/ltp.syscalls.openat02.sh +++ b/testcase/syscalls/ltp.syscalls.openat02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.openat03.sh b/testcase/syscalls/ltp.syscalls.openat03.sh index b185aed..99bb8a8 100755 --- a/testcase/syscalls/ltp.syscalls.openat03.sh +++ b/testcase/syscalls/ltp.syscalls.openat03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.openat04.sh b/testcase/syscalls/ltp.syscalls.openat04.sh index 541d191..d42fd4a 100755 --- a/testcase/syscalls/ltp.syscalls.openat04.sh +++ b/testcase/syscalls/ltp.syscalls.openat04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.openat201.sh b/testcase/syscalls/ltp.syscalls.openat201.sh index 09f6388..db95a54 100755 --- a/testcase/syscalls/ltp.syscalls.openat201.sh +++ b/testcase/syscalls/ltp.syscalls.openat201.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.openat202.sh b/testcase/syscalls/ltp.syscalls.openat202.sh index d2b6739..f5e622c 100755 --- a/testcase/syscalls/ltp.syscalls.openat202.sh +++ b/testcase/syscalls/ltp.syscalls.openat202.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.openat203.sh b/testcase/syscalls/ltp.syscalls.openat203.sh index d0dc3b0..2b7ff93 100755 --- a/testcase/syscalls/ltp.syscalls.openat203.sh +++ b/testcase/syscalls/ltp.syscalls.openat203.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pathconf01.sh b/testcase/syscalls/ltp.syscalls.pathconf01.sh index 50e0897..4420ac7 100755 --- a/testcase/syscalls/ltp.syscalls.pathconf01.sh +++ b/testcase/syscalls/ltp.syscalls.pathconf01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pathconf02.sh b/testcase/syscalls/ltp.syscalls.pathconf02.sh index 3c2b3c5..7a85194 100755 --- a/testcase/syscalls/ltp.syscalls.pathconf02.sh +++ b/testcase/syscalls/ltp.syscalls.pathconf02.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.pause01.sh b/testcase/syscalls/ltp.syscalls.pause01.sh index c606f34..6110f39 100755 --- a/testcase/syscalls/ltp.syscalls.pause01.sh +++ b/testcase/syscalls/ltp.syscalls.pause01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pause02.sh b/testcase/syscalls/ltp.syscalls.pause02.sh index ec2c1ca..718bc3a 100755 --- a/testcase/syscalls/ltp.syscalls.pause02.sh +++ b/testcase/syscalls/ltp.syscalls.pause02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pause03.sh b/testcase/syscalls/ltp.syscalls.pause03.sh index 2c7971e..719dd76 100755 --- a/testcase/syscalls/ltp.syscalls.pause03.sh +++ b/testcase/syscalls/ltp.syscalls.pause03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.perf_event_open01.sh b/testcase/syscalls/ltp.syscalls.perf_event_open01.sh index e05ed7f..293096d 100755 --- a/testcase/syscalls/ltp.syscalls.perf_event_open01.sh +++ b/testcase/syscalls/ltp.syscalls.perf_event_open01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.perf_event_open02.sh b/testcase/syscalls/ltp.syscalls.perf_event_open02.sh index d948290..e1a3ff2 100755 --- a/testcase/syscalls/ltp.syscalls.perf_event_open02.sh +++ b/testcase/syscalls/ltp.syscalls.perf_event_open02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.perf_event_open03.sh b/testcase/syscalls/ltp.syscalls.perf_event_open03.sh index 1c91b97..8344614 100755 --- a/testcase/syscalls/ltp.syscalls.perf_event_open03.sh +++ b/testcase/syscalls/ltp.syscalls.perf_event_open03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.personality01.sh b/testcase/syscalls/ltp.syscalls.personality01.sh index f0ac2ab..38fbf34 100755 --- a/testcase/syscalls/ltp.syscalls.personality01.sh +++ b/testcase/syscalls/ltp.syscalls.personality01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.personality02.sh b/testcase/syscalls/ltp.syscalls.personality02.sh index 3b6b640..cb604fe 100755 --- a/testcase/syscalls/ltp.syscalls.personality02.sh +++ b/testcase/syscalls/ltp.syscalls.personality02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pidfd_getfd01.sh b/testcase/syscalls/ltp.syscalls.pidfd_getfd01.sh index 36e2621..1af34ae 100755 --- a/testcase/syscalls/ltp.syscalls.pidfd_getfd01.sh +++ b/testcase/syscalls/ltp.syscalls.pidfd_getfd01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pidfd_getfd02.sh b/testcase/syscalls/ltp.syscalls.pidfd_getfd02.sh index 9873a89..f89e8c3 100755 --- a/testcase/syscalls/ltp.syscalls.pidfd_getfd02.sh +++ b/testcase/syscalls/ltp.syscalls.pidfd_getfd02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pidfd_open01.sh b/testcase/syscalls/ltp.syscalls.pidfd_open01.sh index 1471828..7844c5c 100755 --- a/testcase/syscalls/ltp.syscalls.pidfd_open01.sh +++ b/testcase/syscalls/ltp.syscalls.pidfd_open01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pidfd_open02.sh b/testcase/syscalls/ltp.syscalls.pidfd_open02.sh index 62484e6..110a166 100755 --- a/testcase/syscalls/ltp.syscalls.pidfd_open02.sh +++ b/testcase/syscalls/ltp.syscalls.pidfd_open02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pidfd_open03.sh b/testcase/syscalls/ltp.syscalls.pidfd_open03.sh index 5e0a538..a2b5659 100755 --- a/testcase/syscalls/ltp.syscalls.pidfd_open03.sh +++ b/testcase/syscalls/ltp.syscalls.pidfd_open03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pidfd_open04.sh b/testcase/syscalls/ltp.syscalls.pidfd_open04.sh index a36f6d2..a32da1d 100755 --- a/testcase/syscalls/ltp.syscalls.pidfd_open04.sh +++ b/testcase/syscalls/ltp.syscalls.pidfd_open04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pidfd_send_signal01.sh b/testcase/syscalls/ltp.syscalls.pidfd_send_signal01.sh index 675fdd7..fd71aa1 100755 --- a/testcase/syscalls/ltp.syscalls.pidfd_send_signal01.sh +++ b/testcase/syscalls/ltp.syscalls.pidfd_send_signal01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pidfd_send_signal02.sh b/testcase/syscalls/ltp.syscalls.pidfd_send_signal02.sh index 1bd1f59..b09a706 100755 --- a/testcase/syscalls/ltp.syscalls.pidfd_send_signal02.sh +++ b/testcase/syscalls/ltp.syscalls.pidfd_send_signal02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pidfd_send_signal03.sh b/testcase/syscalls/ltp.syscalls.pidfd_send_signal03.sh index cde80ca..dfcf10b 100755 --- a/testcase/syscalls/ltp.syscalls.pidfd_send_signal03.sh +++ b/testcase/syscalls/ltp.syscalls.pidfd_send_signal03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pipe01.sh b/testcase/syscalls/ltp.syscalls.pipe01.sh index c5db477..78c4f6e 100755 --- a/testcase/syscalls/ltp.syscalls.pipe01.sh +++ b/testcase/syscalls/ltp.syscalls.pipe01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pipe02.sh b/testcase/syscalls/ltp.syscalls.pipe02.sh index 56ff7c8..039ab9f 100755 --- a/testcase/syscalls/ltp.syscalls.pipe02.sh +++ b/testcase/syscalls/ltp.syscalls.pipe02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pipe03.sh b/testcase/syscalls/ltp.syscalls.pipe03.sh index ab14656..689c1f4 100755 --- a/testcase/syscalls/ltp.syscalls.pipe03.sh +++ b/testcase/syscalls/ltp.syscalls.pipe03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pipe04.sh b/testcase/syscalls/ltp.syscalls.pipe04.sh index d898ffe..3e8d3de 100755 --- a/testcase/syscalls/ltp.syscalls.pipe04.sh +++ b/testcase/syscalls/ltp.syscalls.pipe04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pipe05.sh b/testcase/syscalls/ltp.syscalls.pipe05.sh index cfd2494..0683997 100755 --- a/testcase/syscalls/ltp.syscalls.pipe05.sh +++ b/testcase/syscalls/ltp.syscalls.pipe05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pipe06.sh b/testcase/syscalls/ltp.syscalls.pipe06.sh index 2d8644e..32c4165 100755 --- a/testcase/syscalls/ltp.syscalls.pipe06.sh +++ b/testcase/syscalls/ltp.syscalls.pipe06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pipe07.sh b/testcase/syscalls/ltp.syscalls.pipe07.sh index f77bbc8..db6cea7 100755 --- a/testcase/syscalls/ltp.syscalls.pipe07.sh +++ b/testcase/syscalls/ltp.syscalls.pipe07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pipe08.sh b/testcase/syscalls/ltp.syscalls.pipe08.sh index 2728a58..09e54b5 100755 --- a/testcase/syscalls/ltp.syscalls.pipe08.sh +++ b/testcase/syscalls/ltp.syscalls.pipe08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pipe09.sh b/testcase/syscalls/ltp.syscalls.pipe09.sh index d9d1e3a..abf7356 100755 --- a/testcase/syscalls/ltp.syscalls.pipe09.sh +++ b/testcase/syscalls/ltp.syscalls.pipe09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pipe10.sh b/testcase/syscalls/ltp.syscalls.pipe10.sh index a8a77be..e14cef9 100755 --- a/testcase/syscalls/ltp.syscalls.pipe10.sh +++ b/testcase/syscalls/ltp.syscalls.pipe10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pipe11.sh b/testcase/syscalls/ltp.syscalls.pipe11.sh index 3d64b70..f281759 100755 --- a/testcase/syscalls/ltp.syscalls.pipe11.sh +++ b/testcase/syscalls/ltp.syscalls.pipe11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pipe12.sh b/testcase/syscalls/ltp.syscalls.pipe12.sh index 7730ece..fc3f818 100755 --- a/testcase/syscalls/ltp.syscalls.pipe12.sh +++ b/testcase/syscalls/ltp.syscalls.pipe12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pipe13.sh b/testcase/syscalls/ltp.syscalls.pipe13.sh index 51bd7db..be140a5 100755 --- a/testcase/syscalls/ltp.syscalls.pipe13.sh +++ b/testcase/syscalls/ltp.syscalls.pipe13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pipe14.sh b/testcase/syscalls/ltp.syscalls.pipe14.sh index 0e0c121..da195fb 100755 --- a/testcase/syscalls/ltp.syscalls.pipe14.sh +++ b/testcase/syscalls/ltp.syscalls.pipe14.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.pipe15.sh b/testcase/syscalls/ltp.syscalls.pipe15.sh index 0637ef6..38f41eb 100755 --- a/testcase/syscalls/ltp.syscalls.pipe15.sh +++ b/testcase/syscalls/ltp.syscalls.pipe15.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.pipe2_01.sh b/testcase/syscalls/ltp.syscalls.pipe2_01.sh index ba8ef87..f58dccc 100755 --- a/testcase/syscalls/ltp.syscalls.pipe2_01.sh +++ b/testcase/syscalls/ltp.syscalls.pipe2_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pipe2_02.sh b/testcase/syscalls/ltp.syscalls.pipe2_02.sh index 74a805b..5d7229c 100755 --- a/testcase/syscalls/ltp.syscalls.pipe2_02.sh +++ b/testcase/syscalls/ltp.syscalls.pipe2_02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pipe2_04.sh b/testcase/syscalls/ltp.syscalls.pipe2_04.sh index 6816c65..20c8a5d 100755 --- a/testcase/syscalls/ltp.syscalls.pipe2_04.sh +++ b/testcase/syscalls/ltp.syscalls.pipe2_04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pivot_root01.sh b/testcase/syscalls/ltp.syscalls.pivot_root01.sh index 3e02e51..40e7756 100755 --- a/testcase/syscalls/ltp.syscalls.pivot_root01.sh +++ b/testcase/syscalls/ltp.syscalls.pivot_root01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pkey01.sh b/testcase/syscalls/ltp.syscalls.pkey01.sh index 96a5d64..ba04061 100755 --- a/testcase/syscalls/ltp.syscalls.pkey01.sh +++ b/testcase/syscalls/ltp.syscalls.pkey01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.poll01.sh b/testcase/syscalls/ltp.syscalls.poll01.sh index 013acc6..a7a3865 100755 --- a/testcase/syscalls/ltp.syscalls.poll01.sh +++ b/testcase/syscalls/ltp.syscalls.poll01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.poll02.sh b/testcase/syscalls/ltp.syscalls.poll02.sh index 0c420bf..32bc8b2 100755 --- a/testcase/syscalls/ltp.syscalls.poll02.sh +++ b/testcase/syscalls/ltp.syscalls.poll02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.posix_fadvise01.sh b/testcase/syscalls/ltp.syscalls.posix_fadvise01.sh index 0653c60..1cfc816 100755 --- a/testcase/syscalls/ltp.syscalls.posix_fadvise01.sh +++ b/testcase/syscalls/ltp.syscalls.posix_fadvise01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.posix_fadvise01_64.sh b/testcase/syscalls/ltp.syscalls.posix_fadvise01_64.sh index 6123c39..3017cc0 100755 --- a/testcase/syscalls/ltp.syscalls.posix_fadvise01_64.sh +++ b/testcase/syscalls/ltp.syscalls.posix_fadvise01_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.posix_fadvise02.sh b/testcase/syscalls/ltp.syscalls.posix_fadvise02.sh index ab0ea25..bb5abd1 100755 --- a/testcase/syscalls/ltp.syscalls.posix_fadvise02.sh +++ b/testcase/syscalls/ltp.syscalls.posix_fadvise02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.posix_fadvise02_64.sh b/testcase/syscalls/ltp.syscalls.posix_fadvise02_64.sh index b190ecf..b1f5e39 100755 --- a/testcase/syscalls/ltp.syscalls.posix_fadvise02_64.sh +++ b/testcase/syscalls/ltp.syscalls.posix_fadvise02_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.posix_fadvise03.sh b/testcase/syscalls/ltp.syscalls.posix_fadvise03.sh index 28e8523..fb1b165 100755 --- a/testcase/syscalls/ltp.syscalls.posix_fadvise03.sh +++ b/testcase/syscalls/ltp.syscalls.posix_fadvise03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.posix_fadvise03_64.sh b/testcase/syscalls/ltp.syscalls.posix_fadvise03_64.sh index dd654e0..735f7ab 100755 --- a/testcase/syscalls/ltp.syscalls.posix_fadvise03_64.sh +++ b/testcase/syscalls/ltp.syscalls.posix_fadvise03_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.posix_fadvise04.sh b/testcase/syscalls/ltp.syscalls.posix_fadvise04.sh index 31c816b..0548f0a 100755 --- a/testcase/syscalls/ltp.syscalls.posix_fadvise04.sh +++ b/testcase/syscalls/ltp.syscalls.posix_fadvise04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.posix_fadvise04_64.sh b/testcase/syscalls/ltp.syscalls.posix_fadvise04_64.sh index 1087f92..8178a79 100755 --- a/testcase/syscalls/ltp.syscalls.posix_fadvise04_64.sh +++ b/testcase/syscalls/ltp.syscalls.posix_fadvise04_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ppoll01.sh b/testcase/syscalls/ltp.syscalls.ppoll01.sh index 046087a..acaf363 100755 --- a/testcase/syscalls/ltp.syscalls.ppoll01.sh +++ b/testcase/syscalls/ltp.syscalls.ppoll01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.prctl01.sh b/testcase/syscalls/ltp.syscalls.prctl01.sh index a678871..7029a4a 100755 --- a/testcase/syscalls/ltp.syscalls.prctl01.sh +++ b/testcase/syscalls/ltp.syscalls.prctl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.prctl02.sh b/testcase/syscalls/ltp.syscalls.prctl02.sh index 9f0be0c..7e0bafa 100755 --- a/testcase/syscalls/ltp.syscalls.prctl02.sh +++ b/testcase/syscalls/ltp.syscalls.prctl02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.prctl03.sh b/testcase/syscalls/ltp.syscalls.prctl03.sh index 7a72a78..04265d4 100755 --- a/testcase/syscalls/ltp.syscalls.prctl03.sh +++ b/testcase/syscalls/ltp.syscalls.prctl03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.prctl04.sh b/testcase/syscalls/ltp.syscalls.prctl04.sh index 6a67e85..49c24d7 100755 --- a/testcase/syscalls/ltp.syscalls.prctl04.sh +++ b/testcase/syscalls/ltp.syscalls.prctl04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.prctl05.sh b/testcase/syscalls/ltp.syscalls.prctl05.sh index 225e27d..c2e92d0 100755 --- a/testcase/syscalls/ltp.syscalls.prctl05.sh +++ b/testcase/syscalls/ltp.syscalls.prctl05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.prctl06.sh b/testcase/syscalls/ltp.syscalls.prctl06.sh index f8550c6..bd39711 100755 --- a/testcase/syscalls/ltp.syscalls.prctl06.sh +++ b/testcase/syscalls/ltp.syscalls.prctl06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.prctl07.sh b/testcase/syscalls/ltp.syscalls.prctl07.sh index 58ec89d..86a3e2b 100755 --- a/testcase/syscalls/ltp.syscalls.prctl07.sh +++ b/testcase/syscalls/ltp.syscalls.prctl07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.prctl08.sh b/testcase/syscalls/ltp.syscalls.prctl08.sh index 51c6263..e9f071a 100755 --- a/testcase/syscalls/ltp.syscalls.prctl08.sh +++ b/testcase/syscalls/ltp.syscalls.prctl08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.prctl09.sh b/testcase/syscalls/ltp.syscalls.prctl09.sh index 6d46ac8..4e3a819 100755 --- a/testcase/syscalls/ltp.syscalls.prctl09.sh +++ b/testcase/syscalls/ltp.syscalls.prctl09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.prctl10.sh b/testcase/syscalls/ltp.syscalls.prctl10.sh index 443480a..646945f 100755 --- a/testcase/syscalls/ltp.syscalls.prctl10.sh +++ b/testcase/syscalls/ltp.syscalls.prctl10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pread01.sh b/testcase/syscalls/ltp.syscalls.pread01.sh index 90095d5..ee30822 100755 --- a/testcase/syscalls/ltp.syscalls.pread01.sh +++ b/testcase/syscalls/ltp.syscalls.pread01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pread01_64.sh b/testcase/syscalls/ltp.syscalls.pread01_64.sh index 319bf2c..3ccc78c 100755 --- a/testcase/syscalls/ltp.syscalls.pread01_64.sh +++ b/testcase/syscalls/ltp.syscalls.pread01_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pread02.sh b/testcase/syscalls/ltp.syscalls.pread02.sh index ed78634..0e1f3c6 100755 --- a/testcase/syscalls/ltp.syscalls.pread02.sh +++ b/testcase/syscalls/ltp.syscalls.pread02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pread02_64.sh b/testcase/syscalls/ltp.syscalls.pread02_64.sh index 98a60d3..dc88a19 100755 --- a/testcase/syscalls/ltp.syscalls.pread02_64.sh +++ b/testcase/syscalls/ltp.syscalls.pread02_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.preadv01.sh b/testcase/syscalls/ltp.syscalls.preadv01.sh index 9aba36a..0ffb17b 100755 --- a/testcase/syscalls/ltp.syscalls.preadv01.sh +++ b/testcase/syscalls/ltp.syscalls.preadv01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.preadv01_64.sh b/testcase/syscalls/ltp.syscalls.preadv01_64.sh index 73106ac..81d56b7 100755 --- a/testcase/syscalls/ltp.syscalls.preadv01_64.sh +++ b/testcase/syscalls/ltp.syscalls.preadv01_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.preadv02.sh b/testcase/syscalls/ltp.syscalls.preadv02.sh index ec4bef7..ad7fd76 100755 --- a/testcase/syscalls/ltp.syscalls.preadv02.sh +++ b/testcase/syscalls/ltp.syscalls.preadv02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.preadv02_64.sh b/testcase/syscalls/ltp.syscalls.preadv02_64.sh index d6e45a4..f32982b 100755 --- a/testcase/syscalls/ltp.syscalls.preadv02_64.sh +++ b/testcase/syscalls/ltp.syscalls.preadv02_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.preadv03.sh b/testcase/syscalls/ltp.syscalls.preadv03.sh index dc10612..0126eba 100755 --- a/testcase/syscalls/ltp.syscalls.preadv03.sh +++ b/testcase/syscalls/ltp.syscalls.preadv03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.preadv03_64.sh b/testcase/syscalls/ltp.syscalls.preadv03_64.sh index 6f3a34f..828d823 100755 --- a/testcase/syscalls/ltp.syscalls.preadv03_64.sh +++ b/testcase/syscalls/ltp.syscalls.preadv03_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.preadv201.sh b/testcase/syscalls/ltp.syscalls.preadv201.sh index 6e86c7a..ec10024 100755 --- a/testcase/syscalls/ltp.syscalls.preadv201.sh +++ b/testcase/syscalls/ltp.syscalls.preadv201.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.preadv201_64.sh b/testcase/syscalls/ltp.syscalls.preadv201_64.sh index b217bfe..443a9c2 100755 --- a/testcase/syscalls/ltp.syscalls.preadv201_64.sh +++ b/testcase/syscalls/ltp.syscalls.preadv201_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.preadv202.sh b/testcase/syscalls/ltp.syscalls.preadv202.sh index c2dbff3..22315f1 100755 --- a/testcase/syscalls/ltp.syscalls.preadv202.sh +++ b/testcase/syscalls/ltp.syscalls.preadv202.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.preadv202_64.sh b/testcase/syscalls/ltp.syscalls.preadv202_64.sh index 65d75f4..25ecffd 100755 --- a/testcase/syscalls/ltp.syscalls.preadv202_64.sh +++ b/testcase/syscalls/ltp.syscalls.preadv202_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.preadv203.sh b/testcase/syscalls/ltp.syscalls.preadv203.sh index b1dfc6e..455e937 100755 --- a/testcase/syscalls/ltp.syscalls.preadv203.sh +++ b/testcase/syscalls/ltp.syscalls.preadv203.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.preadv203_64.sh b/testcase/syscalls/ltp.syscalls.preadv203_64.sh index 9445437..2ac44cd 100755 --- a/testcase/syscalls/ltp.syscalls.preadv203_64.sh +++ b/testcase/syscalls/ltp.syscalls.preadv203_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.process_madvise01.sh b/testcase/syscalls/ltp.syscalls.process_madvise01.sh index 3f9d8d0..0169a6e 100755 --- a/testcase/syscalls/ltp.syscalls.process_madvise01.sh +++ b/testcase/syscalls/ltp.syscalls.process_madvise01.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.process_vm_readv01.sh b/testcase/syscalls/ltp.syscalls.process_vm_readv01.sh index ba2e747..e4469bc 100755 --- a/testcase/syscalls/ltp.syscalls.process_vm_readv01.sh +++ b/testcase/syscalls/ltp.syscalls.process_vm_readv01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.process_vm_readv02.sh b/testcase/syscalls/ltp.syscalls.process_vm_readv02.sh index b9b1d86..6328157 100755 --- a/testcase/syscalls/ltp.syscalls.process_vm_readv02.sh +++ b/testcase/syscalls/ltp.syscalls.process_vm_readv02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.process_vm_readv03.sh b/testcase/syscalls/ltp.syscalls.process_vm_readv03.sh index 92ff360..f59197f 100755 --- a/testcase/syscalls/ltp.syscalls.process_vm_readv03.sh +++ b/testcase/syscalls/ltp.syscalls.process_vm_readv03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.process_vm_writev01.sh b/testcase/syscalls/ltp.syscalls.process_vm_writev01.sh index 302e770..a9c80d7 100755 --- a/testcase/syscalls/ltp.syscalls.process_vm_writev01.sh +++ b/testcase/syscalls/ltp.syscalls.process_vm_writev01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.process_vm_writev02.sh b/testcase/syscalls/ltp.syscalls.process_vm_writev02.sh index 022b6b7..19f5ef6 100755 --- a/testcase/syscalls/ltp.syscalls.process_vm_writev02.sh +++ b/testcase/syscalls/ltp.syscalls.process_vm_writev02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.profil01.sh b/testcase/syscalls/ltp.syscalls.profil01.sh index e19888d..634d67c 100755 --- a/testcase/syscalls/ltp.syscalls.profil01.sh +++ b/testcase/syscalls/ltp.syscalls.profil01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.prot_hsymlinks.sh b/testcase/syscalls/ltp.syscalls.prot_hsymlinks.sh index 91b3cf3..bcbbe2f 100755 --- a/testcase/syscalls/ltp.syscalls.prot_hsymlinks.sh +++ b/testcase/syscalls/ltp.syscalls.prot_hsymlinks.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pselect01.sh b/testcase/syscalls/ltp.syscalls.pselect01.sh index 2aa1e30..34bee69 100755 --- a/testcase/syscalls/ltp.syscalls.pselect01.sh +++ b/testcase/syscalls/ltp.syscalls.pselect01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pselect01_64.sh b/testcase/syscalls/ltp.syscalls.pselect01_64.sh index a67cd31..14a32c1 100755 --- a/testcase/syscalls/ltp.syscalls.pselect01_64.sh +++ b/testcase/syscalls/ltp.syscalls.pselect01_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pselect02.sh b/testcase/syscalls/ltp.syscalls.pselect02.sh index 644abdf..dbb6795 100755 --- a/testcase/syscalls/ltp.syscalls.pselect02.sh +++ b/testcase/syscalls/ltp.syscalls.pselect02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pselect02_64.sh b/testcase/syscalls/ltp.syscalls.pselect02_64.sh index 0650561..6a594ac 100755 --- a/testcase/syscalls/ltp.syscalls.pselect02_64.sh +++ b/testcase/syscalls/ltp.syscalls.pselect02_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pselect03.sh b/testcase/syscalls/ltp.syscalls.pselect03.sh index fbca50e..3c5e202 100755 --- a/testcase/syscalls/ltp.syscalls.pselect03.sh +++ b/testcase/syscalls/ltp.syscalls.pselect03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pselect03_64.sh b/testcase/syscalls/ltp.syscalls.pselect03_64.sh index 704b96e..08010c2 100755 --- a/testcase/syscalls/ltp.syscalls.pselect03_64.sh +++ b/testcase/syscalls/ltp.syscalls.pselect03_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ptrace01.sh b/testcase/syscalls/ltp.syscalls.ptrace01.sh index f2af31e..195b2f8 100755 --- a/testcase/syscalls/ltp.syscalls.ptrace01.sh +++ b/testcase/syscalls/ltp.syscalls.ptrace01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ptrace02.sh b/testcase/syscalls/ltp.syscalls.ptrace02.sh index 37bd490..d13f731 100755 --- a/testcase/syscalls/ltp.syscalls.ptrace02.sh +++ b/testcase/syscalls/ltp.syscalls.ptrace02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ptrace03.sh b/testcase/syscalls/ltp.syscalls.ptrace03.sh index e570a93..9962b97 100755 --- a/testcase/syscalls/ltp.syscalls.ptrace03.sh +++ b/testcase/syscalls/ltp.syscalls.ptrace03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ptrace04.sh b/testcase/syscalls/ltp.syscalls.ptrace04.sh index 7e71cb9..93020b0 100755 --- a/testcase/syscalls/ltp.syscalls.ptrace04.sh +++ b/testcase/syscalls/ltp.syscalls.ptrace04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ptrace05.sh b/testcase/syscalls/ltp.syscalls.ptrace05.sh index f0d6c2e..eb31fb6 100755 --- a/testcase/syscalls/ltp.syscalls.ptrace05.sh +++ b/testcase/syscalls/ltp.syscalls.ptrace05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ptrace06.sh b/testcase/syscalls/ltp.syscalls.ptrace06.sh index 8b568b9..ab105f2 100755 --- a/testcase/syscalls/ltp.syscalls.ptrace06.sh +++ b/testcase/syscalls/ltp.syscalls.ptrace06.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.ptrace07.sh b/testcase/syscalls/ltp.syscalls.ptrace07.sh index 4360694..9b892e1 100755 --- a/testcase/syscalls/ltp.syscalls.ptrace07.sh +++ b/testcase/syscalls/ltp.syscalls.ptrace07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ptrace08.sh b/testcase/syscalls/ltp.syscalls.ptrace08.sh index 60bb0b1..c663589 100755 --- a/testcase/syscalls/ltp.syscalls.ptrace08.sh +++ b/testcase/syscalls/ltp.syscalls.ptrace08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ptrace09.sh b/testcase/syscalls/ltp.syscalls.ptrace09.sh index f687b67..1f90ebd 100755 --- a/testcase/syscalls/ltp.syscalls.ptrace09.sh +++ b/testcase/syscalls/ltp.syscalls.ptrace09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ptrace10.sh b/testcase/syscalls/ltp.syscalls.ptrace10.sh index 99849ad..d2f7c12 100755 --- a/testcase/syscalls/ltp.syscalls.ptrace10.sh +++ b/testcase/syscalls/ltp.syscalls.ptrace10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ptrace11.sh b/testcase/syscalls/ltp.syscalls.ptrace11.sh index 995d8aa..101b76f 100755 --- a/testcase/syscalls/ltp.syscalls.ptrace11.sh +++ b/testcase/syscalls/ltp.syscalls.ptrace11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwrite01.sh b/testcase/syscalls/ltp.syscalls.pwrite01.sh index 7d730b6..0a64a72 100755 --- a/testcase/syscalls/ltp.syscalls.pwrite01.sh +++ b/testcase/syscalls/ltp.syscalls.pwrite01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwrite01_64.sh b/testcase/syscalls/ltp.syscalls.pwrite01_64.sh index d549f56..ab37663 100755 --- a/testcase/syscalls/ltp.syscalls.pwrite01_64.sh +++ b/testcase/syscalls/ltp.syscalls.pwrite01_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwrite02.sh b/testcase/syscalls/ltp.syscalls.pwrite02.sh index aacb8fe..87c6918 100755 --- a/testcase/syscalls/ltp.syscalls.pwrite02.sh +++ b/testcase/syscalls/ltp.syscalls.pwrite02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwrite02_64.sh b/testcase/syscalls/ltp.syscalls.pwrite02_64.sh index 79910e7..0fe0f09 100755 --- a/testcase/syscalls/ltp.syscalls.pwrite02_64.sh +++ b/testcase/syscalls/ltp.syscalls.pwrite02_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwrite03.sh b/testcase/syscalls/ltp.syscalls.pwrite03.sh index 79e65fc..90aedd1 100755 --- a/testcase/syscalls/ltp.syscalls.pwrite03.sh +++ b/testcase/syscalls/ltp.syscalls.pwrite03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwrite03_64.sh b/testcase/syscalls/ltp.syscalls.pwrite03_64.sh index 76e78b0..376e77b 100755 --- a/testcase/syscalls/ltp.syscalls.pwrite03_64.sh +++ b/testcase/syscalls/ltp.syscalls.pwrite03_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwrite04.sh b/testcase/syscalls/ltp.syscalls.pwrite04.sh index aad4a00..4d92fc5 100755 --- a/testcase/syscalls/ltp.syscalls.pwrite04.sh +++ b/testcase/syscalls/ltp.syscalls.pwrite04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwrite04_64.sh b/testcase/syscalls/ltp.syscalls.pwrite04_64.sh index 9168708..e9a8852 100755 --- a/testcase/syscalls/ltp.syscalls.pwrite04_64.sh +++ b/testcase/syscalls/ltp.syscalls.pwrite04_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwritev01.sh b/testcase/syscalls/ltp.syscalls.pwritev01.sh index 2ebed88..71271cd 100755 --- a/testcase/syscalls/ltp.syscalls.pwritev01.sh +++ b/testcase/syscalls/ltp.syscalls.pwritev01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwritev01_64.sh b/testcase/syscalls/ltp.syscalls.pwritev01_64.sh index 6ab0307..ff7da93 100755 --- a/testcase/syscalls/ltp.syscalls.pwritev01_64.sh +++ b/testcase/syscalls/ltp.syscalls.pwritev01_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwritev02.sh b/testcase/syscalls/ltp.syscalls.pwritev02.sh index caf512f..ecf8429 100755 --- a/testcase/syscalls/ltp.syscalls.pwritev02.sh +++ b/testcase/syscalls/ltp.syscalls.pwritev02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwritev02_64.sh b/testcase/syscalls/ltp.syscalls.pwritev02_64.sh index 26994f4..516478f 100755 --- a/testcase/syscalls/ltp.syscalls.pwritev02_64.sh +++ b/testcase/syscalls/ltp.syscalls.pwritev02_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwritev03.sh b/testcase/syscalls/ltp.syscalls.pwritev03.sh index 23cb3d7..10b2d0a 100755 --- a/testcase/syscalls/ltp.syscalls.pwritev03.sh +++ b/testcase/syscalls/ltp.syscalls.pwritev03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwritev03_64.sh b/testcase/syscalls/ltp.syscalls.pwritev03_64.sh index 8197981..3d3b620 100755 --- a/testcase/syscalls/ltp.syscalls.pwritev03_64.sh +++ b/testcase/syscalls/ltp.syscalls.pwritev03_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwritev201.sh b/testcase/syscalls/ltp.syscalls.pwritev201.sh index 1f60549..1dad390 100755 --- a/testcase/syscalls/ltp.syscalls.pwritev201.sh +++ b/testcase/syscalls/ltp.syscalls.pwritev201.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwritev201_64.sh b/testcase/syscalls/ltp.syscalls.pwritev201_64.sh index 48612e1..13d5d52 100755 --- a/testcase/syscalls/ltp.syscalls.pwritev201_64.sh +++ b/testcase/syscalls/ltp.syscalls.pwritev201_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwritev202.sh b/testcase/syscalls/ltp.syscalls.pwritev202.sh index 11d3d38..167b715 100755 --- a/testcase/syscalls/ltp.syscalls.pwritev202.sh +++ b/testcase/syscalls/ltp.syscalls.pwritev202.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.pwritev202_64.sh b/testcase/syscalls/ltp.syscalls.pwritev202_64.sh index 1ec633d..aadac8c 100755 --- a/testcase/syscalls/ltp.syscalls.pwritev202_64.sh +++ b/testcase/syscalls/ltp.syscalls.pwritev202_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.qmm01.sh b/testcase/syscalls/ltp.syscalls.qmm01.sh index 94f900b..656e41f 100755 --- a/testcase/syscalls/ltp.syscalls.qmm01.sh +++ b/testcase/syscalls/ltp.syscalls.qmm01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.quotactl01.sh b/testcase/syscalls/ltp.syscalls.quotactl01.sh index 9537524..9a2e4db 100755 --- a/testcase/syscalls/ltp.syscalls.quotactl01.sh +++ b/testcase/syscalls/ltp.syscalls.quotactl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.quotactl02.sh b/testcase/syscalls/ltp.syscalls.quotactl02.sh index 708937b..fe8e37a 100755 --- a/testcase/syscalls/ltp.syscalls.quotactl02.sh +++ b/testcase/syscalls/ltp.syscalls.quotactl02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.quotactl03.sh b/testcase/syscalls/ltp.syscalls.quotactl03.sh index 0ff48cc..4a2501b 100755 --- a/testcase/syscalls/ltp.syscalls.quotactl03.sh +++ b/testcase/syscalls/ltp.syscalls.quotactl03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.quotactl04.sh b/testcase/syscalls/ltp.syscalls.quotactl04.sh index d88f498..991f7e1 100755 --- a/testcase/syscalls/ltp.syscalls.quotactl04.sh +++ b/testcase/syscalls/ltp.syscalls.quotactl04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.quotactl05.sh b/testcase/syscalls/ltp.syscalls.quotactl05.sh index 1c0a359..2679ae2 100755 --- a/testcase/syscalls/ltp.syscalls.quotactl05.sh +++ b/testcase/syscalls/ltp.syscalls.quotactl05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.quotactl06.sh b/testcase/syscalls/ltp.syscalls.quotactl06.sh index c0ce78d..edc0f80 100755 --- a/testcase/syscalls/ltp.syscalls.quotactl06.sh +++ b/testcase/syscalls/ltp.syscalls.quotactl06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.quotactl07.sh b/testcase/syscalls/ltp.syscalls.quotactl07.sh index f63fa47..c5e1a2b 100755 --- a/testcase/syscalls/ltp.syscalls.quotactl07.sh +++ b/testcase/syscalls/ltp.syscalls.quotactl07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.quotactl08.sh b/testcase/syscalls/ltp.syscalls.quotactl08.sh index 89163be..e96651f 100755 --- a/testcase/syscalls/ltp.syscalls.quotactl08.sh +++ b/testcase/syscalls/ltp.syscalls.quotactl08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.quotactl09.sh b/testcase/syscalls/ltp.syscalls.quotactl09.sh index 3c32bfa..9c83a40 100755 --- a/testcase/syscalls/ltp.syscalls.quotactl09.sh +++ b/testcase/syscalls/ltp.syscalls.quotactl09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.read01.sh b/testcase/syscalls/ltp.syscalls.read01.sh index 9a029fd..3d3754b 100755 --- a/testcase/syscalls/ltp.syscalls.read01.sh +++ b/testcase/syscalls/ltp.syscalls.read01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.read02.sh b/testcase/syscalls/ltp.syscalls.read02.sh index 5830b3f..3e018cd 100755 --- a/testcase/syscalls/ltp.syscalls.read02.sh +++ b/testcase/syscalls/ltp.syscalls.read02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.read03.sh b/testcase/syscalls/ltp.syscalls.read03.sh index a8dcc4b..af8b2de 100755 --- a/testcase/syscalls/ltp.syscalls.read03.sh +++ b/testcase/syscalls/ltp.syscalls.read03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.read04.sh b/testcase/syscalls/ltp.syscalls.read04.sh index dc6f4ef..8fe5c07 100755 --- a/testcase/syscalls/ltp.syscalls.read04.sh +++ b/testcase/syscalls/ltp.syscalls.read04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.readahead01.sh b/testcase/syscalls/ltp.syscalls.readahead01.sh index d91b456..16b26aa 100755 --- a/testcase/syscalls/ltp.syscalls.readahead01.sh +++ b/testcase/syscalls/ltp.syscalls.readahead01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.readahead02.sh b/testcase/syscalls/ltp.syscalls.readahead02.sh index 9a51c46..05e6f0e 100755 --- a/testcase/syscalls/ltp.syscalls.readahead02.sh +++ b/testcase/syscalls/ltp.syscalls.readahead02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.readdir01.sh b/testcase/syscalls/ltp.syscalls.readdir01.sh index 2be415a..7c8f5c5 100755 --- a/testcase/syscalls/ltp.syscalls.readdir01.sh +++ b/testcase/syscalls/ltp.syscalls.readdir01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.readdir21.sh b/testcase/syscalls/ltp.syscalls.readdir21.sh index 3a42680..dcfab50 100755 --- a/testcase/syscalls/ltp.syscalls.readdir21.sh +++ b/testcase/syscalls/ltp.syscalls.readdir21.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.readlink01.sh b/testcase/syscalls/ltp.syscalls.readlink01.sh index 864d689..75c1954 100755 --- a/testcase/syscalls/ltp.syscalls.readlink01.sh +++ b/testcase/syscalls/ltp.syscalls.readlink01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.readlink01A.sh b/testcase/syscalls/ltp.syscalls.readlink01A.sh index b2d7d8d..5ac942e 100755 --- a/testcase/syscalls/ltp.syscalls.readlink01A.sh +++ b/testcase/syscalls/ltp.syscalls.readlink01A.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.readlink03.sh b/testcase/syscalls/ltp.syscalls.readlink03.sh index 3bfdbde..32bfe51 100755 --- a/testcase/syscalls/ltp.syscalls.readlink03.sh +++ b/testcase/syscalls/ltp.syscalls.readlink03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.readlinkat01.sh b/testcase/syscalls/ltp.syscalls.readlinkat01.sh index 64b8fc2..46e0dc9 100755 --- a/testcase/syscalls/ltp.syscalls.readlinkat01.sh +++ b/testcase/syscalls/ltp.syscalls.readlinkat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.readlinkat02.sh b/testcase/syscalls/ltp.syscalls.readlinkat02.sh index 08202cb..e59243f 100755 --- a/testcase/syscalls/ltp.syscalls.readlinkat02.sh +++ b/testcase/syscalls/ltp.syscalls.readlinkat02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.readv01.sh b/testcase/syscalls/ltp.syscalls.readv01.sh index 01ecbcf..a4dfa0d 100755 --- a/testcase/syscalls/ltp.syscalls.readv01.sh +++ b/testcase/syscalls/ltp.syscalls.readv01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.readv02.sh b/testcase/syscalls/ltp.syscalls.readv02.sh index 2eafef4..e9193a6 100755 --- a/testcase/syscalls/ltp.syscalls.readv02.sh +++ b/testcase/syscalls/ltp.syscalls.readv02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.realpath01.sh b/testcase/syscalls/ltp.syscalls.realpath01.sh index 62ff878..8e98010 100755 --- a/testcase/syscalls/ltp.syscalls.realpath01.sh +++ b/testcase/syscalls/ltp.syscalls.realpath01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.reboot01.sh b/testcase/syscalls/ltp.syscalls.reboot01.sh index 45569b5..57cf9c1 100755 --- a/testcase/syscalls/ltp.syscalls.reboot01.sh +++ b/testcase/syscalls/ltp.syscalls.reboot01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.reboot02.sh b/testcase/syscalls/ltp.syscalls.reboot02.sh index cbfe4eb..9a09770 100755 --- a/testcase/syscalls/ltp.syscalls.reboot02.sh +++ b/testcase/syscalls/ltp.syscalls.reboot02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.recv01.sh b/testcase/syscalls/ltp.syscalls.recv01.sh index fe6dcf8..8abc4d8 100755 --- a/testcase/syscalls/ltp.syscalls.recv01.sh +++ b/testcase/syscalls/ltp.syscalls.recv01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.recvfrom01.sh b/testcase/syscalls/ltp.syscalls.recvfrom01.sh index ff8330b..926c6c1 100755 --- a/testcase/syscalls/ltp.syscalls.recvfrom01.sh +++ b/testcase/syscalls/ltp.syscalls.recvfrom01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.recvmmsg01.sh b/testcase/syscalls/ltp.syscalls.recvmmsg01.sh index 4593db3..058a896 100755 --- a/testcase/syscalls/ltp.syscalls.recvmmsg01.sh +++ b/testcase/syscalls/ltp.syscalls.recvmmsg01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.recvmsg01.sh b/testcase/syscalls/ltp.syscalls.recvmsg01.sh index 4850d0d..5f5f9b2 100755 --- a/testcase/syscalls/ltp.syscalls.recvmsg01.sh +++ b/testcase/syscalls/ltp.syscalls.recvmsg01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.recvmsg02.sh b/testcase/syscalls/ltp.syscalls.recvmsg02.sh index b688a63..cb91a88 100755 --- a/testcase/syscalls/ltp.syscalls.recvmsg02.sh +++ b/testcase/syscalls/ltp.syscalls.recvmsg02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.recvmsg03.sh b/testcase/syscalls/ltp.syscalls.recvmsg03.sh index 63a7f14..2eb9de0 100755 --- a/testcase/syscalls/ltp.syscalls.recvmsg03.sh +++ b/testcase/syscalls/ltp.syscalls.recvmsg03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.remap_file_pages01.sh b/testcase/syscalls/ltp.syscalls.remap_file_pages01.sh index 2cd0090..4c5a728 100755 --- a/testcase/syscalls/ltp.syscalls.remap_file_pages01.sh +++ b/testcase/syscalls/ltp.syscalls.remap_file_pages01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.remap_file_pages02.sh b/testcase/syscalls/ltp.syscalls.remap_file_pages02.sh index ebffd02..e293d46 100755 --- a/testcase/syscalls/ltp.syscalls.remap_file_pages02.sh +++ b/testcase/syscalls/ltp.syscalls.remap_file_pages02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.removexattr01.sh b/testcase/syscalls/ltp.syscalls.removexattr01.sh index 6751f58..4ab5673 100755 --- a/testcase/syscalls/ltp.syscalls.removexattr01.sh +++ b/testcase/syscalls/ltp.syscalls.removexattr01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.removexattr02.sh b/testcase/syscalls/ltp.syscalls.removexattr02.sh index f2eab54..3a0fe34 100755 --- a/testcase/syscalls/ltp.syscalls.removexattr02.sh +++ b/testcase/syscalls/ltp.syscalls.removexattr02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rename01.sh b/testcase/syscalls/ltp.syscalls.rename01.sh index 198903b..825ea10 100755 --- a/testcase/syscalls/ltp.syscalls.rename01.sh +++ b/testcase/syscalls/ltp.syscalls.rename01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rename01A.sh b/testcase/syscalls/ltp.syscalls.rename01A.sh index eddfaeb..25334ee 100755 --- a/testcase/syscalls/ltp.syscalls.rename01A.sh +++ b/testcase/syscalls/ltp.syscalls.rename01A.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rename03.sh b/testcase/syscalls/ltp.syscalls.rename03.sh index 21fc5b4..f395d18 100755 --- a/testcase/syscalls/ltp.syscalls.rename03.sh +++ b/testcase/syscalls/ltp.syscalls.rename03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rename04.sh b/testcase/syscalls/ltp.syscalls.rename04.sh index e621506..baf1240 100755 --- a/testcase/syscalls/ltp.syscalls.rename04.sh +++ b/testcase/syscalls/ltp.syscalls.rename04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rename05.sh b/testcase/syscalls/ltp.syscalls.rename05.sh index d678638..0fb68b5 100755 --- a/testcase/syscalls/ltp.syscalls.rename05.sh +++ b/testcase/syscalls/ltp.syscalls.rename05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rename06.sh b/testcase/syscalls/ltp.syscalls.rename06.sh index 0e3e603..16a9797 100755 --- a/testcase/syscalls/ltp.syscalls.rename06.sh +++ b/testcase/syscalls/ltp.syscalls.rename06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rename07.sh b/testcase/syscalls/ltp.syscalls.rename07.sh index c58a3fc..15020ed 100755 --- a/testcase/syscalls/ltp.syscalls.rename07.sh +++ b/testcase/syscalls/ltp.syscalls.rename07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rename08.sh b/testcase/syscalls/ltp.syscalls.rename08.sh index 892944b..12c9c32 100755 --- a/testcase/syscalls/ltp.syscalls.rename08.sh +++ b/testcase/syscalls/ltp.syscalls.rename08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rename09.sh b/testcase/syscalls/ltp.syscalls.rename09.sh index d86a9bd..a12f2bc 100755 --- a/testcase/syscalls/ltp.syscalls.rename09.sh +++ b/testcase/syscalls/ltp.syscalls.rename09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rename10.sh b/testcase/syscalls/ltp.syscalls.rename10.sh index d2cda81..c5563da 100755 --- a/testcase/syscalls/ltp.syscalls.rename10.sh +++ b/testcase/syscalls/ltp.syscalls.rename10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rename11.sh b/testcase/syscalls/ltp.syscalls.rename11.sh index 517cdeb..6bf9644 100755 --- a/testcase/syscalls/ltp.syscalls.rename11.sh +++ b/testcase/syscalls/ltp.syscalls.rename11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rename12.sh b/testcase/syscalls/ltp.syscalls.rename12.sh index 61a5b35..4e32d7b 100755 --- a/testcase/syscalls/ltp.syscalls.rename12.sh +++ b/testcase/syscalls/ltp.syscalls.rename12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rename13.sh b/testcase/syscalls/ltp.syscalls.rename13.sh index 3cecb24..70d0c71 100755 --- a/testcase/syscalls/ltp.syscalls.rename13.sh +++ b/testcase/syscalls/ltp.syscalls.rename13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rename14.sh b/testcase/syscalls/ltp.syscalls.rename14.sh index b406f07..c941cb7 100755 --- a/testcase/syscalls/ltp.syscalls.rename14.sh +++ b/testcase/syscalls/ltp.syscalls.rename14.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.renameat01.sh b/testcase/syscalls/ltp.syscalls.renameat01.sh index 6d897db..58bf786 100755 --- a/testcase/syscalls/ltp.syscalls.renameat01.sh +++ b/testcase/syscalls/ltp.syscalls.renameat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.renameat201.sh b/testcase/syscalls/ltp.syscalls.renameat201.sh index 474d757..cc07ed2 100755 --- a/testcase/syscalls/ltp.syscalls.renameat201.sh +++ b/testcase/syscalls/ltp.syscalls.renameat201.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.renameat202.sh b/testcase/syscalls/ltp.syscalls.renameat202.sh index fdbc7b2..e68e359 100755 --- a/testcase/syscalls/ltp.syscalls.renameat202.sh +++ b/testcase/syscalls/ltp.syscalls.renameat202.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.request_key01.sh b/testcase/syscalls/ltp.syscalls.request_key01.sh index 3c7c69e..0b9eadd 100755 --- a/testcase/syscalls/ltp.syscalls.request_key01.sh +++ b/testcase/syscalls/ltp.syscalls.request_key01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.request_key02.sh b/testcase/syscalls/ltp.syscalls.request_key02.sh index c81a19f..5eb5d0a 100755 --- a/testcase/syscalls/ltp.syscalls.request_key02.sh +++ b/testcase/syscalls/ltp.syscalls.request_key02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.request_key03.sh b/testcase/syscalls/ltp.syscalls.request_key03.sh index 8710fce..a79bf9b 100755 --- a/testcase/syscalls/ltp.syscalls.request_key03.sh +++ b/testcase/syscalls/ltp.syscalls.request_key03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.request_key04.sh b/testcase/syscalls/ltp.syscalls.request_key04.sh index 190cdb1..92a8e5a 100755 --- a/testcase/syscalls/ltp.syscalls.request_key04.sh +++ b/testcase/syscalls/ltp.syscalls.request_key04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.request_key05.sh b/testcase/syscalls/ltp.syscalls.request_key05.sh index ab47769..b516355 100755 --- a/testcase/syscalls/ltp.syscalls.request_key05.sh +++ b/testcase/syscalls/ltp.syscalls.request_key05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rmdir01.sh b/testcase/syscalls/ltp.syscalls.rmdir01.sh index 9452b4c..11925d8 100755 --- a/testcase/syscalls/ltp.syscalls.rmdir01.sh +++ b/testcase/syscalls/ltp.syscalls.rmdir01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rmdir02.sh b/testcase/syscalls/ltp.syscalls.rmdir02.sh index 0861453..6b68757 100755 --- a/testcase/syscalls/ltp.syscalls.rmdir02.sh +++ b/testcase/syscalls/ltp.syscalls.rmdir02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rmdir03.sh b/testcase/syscalls/ltp.syscalls.rmdir03.sh index 54fcc2b..05e8bf3 100755 --- a/testcase/syscalls/ltp.syscalls.rmdir03.sh +++ b/testcase/syscalls/ltp.syscalls.rmdir03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rmdir03A.sh b/testcase/syscalls/ltp.syscalls.rmdir03A.sh index c12fdab..0d42f96 100755 --- a/testcase/syscalls/ltp.syscalls.rmdir03A.sh +++ b/testcase/syscalls/ltp.syscalls.rmdir03A.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rt_sigaction01.sh b/testcase/syscalls/ltp.syscalls.rt_sigaction01.sh index 5ed1beb..0fa34c2 100755 --- a/testcase/syscalls/ltp.syscalls.rt_sigaction01.sh +++ b/testcase/syscalls/ltp.syscalls.rt_sigaction01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rt_sigaction02.sh b/testcase/syscalls/ltp.syscalls.rt_sigaction02.sh index 8cdfcbf..7a28732 100755 --- a/testcase/syscalls/ltp.syscalls.rt_sigaction02.sh +++ b/testcase/syscalls/ltp.syscalls.rt_sigaction02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rt_sigaction03.sh b/testcase/syscalls/ltp.syscalls.rt_sigaction03.sh index 6149a4e..246e57b 100755 --- a/testcase/syscalls/ltp.syscalls.rt_sigaction03.sh +++ b/testcase/syscalls/ltp.syscalls.rt_sigaction03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rt_sigprocmask01.sh b/testcase/syscalls/ltp.syscalls.rt_sigprocmask01.sh index fc942b6..e471d99 100755 --- a/testcase/syscalls/ltp.syscalls.rt_sigprocmask01.sh +++ b/testcase/syscalls/ltp.syscalls.rt_sigprocmask01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rt_sigprocmask02.sh b/testcase/syscalls/ltp.syscalls.rt_sigprocmask02.sh index 08c3e61..d2899e8 100755 --- a/testcase/syscalls/ltp.syscalls.rt_sigprocmask02.sh +++ b/testcase/syscalls/ltp.syscalls.rt_sigprocmask02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rt_sigqueueinfo01.sh b/testcase/syscalls/ltp.syscalls.rt_sigqueueinfo01.sh index 63a6c20..95d2924 100755 --- a/testcase/syscalls/ltp.syscalls.rt_sigqueueinfo01.sh +++ b/testcase/syscalls/ltp.syscalls.rt_sigqueueinfo01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rt_sigsuspend01.sh b/testcase/syscalls/ltp.syscalls.rt_sigsuspend01.sh index dbbcd69..d7b8bd1 100755 --- a/testcase/syscalls/ltp.syscalls.rt_sigsuspend01.sh +++ b/testcase/syscalls/ltp.syscalls.rt_sigsuspend01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rt_sigtimedwait01.sh b/testcase/syscalls/ltp.syscalls.rt_sigtimedwait01.sh index 18454b7..a43a01e 100755 --- a/testcase/syscalls/ltp.syscalls.rt_sigtimedwait01.sh +++ b/testcase/syscalls/ltp.syscalls.rt_sigtimedwait01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.rt_tgsigqueueinfo01.sh b/testcase/syscalls/ltp.syscalls.rt_tgsigqueueinfo01.sh index dad48a9..30e25fc 100755 --- a/testcase/syscalls/ltp.syscalls.rt_tgsigqueueinfo01.sh +++ b/testcase/syscalls/ltp.syscalls.rt_tgsigqueueinfo01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sbrk01.sh b/testcase/syscalls/ltp.syscalls.sbrk01.sh index 71e8da6..b793bd4 100755 --- a/testcase/syscalls/ltp.syscalls.sbrk01.sh +++ b/testcase/syscalls/ltp.syscalls.sbrk01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sbrk02.sh b/testcase/syscalls/ltp.syscalls.sbrk02.sh index c9de127..4319b1e 100755 --- a/testcase/syscalls/ltp.syscalls.sbrk02.sh +++ b/testcase/syscalls/ltp.syscalls.sbrk02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sbrk03.sh b/testcase/syscalls/ltp.syscalls.sbrk03.sh index 95ac780..11799a3 100755 --- a/testcase/syscalls/ltp.syscalls.sbrk03.sh +++ b/testcase/syscalls/ltp.syscalls.sbrk03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_get_priority_max01.sh b/testcase/syscalls/ltp.syscalls.sched_get_priority_max01.sh index 1494059..11696fd 100755 --- a/testcase/syscalls/ltp.syscalls.sched_get_priority_max01.sh +++ b/testcase/syscalls/ltp.syscalls.sched_get_priority_max01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_get_priority_max02.sh b/testcase/syscalls/ltp.syscalls.sched_get_priority_max02.sh index d4b54a4..859d5af 100755 --- a/testcase/syscalls/ltp.syscalls.sched_get_priority_max02.sh +++ b/testcase/syscalls/ltp.syscalls.sched_get_priority_max02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_get_priority_min01.sh b/testcase/syscalls/ltp.syscalls.sched_get_priority_min01.sh index 89847d4..a45b66e 100755 --- a/testcase/syscalls/ltp.syscalls.sched_get_priority_min01.sh +++ b/testcase/syscalls/ltp.syscalls.sched_get_priority_min01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_get_priority_min02.sh b/testcase/syscalls/ltp.syscalls.sched_get_priority_min02.sh index de14ec5..45a6b54 100755 --- a/testcase/syscalls/ltp.syscalls.sched_get_priority_min02.sh +++ b/testcase/syscalls/ltp.syscalls.sched_get_priority_min02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_getaffinity01.sh b/testcase/syscalls/ltp.syscalls.sched_getaffinity01.sh index d9b3fee..d697784 100755 --- a/testcase/syscalls/ltp.syscalls.sched_getaffinity01.sh +++ b/testcase/syscalls/ltp.syscalls.sched_getaffinity01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_getattr01.sh b/testcase/syscalls/ltp.syscalls.sched_getattr01.sh index b328e03..766b2b7 100755 --- a/testcase/syscalls/ltp.syscalls.sched_getattr01.sh +++ b/testcase/syscalls/ltp.syscalls.sched_getattr01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_getattr02.sh b/testcase/syscalls/ltp.syscalls.sched_getattr02.sh index 638b1d7..8c40c43 100755 --- a/testcase/syscalls/ltp.syscalls.sched_getattr02.sh +++ b/testcase/syscalls/ltp.syscalls.sched_getattr02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_getparam01.sh b/testcase/syscalls/ltp.syscalls.sched_getparam01.sh index 1dfb7a6..eb0f301 100755 --- a/testcase/syscalls/ltp.syscalls.sched_getparam01.sh +++ b/testcase/syscalls/ltp.syscalls.sched_getparam01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_getparam03.sh b/testcase/syscalls/ltp.syscalls.sched_getparam03.sh index f46f754..ec4b5ec 100755 --- a/testcase/syscalls/ltp.syscalls.sched_getparam03.sh +++ b/testcase/syscalls/ltp.syscalls.sched_getparam03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_getscheduler01.sh b/testcase/syscalls/ltp.syscalls.sched_getscheduler01.sh index f365db2..687bc51 100755 --- a/testcase/syscalls/ltp.syscalls.sched_getscheduler01.sh +++ b/testcase/syscalls/ltp.syscalls.sched_getscheduler01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_getscheduler02.sh b/testcase/syscalls/ltp.syscalls.sched_getscheduler02.sh index bbeaa7f..5ac1418 100755 --- a/testcase/syscalls/ltp.syscalls.sched_getscheduler02.sh +++ b/testcase/syscalls/ltp.syscalls.sched_getscheduler02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_rr_get_interval01.sh b/testcase/syscalls/ltp.syscalls.sched_rr_get_interval01.sh index 3839c47..fa706fc 100755 --- a/testcase/syscalls/ltp.syscalls.sched_rr_get_interval01.sh +++ b/testcase/syscalls/ltp.syscalls.sched_rr_get_interval01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_rr_get_interval02.sh b/testcase/syscalls/ltp.syscalls.sched_rr_get_interval02.sh index a8c9847..2fb281e 100755 --- a/testcase/syscalls/ltp.syscalls.sched_rr_get_interval02.sh +++ b/testcase/syscalls/ltp.syscalls.sched_rr_get_interval02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_rr_get_interval03.sh b/testcase/syscalls/ltp.syscalls.sched_rr_get_interval03.sh index 27fdab0..568e618 100755 --- a/testcase/syscalls/ltp.syscalls.sched_rr_get_interval03.sh +++ b/testcase/syscalls/ltp.syscalls.sched_rr_get_interval03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_setaffinity01.sh b/testcase/syscalls/ltp.syscalls.sched_setaffinity01.sh index 0c1f859..b8a579f 100755 --- a/testcase/syscalls/ltp.syscalls.sched_setaffinity01.sh +++ b/testcase/syscalls/ltp.syscalls.sched_setaffinity01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_setattr01.sh b/testcase/syscalls/ltp.syscalls.sched_setattr01.sh index 564bb98..766769e 100755 --- a/testcase/syscalls/ltp.syscalls.sched_setattr01.sh +++ b/testcase/syscalls/ltp.syscalls.sched_setattr01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_setparam01.sh b/testcase/syscalls/ltp.syscalls.sched_setparam01.sh index f9b50b0..86a7d02 100755 --- a/testcase/syscalls/ltp.syscalls.sched_setparam01.sh +++ b/testcase/syscalls/ltp.syscalls.sched_setparam01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_setparam02.sh b/testcase/syscalls/ltp.syscalls.sched_setparam02.sh index 1f14a99..3da2d75 100755 --- a/testcase/syscalls/ltp.syscalls.sched_setparam02.sh +++ b/testcase/syscalls/ltp.syscalls.sched_setparam02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_setparam03.sh b/testcase/syscalls/ltp.syscalls.sched_setparam03.sh index d429066..9318b18 100755 --- a/testcase/syscalls/ltp.syscalls.sched_setparam03.sh +++ b/testcase/syscalls/ltp.syscalls.sched_setparam03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_setparam04.sh b/testcase/syscalls/ltp.syscalls.sched_setparam04.sh index 4570546..6075f40 100755 --- a/testcase/syscalls/ltp.syscalls.sched_setparam04.sh +++ b/testcase/syscalls/ltp.syscalls.sched_setparam04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_setparam05.sh b/testcase/syscalls/ltp.syscalls.sched_setparam05.sh index dce63ee..e3672b6 100755 --- a/testcase/syscalls/ltp.syscalls.sched_setparam05.sh +++ b/testcase/syscalls/ltp.syscalls.sched_setparam05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_setscheduler01.sh b/testcase/syscalls/ltp.syscalls.sched_setscheduler01.sh index 7eaf472..206fcc4 100755 --- a/testcase/syscalls/ltp.syscalls.sched_setscheduler01.sh +++ b/testcase/syscalls/ltp.syscalls.sched_setscheduler01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_setscheduler02.sh b/testcase/syscalls/ltp.syscalls.sched_setscheduler02.sh index eea7266..2d1d77e 100755 --- a/testcase/syscalls/ltp.syscalls.sched_setscheduler02.sh +++ b/testcase/syscalls/ltp.syscalls.sched_setscheduler02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_setscheduler03.sh b/testcase/syscalls/ltp.syscalls.sched_setscheduler03.sh index b1f5a8b..c627648 100755 --- a/testcase/syscalls/ltp.syscalls.sched_setscheduler03.sh +++ b/testcase/syscalls/ltp.syscalls.sched_setscheduler03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sched_setscheduler04.sh b/testcase/syscalls/ltp.syscalls.sched_setscheduler04.sh index 57c3a8c..b180d90 100755 --- a/testcase/syscalls/ltp.syscalls.sched_setscheduler04.sh +++ b/testcase/syscalls/ltp.syscalls.sched_setscheduler04.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.sched_yield01.sh b/testcase/syscalls/ltp.syscalls.sched_yield01.sh index a02f9f2..876f485 100755 --- a/testcase/syscalls/ltp.syscalls.sched_yield01.sh +++ b/testcase/syscalls/ltp.syscalls.sched_yield01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.select01.sh b/testcase/syscalls/ltp.syscalls.select01.sh index d254965..b55720e 100755 --- a/testcase/syscalls/ltp.syscalls.select01.sh +++ b/testcase/syscalls/ltp.syscalls.select01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.select02.sh b/testcase/syscalls/ltp.syscalls.select02.sh index 136ff97..054eafa 100755 --- a/testcase/syscalls/ltp.syscalls.select02.sh +++ b/testcase/syscalls/ltp.syscalls.select02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.select03.sh b/testcase/syscalls/ltp.syscalls.select03.sh index 6d1ea9c..901b55b 100755 --- a/testcase/syscalls/ltp.syscalls.select03.sh +++ b/testcase/syscalls/ltp.syscalls.select03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.select04.sh b/testcase/syscalls/ltp.syscalls.select04.sh index aaab1ab..ed515e0 100755 --- a/testcase/syscalls/ltp.syscalls.select04.sh +++ b/testcase/syscalls/ltp.syscalls.select04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semctl01.sh b/testcase/syscalls/ltp.syscalls.semctl01.sh index a210bef..0a470ff 100755 --- a/testcase/syscalls/ltp.syscalls.semctl01.sh +++ b/testcase/syscalls/ltp.syscalls.semctl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semctl02.sh b/testcase/syscalls/ltp.syscalls.semctl02.sh index 483fa31..a3ed3f9 100755 --- a/testcase/syscalls/ltp.syscalls.semctl02.sh +++ b/testcase/syscalls/ltp.syscalls.semctl02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semctl03.sh b/testcase/syscalls/ltp.syscalls.semctl03.sh index dad3d4b..6d1b9eb 100755 --- a/testcase/syscalls/ltp.syscalls.semctl03.sh +++ b/testcase/syscalls/ltp.syscalls.semctl03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semctl04.sh b/testcase/syscalls/ltp.syscalls.semctl04.sh index d7dc126..8dec143 100755 --- a/testcase/syscalls/ltp.syscalls.semctl04.sh +++ b/testcase/syscalls/ltp.syscalls.semctl04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semctl05.sh b/testcase/syscalls/ltp.syscalls.semctl05.sh index 9de5f6d..447e8ca 100755 --- a/testcase/syscalls/ltp.syscalls.semctl05.sh +++ b/testcase/syscalls/ltp.syscalls.semctl05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semctl06.sh b/testcase/syscalls/ltp.syscalls.semctl06.sh index 486a06a..0d09ce7 100755 --- a/testcase/syscalls/ltp.syscalls.semctl06.sh +++ b/testcase/syscalls/ltp.syscalls.semctl06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semctl07.sh b/testcase/syscalls/ltp.syscalls.semctl07.sh index ca0da3b..f823e82 100755 --- a/testcase/syscalls/ltp.syscalls.semctl07.sh +++ b/testcase/syscalls/ltp.syscalls.semctl07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semctl08.sh b/testcase/syscalls/ltp.syscalls.semctl08.sh index 4d1324c..12899bf 100755 --- a/testcase/syscalls/ltp.syscalls.semctl08.sh +++ b/testcase/syscalls/ltp.syscalls.semctl08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semctl09.sh b/testcase/syscalls/ltp.syscalls.semctl09.sh index 2c36aa7..42704dc 100755 --- a/testcase/syscalls/ltp.syscalls.semctl09.sh +++ b/testcase/syscalls/ltp.syscalls.semctl09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semget01.sh b/testcase/syscalls/ltp.syscalls.semget01.sh index b6e2534..89c8c43 100755 --- a/testcase/syscalls/ltp.syscalls.semget01.sh +++ b/testcase/syscalls/ltp.syscalls.semget01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semget02.sh b/testcase/syscalls/ltp.syscalls.semget02.sh index 20527af..a88c835 100755 --- a/testcase/syscalls/ltp.syscalls.semget02.sh +++ b/testcase/syscalls/ltp.syscalls.semget02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semget05.sh b/testcase/syscalls/ltp.syscalls.semget05.sh index 0d7ecb2..bdcd81b 100755 --- a/testcase/syscalls/ltp.syscalls.semget05.sh +++ b/testcase/syscalls/ltp.syscalls.semget05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semop01.sh b/testcase/syscalls/ltp.syscalls.semop01.sh index 1950cd3..d0b1f55 100755 --- a/testcase/syscalls/ltp.syscalls.semop01.sh +++ b/testcase/syscalls/ltp.syscalls.semop01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semop02.sh b/testcase/syscalls/ltp.syscalls.semop02.sh index 6d5a7ac..dc95be8 100755 --- a/testcase/syscalls/ltp.syscalls.semop02.sh +++ b/testcase/syscalls/ltp.syscalls.semop02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semop03.sh b/testcase/syscalls/ltp.syscalls.semop03.sh index 57d4649..e0b8e1e 100755 --- a/testcase/syscalls/ltp.syscalls.semop03.sh +++ b/testcase/syscalls/ltp.syscalls.semop03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semop04.sh b/testcase/syscalls/ltp.syscalls.semop04.sh index 49ead9a..22f1ec7 100755 --- a/testcase/syscalls/ltp.syscalls.semop04.sh +++ b/testcase/syscalls/ltp.syscalls.semop04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.semop05.sh b/testcase/syscalls/ltp.syscalls.semop05.sh index a622a5c..84ba84b 100755 --- a/testcase/syscalls/ltp.syscalls.semop05.sh +++ b/testcase/syscalls/ltp.syscalls.semop05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.send01.sh b/testcase/syscalls/ltp.syscalls.send01.sh index f3f9f2e..ab738ed 100755 --- a/testcase/syscalls/ltp.syscalls.send01.sh +++ b/testcase/syscalls/ltp.syscalls.send01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.send02.sh b/testcase/syscalls/ltp.syscalls.send02.sh index 053863d..fef0908 100755 --- a/testcase/syscalls/ltp.syscalls.send02.sh +++ b/testcase/syscalls/ltp.syscalls.send02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendfile02.sh b/testcase/syscalls/ltp.syscalls.sendfile02.sh index de41001..c3cfd98 100755 --- a/testcase/syscalls/ltp.syscalls.sendfile02.sh +++ b/testcase/syscalls/ltp.syscalls.sendfile02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendfile02_64.sh b/testcase/syscalls/ltp.syscalls.sendfile02_64.sh index 4c40528..955d792 100755 --- a/testcase/syscalls/ltp.syscalls.sendfile02_64.sh +++ b/testcase/syscalls/ltp.syscalls.sendfile02_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendfile03.sh b/testcase/syscalls/ltp.syscalls.sendfile03.sh index 143ee4c..2da56b7 100755 --- a/testcase/syscalls/ltp.syscalls.sendfile03.sh +++ b/testcase/syscalls/ltp.syscalls.sendfile03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendfile03_64.sh b/testcase/syscalls/ltp.syscalls.sendfile03_64.sh index bcb40a6..b99ee00 100755 --- a/testcase/syscalls/ltp.syscalls.sendfile03_64.sh +++ b/testcase/syscalls/ltp.syscalls.sendfile03_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendfile04.sh b/testcase/syscalls/ltp.syscalls.sendfile04.sh index 4aa754d..4ef5a1a 100755 --- a/testcase/syscalls/ltp.syscalls.sendfile04.sh +++ b/testcase/syscalls/ltp.syscalls.sendfile04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendfile04_64.sh b/testcase/syscalls/ltp.syscalls.sendfile04_64.sh index c0aadf3..8979ce2 100755 --- a/testcase/syscalls/ltp.syscalls.sendfile04_64.sh +++ b/testcase/syscalls/ltp.syscalls.sendfile04_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendfile05.sh b/testcase/syscalls/ltp.syscalls.sendfile05.sh index 4354c29..84735ce 100755 --- a/testcase/syscalls/ltp.syscalls.sendfile05.sh +++ b/testcase/syscalls/ltp.syscalls.sendfile05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendfile05_64.sh b/testcase/syscalls/ltp.syscalls.sendfile05_64.sh index cc11ca1..7e0bd5b 100755 --- a/testcase/syscalls/ltp.syscalls.sendfile05_64.sh +++ b/testcase/syscalls/ltp.syscalls.sendfile05_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendfile06.sh b/testcase/syscalls/ltp.syscalls.sendfile06.sh index 45b1e70..bed0fde 100755 --- a/testcase/syscalls/ltp.syscalls.sendfile06.sh +++ b/testcase/syscalls/ltp.syscalls.sendfile06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendfile06_64.sh b/testcase/syscalls/ltp.syscalls.sendfile06_64.sh index af70f8a..77cf55e 100755 --- a/testcase/syscalls/ltp.syscalls.sendfile06_64.sh +++ b/testcase/syscalls/ltp.syscalls.sendfile06_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendfile07.sh b/testcase/syscalls/ltp.syscalls.sendfile07.sh index b83b9f4..59fc165 100755 --- a/testcase/syscalls/ltp.syscalls.sendfile07.sh +++ b/testcase/syscalls/ltp.syscalls.sendfile07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendfile07_64.sh b/testcase/syscalls/ltp.syscalls.sendfile07_64.sh index f38765a..9be9b94 100755 --- a/testcase/syscalls/ltp.syscalls.sendfile07_64.sh +++ b/testcase/syscalls/ltp.syscalls.sendfile07_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendfile08.sh b/testcase/syscalls/ltp.syscalls.sendfile08.sh index ed4183e..e5b2e4c 100755 --- a/testcase/syscalls/ltp.syscalls.sendfile08.sh +++ b/testcase/syscalls/ltp.syscalls.sendfile08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendfile08_64.sh b/testcase/syscalls/ltp.syscalls.sendfile08_64.sh index 2a80327..3418fc4 100755 --- a/testcase/syscalls/ltp.syscalls.sendfile08_64.sh +++ b/testcase/syscalls/ltp.syscalls.sendfile08_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendfile09.sh b/testcase/syscalls/ltp.syscalls.sendfile09.sh index 0a7ce66..08a5d18 100755 --- a/testcase/syscalls/ltp.syscalls.sendfile09.sh +++ b/testcase/syscalls/ltp.syscalls.sendfile09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendfile09_64.sh b/testcase/syscalls/ltp.syscalls.sendfile09_64.sh index 5523b4a..7f5ea61 100755 --- a/testcase/syscalls/ltp.syscalls.sendfile09_64.sh +++ b/testcase/syscalls/ltp.syscalls.sendfile09_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendmmsg01.sh b/testcase/syscalls/ltp.syscalls.sendmmsg01.sh index c5e54e1..496590f 100755 --- a/testcase/syscalls/ltp.syscalls.sendmmsg01.sh +++ b/testcase/syscalls/ltp.syscalls.sendmmsg01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendmmsg02.sh b/testcase/syscalls/ltp.syscalls.sendmmsg02.sh index 2c8da13..2e1fe2a 100755 --- a/testcase/syscalls/ltp.syscalls.sendmmsg02.sh +++ b/testcase/syscalls/ltp.syscalls.sendmmsg02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendmsg01.sh b/testcase/syscalls/ltp.syscalls.sendmsg01.sh index a88b02d..3f77d70 100755 --- a/testcase/syscalls/ltp.syscalls.sendmsg01.sh +++ b/testcase/syscalls/ltp.syscalls.sendmsg01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendmsg02.sh b/testcase/syscalls/ltp.syscalls.sendmsg02.sh index 9f4f369..be8a342 100755 --- a/testcase/syscalls/ltp.syscalls.sendmsg02.sh +++ b/testcase/syscalls/ltp.syscalls.sendmsg02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendmsg03.sh b/testcase/syscalls/ltp.syscalls.sendmsg03.sh index 998db21..76152e0 100755 --- a/testcase/syscalls/ltp.syscalls.sendmsg03.sh +++ b/testcase/syscalls/ltp.syscalls.sendmsg03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendto01.sh b/testcase/syscalls/ltp.syscalls.sendto01.sh index 15ae103..95e1dcd 100755 --- a/testcase/syscalls/ltp.syscalls.sendto01.sh +++ b/testcase/syscalls/ltp.syscalls.sendto01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendto02.sh b/testcase/syscalls/ltp.syscalls.sendto02.sh index cb62922..991de4c 100755 --- a/testcase/syscalls/ltp.syscalls.sendto02.sh +++ b/testcase/syscalls/ltp.syscalls.sendto02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sendto03.sh b/testcase/syscalls/ltp.syscalls.sendto03.sh index 474301d..ae09510 100755 --- a/testcase/syscalls/ltp.syscalls.sendto03.sh +++ b/testcase/syscalls/ltp.syscalls.sendto03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.set_mempolicy01.sh b/testcase/syscalls/ltp.syscalls.set_mempolicy01.sh index a11549b..8d0f517 100755 --- a/testcase/syscalls/ltp.syscalls.set_mempolicy01.sh +++ b/testcase/syscalls/ltp.syscalls.set_mempolicy01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.set_mempolicy02.sh b/testcase/syscalls/ltp.syscalls.set_mempolicy02.sh index 1de02f4..490dde8 100755 --- a/testcase/syscalls/ltp.syscalls.set_mempolicy02.sh +++ b/testcase/syscalls/ltp.syscalls.set_mempolicy02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.set_mempolicy03.sh b/testcase/syscalls/ltp.syscalls.set_mempolicy03.sh index 0debfab..7ae4632 100755 --- a/testcase/syscalls/ltp.syscalls.set_mempolicy03.sh +++ b/testcase/syscalls/ltp.syscalls.set_mempolicy03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.set_mempolicy04.sh b/testcase/syscalls/ltp.syscalls.set_mempolicy04.sh index f69a5cc..9a68776 100755 --- a/testcase/syscalls/ltp.syscalls.set_mempolicy04.sh +++ b/testcase/syscalls/ltp.syscalls.set_mempolicy04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.set_robust_list01.sh b/testcase/syscalls/ltp.syscalls.set_robust_list01.sh index 897b66a..9f127e2 100755 --- a/testcase/syscalls/ltp.syscalls.set_robust_list01.sh +++ b/testcase/syscalls/ltp.syscalls.set_robust_list01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.set_thread_area01.sh b/testcase/syscalls/ltp.syscalls.set_thread_area01.sh index 2b403a2..3047225 100755 --- a/testcase/syscalls/ltp.syscalls.set_thread_area01.sh +++ b/testcase/syscalls/ltp.syscalls.set_thread_area01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.set_tid_address01.sh b/testcase/syscalls/ltp.syscalls.set_tid_address01.sh index 8583223..7fd713b 100755 --- a/testcase/syscalls/ltp.syscalls.set_tid_address01.sh +++ b/testcase/syscalls/ltp.syscalls.set_tid_address01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setdomainname01.sh b/testcase/syscalls/ltp.syscalls.setdomainname01.sh index d61c0b8..9121b16 100755 --- a/testcase/syscalls/ltp.syscalls.setdomainname01.sh +++ b/testcase/syscalls/ltp.syscalls.setdomainname01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setdomainname02.sh b/testcase/syscalls/ltp.syscalls.setdomainname02.sh index 3fec3de..50142dd 100755 --- a/testcase/syscalls/ltp.syscalls.setdomainname02.sh +++ b/testcase/syscalls/ltp.syscalls.setdomainname02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setdomainname03.sh b/testcase/syscalls/ltp.syscalls.setdomainname03.sh index a8777a8..1810ddb 100755 --- a/testcase/syscalls/ltp.syscalls.setdomainname03.sh +++ b/testcase/syscalls/ltp.syscalls.setdomainname03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setegid01.sh b/testcase/syscalls/ltp.syscalls.setegid01.sh index d45c72a..8fb84fa 100755 --- a/testcase/syscalls/ltp.syscalls.setegid01.sh +++ b/testcase/syscalls/ltp.syscalls.setegid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setegid02.sh b/testcase/syscalls/ltp.syscalls.setegid02.sh index 575867c..c4cae3f 100755 --- a/testcase/syscalls/ltp.syscalls.setegid02.sh +++ b/testcase/syscalls/ltp.syscalls.setegid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setfsgid01.sh b/testcase/syscalls/ltp.syscalls.setfsgid01.sh index f5973b5..5ea2d84 100755 --- a/testcase/syscalls/ltp.syscalls.setfsgid01.sh +++ b/testcase/syscalls/ltp.syscalls.setfsgid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setfsgid01_16.sh b/testcase/syscalls/ltp.syscalls.setfsgid01_16.sh index 1e27f29..626048b 100755 --- a/testcase/syscalls/ltp.syscalls.setfsgid01_16.sh +++ b/testcase/syscalls/ltp.syscalls.setfsgid01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setfsgid02.sh b/testcase/syscalls/ltp.syscalls.setfsgid02.sh index 1b3a879..ef35516 100755 --- a/testcase/syscalls/ltp.syscalls.setfsgid02.sh +++ b/testcase/syscalls/ltp.syscalls.setfsgid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setfsgid02_16.sh b/testcase/syscalls/ltp.syscalls.setfsgid02_16.sh index 0586599..708a681 100755 --- a/testcase/syscalls/ltp.syscalls.setfsgid02_16.sh +++ b/testcase/syscalls/ltp.syscalls.setfsgid02_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setfsgid03.sh b/testcase/syscalls/ltp.syscalls.setfsgid03.sh index e5338f4..18e5195 100755 --- a/testcase/syscalls/ltp.syscalls.setfsgid03.sh +++ b/testcase/syscalls/ltp.syscalls.setfsgid03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setfsgid03_16.sh b/testcase/syscalls/ltp.syscalls.setfsgid03_16.sh index 84e242b..1c0f19d 100755 --- a/testcase/syscalls/ltp.syscalls.setfsgid03_16.sh +++ b/testcase/syscalls/ltp.syscalls.setfsgid03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setfsuid01.sh b/testcase/syscalls/ltp.syscalls.setfsuid01.sh index fa6d2f6..7ea6c46 100755 --- a/testcase/syscalls/ltp.syscalls.setfsuid01.sh +++ b/testcase/syscalls/ltp.syscalls.setfsuid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setfsuid01_16.sh b/testcase/syscalls/ltp.syscalls.setfsuid01_16.sh index 72bd430..c2d81b3 100755 --- a/testcase/syscalls/ltp.syscalls.setfsuid01_16.sh +++ b/testcase/syscalls/ltp.syscalls.setfsuid01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setfsuid02.sh b/testcase/syscalls/ltp.syscalls.setfsuid02.sh index 040eeaa..83d0300 100755 --- a/testcase/syscalls/ltp.syscalls.setfsuid02.sh +++ b/testcase/syscalls/ltp.syscalls.setfsuid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setfsuid02_16.sh b/testcase/syscalls/ltp.syscalls.setfsuid02_16.sh index 4b68e03..0816004 100755 --- a/testcase/syscalls/ltp.syscalls.setfsuid02_16.sh +++ b/testcase/syscalls/ltp.syscalls.setfsuid02_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setfsuid03.sh b/testcase/syscalls/ltp.syscalls.setfsuid03.sh index 7e1cfe8..fe59447 100755 --- a/testcase/syscalls/ltp.syscalls.setfsuid03.sh +++ b/testcase/syscalls/ltp.syscalls.setfsuid03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setfsuid03_16.sh b/testcase/syscalls/ltp.syscalls.setfsuid03_16.sh index e3c6ca0..a845a7e 100755 --- a/testcase/syscalls/ltp.syscalls.setfsuid03_16.sh +++ b/testcase/syscalls/ltp.syscalls.setfsuid03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setfsuid04.sh b/testcase/syscalls/ltp.syscalls.setfsuid04.sh index f082461..92cfa29 100755 --- a/testcase/syscalls/ltp.syscalls.setfsuid04.sh +++ b/testcase/syscalls/ltp.syscalls.setfsuid04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setfsuid04_16.sh b/testcase/syscalls/ltp.syscalls.setfsuid04_16.sh index 2fe455f..c87d963 100755 --- a/testcase/syscalls/ltp.syscalls.setfsuid04_16.sh +++ b/testcase/syscalls/ltp.syscalls.setfsuid04_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setgid01.sh b/testcase/syscalls/ltp.syscalls.setgid01.sh index 97a3917..11aa528 100755 --- a/testcase/syscalls/ltp.syscalls.setgid01.sh +++ b/testcase/syscalls/ltp.syscalls.setgid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setgid01_16.sh b/testcase/syscalls/ltp.syscalls.setgid01_16.sh index 59768fb..c57f3ec 100755 --- a/testcase/syscalls/ltp.syscalls.setgid01_16.sh +++ b/testcase/syscalls/ltp.syscalls.setgid01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setgid02.sh b/testcase/syscalls/ltp.syscalls.setgid02.sh index 29826b9..cd5a5e0 100755 --- a/testcase/syscalls/ltp.syscalls.setgid02.sh +++ b/testcase/syscalls/ltp.syscalls.setgid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setgid02_16.sh b/testcase/syscalls/ltp.syscalls.setgid02_16.sh index dff8a8b..0299770 100755 --- a/testcase/syscalls/ltp.syscalls.setgid02_16.sh +++ b/testcase/syscalls/ltp.syscalls.setgid02_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setgid03.sh b/testcase/syscalls/ltp.syscalls.setgid03.sh index 9d30d78..d4e91f6 100755 --- a/testcase/syscalls/ltp.syscalls.setgid03.sh +++ b/testcase/syscalls/ltp.syscalls.setgid03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setgid03_16.sh b/testcase/syscalls/ltp.syscalls.setgid03_16.sh index c6f5d79..5fd68c4 100755 --- a/testcase/syscalls/ltp.syscalls.setgid03_16.sh +++ b/testcase/syscalls/ltp.syscalls.setgid03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setgroups01.sh b/testcase/syscalls/ltp.syscalls.setgroups01.sh index d0dee03..4efef22 100755 --- a/testcase/syscalls/ltp.syscalls.setgroups01.sh +++ b/testcase/syscalls/ltp.syscalls.setgroups01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setgroups01_16.sh b/testcase/syscalls/ltp.syscalls.setgroups01_16.sh index 316e5c1..96ddf73 100755 --- a/testcase/syscalls/ltp.syscalls.setgroups01_16.sh +++ b/testcase/syscalls/ltp.syscalls.setgroups01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setgroups02.sh b/testcase/syscalls/ltp.syscalls.setgroups02.sh index ff9504a..b5d8652 100755 --- a/testcase/syscalls/ltp.syscalls.setgroups02.sh +++ b/testcase/syscalls/ltp.syscalls.setgroups02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setgroups02_16.sh b/testcase/syscalls/ltp.syscalls.setgroups02_16.sh index 2b255e4..4da6a78 100755 --- a/testcase/syscalls/ltp.syscalls.setgroups02_16.sh +++ b/testcase/syscalls/ltp.syscalls.setgroups02_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setgroups03.sh b/testcase/syscalls/ltp.syscalls.setgroups03.sh index dbab403..e9f98e2 100755 --- a/testcase/syscalls/ltp.syscalls.setgroups03.sh +++ b/testcase/syscalls/ltp.syscalls.setgroups03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setgroups03_16.sh b/testcase/syscalls/ltp.syscalls.setgroups03_16.sh index fac7834..614db5e 100755 --- a/testcase/syscalls/ltp.syscalls.setgroups03_16.sh +++ b/testcase/syscalls/ltp.syscalls.setgroups03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sethostname01.sh b/testcase/syscalls/ltp.syscalls.sethostname01.sh index a5c907b..7c43c5e 100755 --- a/testcase/syscalls/ltp.syscalls.sethostname01.sh +++ b/testcase/syscalls/ltp.syscalls.sethostname01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sethostname02.sh b/testcase/syscalls/ltp.syscalls.sethostname02.sh index 4bf137e..c85adf9 100755 --- a/testcase/syscalls/ltp.syscalls.sethostname02.sh +++ b/testcase/syscalls/ltp.syscalls.sethostname02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sethostname03.sh b/testcase/syscalls/ltp.syscalls.sethostname03.sh index 006f338..b1a60fb 100755 --- a/testcase/syscalls/ltp.syscalls.sethostname03.sh +++ b/testcase/syscalls/ltp.syscalls.sethostname03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setitimer01.sh b/testcase/syscalls/ltp.syscalls.setitimer01.sh index d52697e..d0be22f 100755 --- a/testcase/syscalls/ltp.syscalls.setitimer01.sh +++ b/testcase/syscalls/ltp.syscalls.setitimer01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setitimer02.sh b/testcase/syscalls/ltp.syscalls.setitimer02.sh index 138278f..cd580b7 100755 --- a/testcase/syscalls/ltp.syscalls.setitimer02.sh +++ b/testcase/syscalls/ltp.syscalls.setitimer02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setns01.sh b/testcase/syscalls/ltp.syscalls.setns01.sh index 9e4ce3c..5a88d72 100755 --- a/testcase/syscalls/ltp.syscalls.setns01.sh +++ b/testcase/syscalls/ltp.syscalls.setns01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setns02.sh b/testcase/syscalls/ltp.syscalls.setns02.sh index 5dd1fcf..4796dc8 100755 --- a/testcase/syscalls/ltp.syscalls.setns02.sh +++ b/testcase/syscalls/ltp.syscalls.setns02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setpgid01.sh b/testcase/syscalls/ltp.syscalls.setpgid01.sh index 73b504f..358a425 100755 --- a/testcase/syscalls/ltp.syscalls.setpgid01.sh +++ b/testcase/syscalls/ltp.syscalls.setpgid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setpgid02.sh b/testcase/syscalls/ltp.syscalls.setpgid02.sh index 7c7bcef..f571075 100755 --- a/testcase/syscalls/ltp.syscalls.setpgid02.sh +++ b/testcase/syscalls/ltp.syscalls.setpgid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setpgid03.sh b/testcase/syscalls/ltp.syscalls.setpgid03.sh index d8bbc83..7556355 100755 --- a/testcase/syscalls/ltp.syscalls.setpgid03.sh +++ b/testcase/syscalls/ltp.syscalls.setpgid03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setpgrp01.sh b/testcase/syscalls/ltp.syscalls.setpgrp01.sh index 88ba2f2..9efc406 100755 --- a/testcase/syscalls/ltp.syscalls.setpgrp01.sh +++ b/testcase/syscalls/ltp.syscalls.setpgrp01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setpgrp02.sh b/testcase/syscalls/ltp.syscalls.setpgrp02.sh index 42c7c5b..25289f6 100755 --- a/testcase/syscalls/ltp.syscalls.setpgrp02.sh +++ b/testcase/syscalls/ltp.syscalls.setpgrp02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setpriority01.sh b/testcase/syscalls/ltp.syscalls.setpriority01.sh index 6bf1231..eb5c6c1 100755 --- a/testcase/syscalls/ltp.syscalls.setpriority01.sh +++ b/testcase/syscalls/ltp.syscalls.setpriority01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setpriority02.sh b/testcase/syscalls/ltp.syscalls.setpriority02.sh index e08d35f..192fda0 100755 --- a/testcase/syscalls/ltp.syscalls.setpriority02.sh +++ b/testcase/syscalls/ltp.syscalls.setpriority02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setregid01.sh b/testcase/syscalls/ltp.syscalls.setregid01.sh index a351fc8..9e49937 100755 --- a/testcase/syscalls/ltp.syscalls.setregid01.sh +++ b/testcase/syscalls/ltp.syscalls.setregid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setregid01_16.sh b/testcase/syscalls/ltp.syscalls.setregid01_16.sh index 445061f..9221345 100755 --- a/testcase/syscalls/ltp.syscalls.setregid01_16.sh +++ b/testcase/syscalls/ltp.syscalls.setregid01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setregid02.sh b/testcase/syscalls/ltp.syscalls.setregid02.sh index a5342b3..75c4520 100755 --- a/testcase/syscalls/ltp.syscalls.setregid02.sh +++ b/testcase/syscalls/ltp.syscalls.setregid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setregid02_16.sh b/testcase/syscalls/ltp.syscalls.setregid02_16.sh index 7fb5411..7b35f5c 100755 --- a/testcase/syscalls/ltp.syscalls.setregid02_16.sh +++ b/testcase/syscalls/ltp.syscalls.setregid02_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setregid03.sh b/testcase/syscalls/ltp.syscalls.setregid03.sh index 254dcf9..55bb591 100755 --- a/testcase/syscalls/ltp.syscalls.setregid03.sh +++ b/testcase/syscalls/ltp.syscalls.setregid03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setregid03_16.sh b/testcase/syscalls/ltp.syscalls.setregid03_16.sh index fd23605..8d8f1ba 100755 --- a/testcase/syscalls/ltp.syscalls.setregid03_16.sh +++ b/testcase/syscalls/ltp.syscalls.setregid03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setregid04.sh b/testcase/syscalls/ltp.syscalls.setregid04.sh index 986c60d..f7ac9f7 100755 --- a/testcase/syscalls/ltp.syscalls.setregid04.sh +++ b/testcase/syscalls/ltp.syscalls.setregid04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setregid04_16.sh b/testcase/syscalls/ltp.syscalls.setregid04_16.sh index 90d51a3..04a3438 100755 --- a/testcase/syscalls/ltp.syscalls.setregid04_16.sh +++ b/testcase/syscalls/ltp.syscalls.setregid04_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresgid01.sh b/testcase/syscalls/ltp.syscalls.setresgid01.sh index ca91a1c..6d41314 100755 --- a/testcase/syscalls/ltp.syscalls.setresgid01.sh +++ b/testcase/syscalls/ltp.syscalls.setresgid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresgid01_16.sh b/testcase/syscalls/ltp.syscalls.setresgid01_16.sh index 3636003..a67f310 100755 --- a/testcase/syscalls/ltp.syscalls.setresgid01_16.sh +++ b/testcase/syscalls/ltp.syscalls.setresgid01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresgid02.sh b/testcase/syscalls/ltp.syscalls.setresgid02.sh index bd2649c..16b7ab8 100755 --- a/testcase/syscalls/ltp.syscalls.setresgid02.sh +++ b/testcase/syscalls/ltp.syscalls.setresgid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresgid02_16.sh b/testcase/syscalls/ltp.syscalls.setresgid02_16.sh index 8b34e4f..4b91e5d 100755 --- a/testcase/syscalls/ltp.syscalls.setresgid02_16.sh +++ b/testcase/syscalls/ltp.syscalls.setresgid02_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresgid03.sh b/testcase/syscalls/ltp.syscalls.setresgid03.sh index 9039476..e739f23 100755 --- a/testcase/syscalls/ltp.syscalls.setresgid03.sh +++ b/testcase/syscalls/ltp.syscalls.setresgid03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresgid03_16.sh b/testcase/syscalls/ltp.syscalls.setresgid03_16.sh index 5fbb50d..937e02c 100755 --- a/testcase/syscalls/ltp.syscalls.setresgid03_16.sh +++ b/testcase/syscalls/ltp.syscalls.setresgid03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresgid04.sh b/testcase/syscalls/ltp.syscalls.setresgid04.sh index bfd4872..972fe44 100755 --- a/testcase/syscalls/ltp.syscalls.setresgid04.sh +++ b/testcase/syscalls/ltp.syscalls.setresgid04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresgid04_16.sh b/testcase/syscalls/ltp.syscalls.setresgid04_16.sh index fccfa9f..068c405 100755 --- a/testcase/syscalls/ltp.syscalls.setresgid04_16.sh +++ b/testcase/syscalls/ltp.syscalls.setresgid04_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresuid01.sh b/testcase/syscalls/ltp.syscalls.setresuid01.sh index 29408ba..98c8d81 100755 --- a/testcase/syscalls/ltp.syscalls.setresuid01.sh +++ b/testcase/syscalls/ltp.syscalls.setresuid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresuid01_16.sh b/testcase/syscalls/ltp.syscalls.setresuid01_16.sh index 25fb3de..3a43ea1 100755 --- a/testcase/syscalls/ltp.syscalls.setresuid01_16.sh +++ b/testcase/syscalls/ltp.syscalls.setresuid01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresuid02.sh b/testcase/syscalls/ltp.syscalls.setresuid02.sh index 584db18..875bf97 100755 --- a/testcase/syscalls/ltp.syscalls.setresuid02.sh +++ b/testcase/syscalls/ltp.syscalls.setresuid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresuid02_16.sh b/testcase/syscalls/ltp.syscalls.setresuid02_16.sh index 0cf40f4..74c0474 100755 --- a/testcase/syscalls/ltp.syscalls.setresuid02_16.sh +++ b/testcase/syscalls/ltp.syscalls.setresuid02_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresuid03.sh b/testcase/syscalls/ltp.syscalls.setresuid03.sh index 723a3d9..6db95b1 100755 --- a/testcase/syscalls/ltp.syscalls.setresuid03.sh +++ b/testcase/syscalls/ltp.syscalls.setresuid03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresuid03_16.sh b/testcase/syscalls/ltp.syscalls.setresuid03_16.sh index 2af3458..5164286 100755 --- a/testcase/syscalls/ltp.syscalls.setresuid03_16.sh +++ b/testcase/syscalls/ltp.syscalls.setresuid03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresuid04.sh b/testcase/syscalls/ltp.syscalls.setresuid04.sh index 0ebb31d..83f8ad4 100755 --- a/testcase/syscalls/ltp.syscalls.setresuid04.sh +++ b/testcase/syscalls/ltp.syscalls.setresuid04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresuid04_16.sh b/testcase/syscalls/ltp.syscalls.setresuid04_16.sh index 63c012a..5a0d7a8 100755 --- a/testcase/syscalls/ltp.syscalls.setresuid04_16.sh +++ b/testcase/syscalls/ltp.syscalls.setresuid04_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresuid05.sh b/testcase/syscalls/ltp.syscalls.setresuid05.sh index 6eaef9d..b0577b8 100755 --- a/testcase/syscalls/ltp.syscalls.setresuid05.sh +++ b/testcase/syscalls/ltp.syscalls.setresuid05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setresuid05_16.sh b/testcase/syscalls/ltp.syscalls.setresuid05_16.sh index 45cec87..dabc91e 100755 --- a/testcase/syscalls/ltp.syscalls.setresuid05_16.sh +++ b/testcase/syscalls/ltp.syscalls.setresuid05_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setreuid01.sh b/testcase/syscalls/ltp.syscalls.setreuid01.sh index 521a853..4f0271b 100755 --- a/testcase/syscalls/ltp.syscalls.setreuid01.sh +++ b/testcase/syscalls/ltp.syscalls.setreuid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setreuid01_16.sh b/testcase/syscalls/ltp.syscalls.setreuid01_16.sh index 3cc6a8b..d07b902 100755 --- a/testcase/syscalls/ltp.syscalls.setreuid01_16.sh +++ b/testcase/syscalls/ltp.syscalls.setreuid01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setreuid02.sh b/testcase/syscalls/ltp.syscalls.setreuid02.sh index 05d27aa..eb48ed0 100755 --- a/testcase/syscalls/ltp.syscalls.setreuid02.sh +++ b/testcase/syscalls/ltp.syscalls.setreuid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setreuid02_16.sh b/testcase/syscalls/ltp.syscalls.setreuid02_16.sh index 1d3b802..171e922 100755 --- a/testcase/syscalls/ltp.syscalls.setreuid02_16.sh +++ b/testcase/syscalls/ltp.syscalls.setreuid02_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setreuid03.sh b/testcase/syscalls/ltp.syscalls.setreuid03.sh index 69f7f98..47ed982 100755 --- a/testcase/syscalls/ltp.syscalls.setreuid03.sh +++ b/testcase/syscalls/ltp.syscalls.setreuid03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setreuid03_16.sh b/testcase/syscalls/ltp.syscalls.setreuid03_16.sh index 6842a5e..2452bd6 100755 --- a/testcase/syscalls/ltp.syscalls.setreuid03_16.sh +++ b/testcase/syscalls/ltp.syscalls.setreuid03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setreuid04.sh b/testcase/syscalls/ltp.syscalls.setreuid04.sh index 1e3acff..b12a227 100755 --- a/testcase/syscalls/ltp.syscalls.setreuid04.sh +++ b/testcase/syscalls/ltp.syscalls.setreuid04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setreuid04_16.sh b/testcase/syscalls/ltp.syscalls.setreuid04_16.sh index 5a16aed..c860e0a 100755 --- a/testcase/syscalls/ltp.syscalls.setreuid04_16.sh +++ b/testcase/syscalls/ltp.syscalls.setreuid04_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setreuid05.sh b/testcase/syscalls/ltp.syscalls.setreuid05.sh index 7318fb1..66863ce 100755 --- a/testcase/syscalls/ltp.syscalls.setreuid05.sh +++ b/testcase/syscalls/ltp.syscalls.setreuid05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setreuid05_16.sh b/testcase/syscalls/ltp.syscalls.setreuid05_16.sh index 3ce90e7..f5af481 100755 --- a/testcase/syscalls/ltp.syscalls.setreuid05_16.sh +++ b/testcase/syscalls/ltp.syscalls.setreuid05_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setreuid06.sh b/testcase/syscalls/ltp.syscalls.setreuid06.sh index 8dcfdd3..6e79815 100755 --- a/testcase/syscalls/ltp.syscalls.setreuid06.sh +++ b/testcase/syscalls/ltp.syscalls.setreuid06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setreuid06_16.sh b/testcase/syscalls/ltp.syscalls.setreuid06_16.sh index d0e81b5..74bb423 100755 --- a/testcase/syscalls/ltp.syscalls.setreuid06_16.sh +++ b/testcase/syscalls/ltp.syscalls.setreuid06_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setreuid07.sh b/testcase/syscalls/ltp.syscalls.setreuid07.sh index cdcbc98..8e53b51 100755 --- a/testcase/syscalls/ltp.syscalls.setreuid07.sh +++ b/testcase/syscalls/ltp.syscalls.setreuid07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setreuid07_16.sh b/testcase/syscalls/ltp.syscalls.setreuid07_16.sh index 5a94dbb..136918a 100755 --- a/testcase/syscalls/ltp.syscalls.setreuid07_16.sh +++ b/testcase/syscalls/ltp.syscalls.setreuid07_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setrlimit01.sh b/testcase/syscalls/ltp.syscalls.setrlimit01.sh index 5480dd9..f7634ed 100755 --- a/testcase/syscalls/ltp.syscalls.setrlimit01.sh +++ b/testcase/syscalls/ltp.syscalls.setrlimit01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setrlimit02.sh b/testcase/syscalls/ltp.syscalls.setrlimit02.sh index 3ed245e..7bae3c0 100755 --- a/testcase/syscalls/ltp.syscalls.setrlimit02.sh +++ b/testcase/syscalls/ltp.syscalls.setrlimit02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setrlimit03.sh b/testcase/syscalls/ltp.syscalls.setrlimit03.sh index e96a0a5..f833308 100755 --- a/testcase/syscalls/ltp.syscalls.setrlimit03.sh +++ b/testcase/syscalls/ltp.syscalls.setrlimit03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setrlimit04.sh b/testcase/syscalls/ltp.syscalls.setrlimit04.sh index 8e7ca7e..a190cb2 100755 --- a/testcase/syscalls/ltp.syscalls.setrlimit04.sh +++ b/testcase/syscalls/ltp.syscalls.setrlimit04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setrlimit05.sh b/testcase/syscalls/ltp.syscalls.setrlimit05.sh index c5cdcc9..5212704 100755 --- a/testcase/syscalls/ltp.syscalls.setrlimit05.sh +++ b/testcase/syscalls/ltp.syscalls.setrlimit05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setrlimit06.sh b/testcase/syscalls/ltp.syscalls.setrlimit06.sh index abd6157..dc21c8d 100755 --- a/testcase/syscalls/ltp.syscalls.setrlimit06.sh +++ b/testcase/syscalls/ltp.syscalls.setrlimit06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setsid01.sh b/testcase/syscalls/ltp.syscalls.setsid01.sh index 2060c97..b9c2e4e 100755 --- a/testcase/syscalls/ltp.syscalls.setsid01.sh +++ b/testcase/syscalls/ltp.syscalls.setsid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setsockopt01.sh b/testcase/syscalls/ltp.syscalls.setsockopt01.sh index b50c508..956598a 100755 --- a/testcase/syscalls/ltp.syscalls.setsockopt01.sh +++ b/testcase/syscalls/ltp.syscalls.setsockopt01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setsockopt02.sh b/testcase/syscalls/ltp.syscalls.setsockopt02.sh index c41781d..b5a9cef 100755 --- a/testcase/syscalls/ltp.syscalls.setsockopt02.sh +++ b/testcase/syscalls/ltp.syscalls.setsockopt02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setsockopt03.sh b/testcase/syscalls/ltp.syscalls.setsockopt03.sh index 2026d1f..64e8fbd 100755 --- a/testcase/syscalls/ltp.syscalls.setsockopt03.sh +++ b/testcase/syscalls/ltp.syscalls.setsockopt03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setsockopt04.sh b/testcase/syscalls/ltp.syscalls.setsockopt04.sh index 73032aa..50a15f8 100755 --- a/testcase/syscalls/ltp.syscalls.setsockopt04.sh +++ b/testcase/syscalls/ltp.syscalls.setsockopt04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setsockopt05.sh b/testcase/syscalls/ltp.syscalls.setsockopt05.sh index 68ca7dc..76b7953 100755 --- a/testcase/syscalls/ltp.syscalls.setsockopt05.sh +++ b/testcase/syscalls/ltp.syscalls.setsockopt05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setsockopt06.sh b/testcase/syscalls/ltp.syscalls.setsockopt06.sh index 3478539..7dae9c1 100755 --- a/testcase/syscalls/ltp.syscalls.setsockopt06.sh +++ b/testcase/syscalls/ltp.syscalls.setsockopt06.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setsockopt07.sh b/testcase/syscalls/ltp.syscalls.setsockopt07.sh index c23fa78..0b76f86 100755 --- a/testcase/syscalls/ltp.syscalls.setsockopt07.sh +++ b/testcase/syscalls/ltp.syscalls.setsockopt07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setsockopt08.sh b/testcase/syscalls/ltp.syscalls.setsockopt08.sh index ddbca89..2f9682e 100755 --- a/testcase/syscalls/ltp.syscalls.setsockopt08.sh +++ b/testcase/syscalls/ltp.syscalls.setsockopt08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setsockopt09.sh b/testcase/syscalls/ltp.syscalls.setsockopt09.sh index 4ccbcb2..1874ed8 100755 --- a/testcase/syscalls/ltp.syscalls.setsockopt09.sh +++ b/testcase/syscalls/ltp.syscalls.setsockopt09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setsockopt10.sh b/testcase/syscalls/ltp.syscalls.setsockopt10.sh index ced77d8..9dc111e 100755 --- a/testcase/syscalls/ltp.syscalls.setsockopt10.sh +++ b/testcase/syscalls/ltp.syscalls.setsockopt10.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.settimeofday01.sh b/testcase/syscalls/ltp.syscalls.settimeofday01.sh index 55496ee..5ddecf6 100755 --- a/testcase/syscalls/ltp.syscalls.settimeofday01.sh +++ b/testcase/syscalls/ltp.syscalls.settimeofday01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.settimeofday02.sh b/testcase/syscalls/ltp.syscalls.settimeofday02.sh index 1d97f2c..ecdbbd0 100755 --- a/testcase/syscalls/ltp.syscalls.settimeofday02.sh +++ b/testcase/syscalls/ltp.syscalls.settimeofday02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setuid01.sh b/testcase/syscalls/ltp.syscalls.setuid01.sh index 57ad178..777d48d 100755 --- a/testcase/syscalls/ltp.syscalls.setuid01.sh +++ b/testcase/syscalls/ltp.syscalls.setuid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setuid01_16.sh b/testcase/syscalls/ltp.syscalls.setuid01_16.sh index 5949519..5d6df49 100755 --- a/testcase/syscalls/ltp.syscalls.setuid01_16.sh +++ b/testcase/syscalls/ltp.syscalls.setuid01_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setuid03.sh b/testcase/syscalls/ltp.syscalls.setuid03.sh index 8c44cd0..a4b9d96 100755 --- a/testcase/syscalls/ltp.syscalls.setuid03.sh +++ b/testcase/syscalls/ltp.syscalls.setuid03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setuid03_16.sh b/testcase/syscalls/ltp.syscalls.setuid03_16.sh index 89779d6..d3ec34e 100755 --- a/testcase/syscalls/ltp.syscalls.setuid03_16.sh +++ b/testcase/syscalls/ltp.syscalls.setuid03_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setuid04.sh b/testcase/syscalls/ltp.syscalls.setuid04.sh index 910fa69..d052932 100755 --- a/testcase/syscalls/ltp.syscalls.setuid04.sh +++ b/testcase/syscalls/ltp.syscalls.setuid04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setuid04_16.sh b/testcase/syscalls/ltp.syscalls.setuid04_16.sh index 727e8f5..273c500 100755 --- a/testcase/syscalls/ltp.syscalls.setuid04_16.sh +++ b/testcase/syscalls/ltp.syscalls.setuid04_16.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setxattr01.sh b/testcase/syscalls/ltp.syscalls.setxattr01.sh index 8dabd6d..4c185d4 100755 --- a/testcase/syscalls/ltp.syscalls.setxattr01.sh +++ b/testcase/syscalls/ltp.syscalls.setxattr01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setxattr02.sh b/testcase/syscalls/ltp.syscalls.setxattr02.sh index 8907787..ae0341f 100755 --- a/testcase/syscalls/ltp.syscalls.setxattr02.sh +++ b/testcase/syscalls/ltp.syscalls.setxattr02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.setxattr03.sh b/testcase/syscalls/ltp.syscalls.setxattr03.sh index 6444b7e..e7f8e51 100755 --- a/testcase/syscalls/ltp.syscalls.setxattr03.sh +++ b/testcase/syscalls/ltp.syscalls.setxattr03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sgetmask01.sh b/testcase/syscalls/ltp.syscalls.sgetmask01.sh index 91d676f..b1b9859 100755 --- a/testcase/syscalls/ltp.syscalls.sgetmask01.sh +++ b/testcase/syscalls/ltp.syscalls.sgetmask01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmat01.sh b/testcase/syscalls/ltp.syscalls.shmat01.sh index 5bd3d02..7b0a109 100755 --- a/testcase/syscalls/ltp.syscalls.shmat01.sh +++ b/testcase/syscalls/ltp.syscalls.shmat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmat02.sh b/testcase/syscalls/ltp.syscalls.shmat02.sh index 26fe638..673169e 100755 --- a/testcase/syscalls/ltp.syscalls.shmat02.sh +++ b/testcase/syscalls/ltp.syscalls.shmat02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmat03.sh b/testcase/syscalls/ltp.syscalls.shmat03.sh index 9ff9cbc..0d7c17f 100755 --- a/testcase/syscalls/ltp.syscalls.shmat03.sh +++ b/testcase/syscalls/ltp.syscalls.shmat03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmat04.sh b/testcase/syscalls/ltp.syscalls.shmat04.sh index 4373820..fe65a30 100755 --- a/testcase/syscalls/ltp.syscalls.shmat04.sh +++ b/testcase/syscalls/ltp.syscalls.shmat04.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.shmctl01.sh b/testcase/syscalls/ltp.syscalls.shmctl01.sh index c5ea41f..badd959 100755 --- a/testcase/syscalls/ltp.syscalls.shmctl01.sh +++ b/testcase/syscalls/ltp.syscalls.shmctl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmctl02.sh b/testcase/syscalls/ltp.syscalls.shmctl02.sh index 80bd346..f3e4b9d 100755 --- a/testcase/syscalls/ltp.syscalls.shmctl02.sh +++ b/testcase/syscalls/ltp.syscalls.shmctl02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmctl03.sh b/testcase/syscalls/ltp.syscalls.shmctl03.sh index 961c593..3ad5821 100755 --- a/testcase/syscalls/ltp.syscalls.shmctl03.sh +++ b/testcase/syscalls/ltp.syscalls.shmctl03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmctl04.sh b/testcase/syscalls/ltp.syscalls.shmctl04.sh index 563956d..b6448cc 100755 --- a/testcase/syscalls/ltp.syscalls.shmctl04.sh +++ b/testcase/syscalls/ltp.syscalls.shmctl04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmctl05.sh b/testcase/syscalls/ltp.syscalls.shmctl05.sh index 9ff811a..26700d1 100755 --- a/testcase/syscalls/ltp.syscalls.shmctl05.sh +++ b/testcase/syscalls/ltp.syscalls.shmctl05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmctl06.sh b/testcase/syscalls/ltp.syscalls.shmctl06.sh index 82d26dc..3a4a42f 100755 --- a/testcase/syscalls/ltp.syscalls.shmctl06.sh +++ b/testcase/syscalls/ltp.syscalls.shmctl06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmctl07.sh b/testcase/syscalls/ltp.syscalls.shmctl07.sh index ca20831..28b1549 100755 --- a/testcase/syscalls/ltp.syscalls.shmctl07.sh +++ b/testcase/syscalls/ltp.syscalls.shmctl07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmctl08.sh b/testcase/syscalls/ltp.syscalls.shmctl08.sh index 61c46fb..aeb270a 100755 --- a/testcase/syscalls/ltp.syscalls.shmctl08.sh +++ b/testcase/syscalls/ltp.syscalls.shmctl08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmdt01.sh b/testcase/syscalls/ltp.syscalls.shmdt01.sh index 3f1a473..26f7f43 100755 --- a/testcase/syscalls/ltp.syscalls.shmdt01.sh +++ b/testcase/syscalls/ltp.syscalls.shmdt01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmdt02.sh b/testcase/syscalls/ltp.syscalls.shmdt02.sh index 87555ef..5539303 100755 --- a/testcase/syscalls/ltp.syscalls.shmdt02.sh +++ b/testcase/syscalls/ltp.syscalls.shmdt02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmget02.sh b/testcase/syscalls/ltp.syscalls.shmget02.sh index a880e22..003bbea 100755 --- a/testcase/syscalls/ltp.syscalls.shmget02.sh +++ b/testcase/syscalls/ltp.syscalls.shmget02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmget03.sh b/testcase/syscalls/ltp.syscalls.shmget03.sh index 1f845b1..02a8a7b 100755 --- a/testcase/syscalls/ltp.syscalls.shmget03.sh +++ b/testcase/syscalls/ltp.syscalls.shmget03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmget04.sh b/testcase/syscalls/ltp.syscalls.shmget04.sh index d75c3fb..7c82ddf 100755 --- a/testcase/syscalls/ltp.syscalls.shmget04.sh +++ b/testcase/syscalls/ltp.syscalls.shmget04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmget05.sh b/testcase/syscalls/ltp.syscalls.shmget05.sh index 53f55ef..963f56e 100755 --- a/testcase/syscalls/ltp.syscalls.shmget05.sh +++ b/testcase/syscalls/ltp.syscalls.shmget05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.shmget06.sh b/testcase/syscalls/ltp.syscalls.shmget06.sh index 5769a9e..741315b 100755 --- a/testcase/syscalls/ltp.syscalls.shmget06.sh +++ b/testcase/syscalls/ltp.syscalls.shmget06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sigaction01.sh b/testcase/syscalls/ltp.syscalls.sigaction01.sh index 5c25d16..979e1ca 100755 --- a/testcase/syscalls/ltp.syscalls.sigaction01.sh +++ b/testcase/syscalls/ltp.syscalls.sigaction01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sigaction02.sh b/testcase/syscalls/ltp.syscalls.sigaction02.sh index 524552a..f62bfa6 100755 --- a/testcase/syscalls/ltp.syscalls.sigaction02.sh +++ b/testcase/syscalls/ltp.syscalls.sigaction02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sigaltstack01.sh b/testcase/syscalls/ltp.syscalls.sigaltstack01.sh index 4fd265d..ba2a653 100755 --- a/testcase/syscalls/ltp.syscalls.sigaltstack01.sh +++ b/testcase/syscalls/ltp.syscalls.sigaltstack01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sigaltstack02.sh b/testcase/syscalls/ltp.syscalls.sigaltstack02.sh index 6ce7ae7..1a4d289 100755 --- a/testcase/syscalls/ltp.syscalls.sigaltstack02.sh +++ b/testcase/syscalls/ltp.syscalls.sigaltstack02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sighold02.sh b/testcase/syscalls/ltp.syscalls.sighold02.sh index 7a3bdf1..cc8c307 100755 --- a/testcase/syscalls/ltp.syscalls.sighold02.sh +++ b/testcase/syscalls/ltp.syscalls.sighold02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.signal01.sh b/testcase/syscalls/ltp.syscalls.signal01.sh index d62e7db..7900204 100755 --- a/testcase/syscalls/ltp.syscalls.signal01.sh +++ b/testcase/syscalls/ltp.syscalls.signal01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.signal02.sh b/testcase/syscalls/ltp.syscalls.signal02.sh index c34bbb5..75258d8 100755 --- a/testcase/syscalls/ltp.syscalls.signal02.sh +++ b/testcase/syscalls/ltp.syscalls.signal02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.signal03.sh b/testcase/syscalls/ltp.syscalls.signal03.sh index 11ae4d6..2d4ec52 100755 --- a/testcase/syscalls/ltp.syscalls.signal03.sh +++ b/testcase/syscalls/ltp.syscalls.signal03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.signal04.sh b/testcase/syscalls/ltp.syscalls.signal04.sh index 6f1604e..590d467 100755 --- a/testcase/syscalls/ltp.syscalls.signal04.sh +++ b/testcase/syscalls/ltp.syscalls.signal04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.signal05.sh b/testcase/syscalls/ltp.syscalls.signal05.sh index 7853042..9812d38 100755 --- a/testcase/syscalls/ltp.syscalls.signal05.sh +++ b/testcase/syscalls/ltp.syscalls.signal05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.signal06.sh b/testcase/syscalls/ltp.syscalls.signal06.sh index 4faa3f1..b030868 100755 --- a/testcase/syscalls/ltp.syscalls.signal06.sh +++ b/testcase/syscalls/ltp.syscalls.signal06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.signalfd01.sh b/testcase/syscalls/ltp.syscalls.signalfd01.sh index 7a537ec..e536ef4 100755 --- a/testcase/syscalls/ltp.syscalls.signalfd01.sh +++ b/testcase/syscalls/ltp.syscalls.signalfd01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.signalfd4_01.sh b/testcase/syscalls/ltp.syscalls.signalfd4_01.sh index cab2973..19b1d6f 100755 --- a/testcase/syscalls/ltp.syscalls.signalfd4_01.sh +++ b/testcase/syscalls/ltp.syscalls.signalfd4_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.signalfd4_02.sh b/testcase/syscalls/ltp.syscalls.signalfd4_02.sh index 4424432..fa4c8c0 100755 --- a/testcase/syscalls/ltp.syscalls.signalfd4_02.sh +++ b/testcase/syscalls/ltp.syscalls.signalfd4_02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sigpending02.sh b/testcase/syscalls/ltp.syscalls.sigpending02.sh index 32980a0..41430e0 100755 --- a/testcase/syscalls/ltp.syscalls.sigpending02.sh +++ b/testcase/syscalls/ltp.syscalls.sigpending02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sigprocmask01.sh b/testcase/syscalls/ltp.syscalls.sigprocmask01.sh index cf370e7..bddff93 100755 --- a/testcase/syscalls/ltp.syscalls.sigprocmask01.sh +++ b/testcase/syscalls/ltp.syscalls.sigprocmask01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sigrelse01.sh b/testcase/syscalls/ltp.syscalls.sigrelse01.sh index c548ce8..9e82ed6 100755 --- a/testcase/syscalls/ltp.syscalls.sigrelse01.sh +++ b/testcase/syscalls/ltp.syscalls.sigrelse01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sigsuspend01.sh b/testcase/syscalls/ltp.syscalls.sigsuspend01.sh index 4cbcc99..02facf4 100755 --- a/testcase/syscalls/ltp.syscalls.sigsuspend01.sh +++ b/testcase/syscalls/ltp.syscalls.sigsuspend01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sigtimedwait01.sh b/testcase/syscalls/ltp.syscalls.sigtimedwait01.sh index 9ead0d4..cce6a31 100755 --- a/testcase/syscalls/ltp.syscalls.sigtimedwait01.sh +++ b/testcase/syscalls/ltp.syscalls.sigtimedwait01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sigwait01.sh b/testcase/syscalls/ltp.syscalls.sigwait01.sh index f90d2b3..6dfb400 100755 --- a/testcase/syscalls/ltp.syscalls.sigwait01.sh +++ b/testcase/syscalls/ltp.syscalls.sigwait01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sigwaitinfo01.sh b/testcase/syscalls/ltp.syscalls.sigwaitinfo01.sh index 16d04fc..573765b 100755 --- a/testcase/syscalls/ltp.syscalls.sigwaitinfo01.sh +++ b/testcase/syscalls/ltp.syscalls.sigwaitinfo01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.socket01.sh b/testcase/syscalls/ltp.syscalls.socket01.sh index 7b79c28..8a40719 100755 --- a/testcase/syscalls/ltp.syscalls.socket01.sh +++ b/testcase/syscalls/ltp.syscalls.socket01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.socket02.sh b/testcase/syscalls/ltp.syscalls.socket02.sh index ee95ad3..5576789 100755 --- a/testcase/syscalls/ltp.syscalls.socket02.sh +++ b/testcase/syscalls/ltp.syscalls.socket02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.socketcall01.sh b/testcase/syscalls/ltp.syscalls.socketcall01.sh index 72bafc3..3430b5c 100755 --- a/testcase/syscalls/ltp.syscalls.socketcall01.sh +++ b/testcase/syscalls/ltp.syscalls.socketcall01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.socketcall02.sh b/testcase/syscalls/ltp.syscalls.socketcall02.sh index 3007710..01a22ea 100755 --- a/testcase/syscalls/ltp.syscalls.socketcall02.sh +++ b/testcase/syscalls/ltp.syscalls.socketcall02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.socketcall03.sh b/testcase/syscalls/ltp.syscalls.socketcall03.sh index 4e15d9f..05c8061 100755 --- a/testcase/syscalls/ltp.syscalls.socketcall03.sh +++ b/testcase/syscalls/ltp.syscalls.socketcall03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.socketpair01.sh b/testcase/syscalls/ltp.syscalls.socketpair01.sh index 0bd7ac3..5559c76 100755 --- a/testcase/syscalls/ltp.syscalls.socketpair01.sh +++ b/testcase/syscalls/ltp.syscalls.socketpair01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.socketpair02.sh b/testcase/syscalls/ltp.syscalls.socketpair02.sh index 1c38869..bbdecc7 100755 --- a/testcase/syscalls/ltp.syscalls.socketpair02.sh +++ b/testcase/syscalls/ltp.syscalls.socketpair02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sockioctl01.sh b/testcase/syscalls/ltp.syscalls.sockioctl01.sh index 60a0130..59e77dd 100755 --- a/testcase/syscalls/ltp.syscalls.sockioctl01.sh +++ b/testcase/syscalls/ltp.syscalls.sockioctl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.splice01.sh b/testcase/syscalls/ltp.syscalls.splice01.sh index 9edf17c..9c3a6ed 100755 --- a/testcase/syscalls/ltp.syscalls.splice01.sh +++ b/testcase/syscalls/ltp.syscalls.splice01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.splice02.sh b/testcase/syscalls/ltp.syscalls.splice02.sh index 4016a5b..df0163e 100755 --- a/testcase/syscalls/ltp.syscalls.splice02.sh +++ b/testcase/syscalls/ltp.syscalls.splice02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.splice03.sh b/testcase/syscalls/ltp.syscalls.splice03.sh index 77aca1a..7993f8c 100755 --- a/testcase/syscalls/ltp.syscalls.splice03.sh +++ b/testcase/syscalls/ltp.syscalls.splice03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.splice04.sh b/testcase/syscalls/ltp.syscalls.splice04.sh index eededb8..873cf82 100755 --- a/testcase/syscalls/ltp.syscalls.splice04.sh +++ b/testcase/syscalls/ltp.syscalls.splice04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.splice05.sh b/testcase/syscalls/ltp.syscalls.splice05.sh index 77da9dd..5e5577b 100755 --- a/testcase/syscalls/ltp.syscalls.splice05.sh +++ b/testcase/syscalls/ltp.syscalls.splice05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.splice06.sh b/testcase/syscalls/ltp.syscalls.splice06.sh index 2a71c58..db2ae38 100755 --- a/testcase/syscalls/ltp.syscalls.splice06.sh +++ b/testcase/syscalls/ltp.syscalls.splice06.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.splice07.sh b/testcase/syscalls/ltp.syscalls.splice07.sh index a8d4eec..c33dc5e 100755 --- a/testcase/syscalls/ltp.syscalls.splice07.sh +++ b/testcase/syscalls/ltp.syscalls.splice07.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.splice08.sh b/testcase/syscalls/ltp.syscalls.splice08.sh index 1c8c14d..d45859c 100755 --- a/testcase/syscalls/ltp.syscalls.splice08.sh +++ b/testcase/syscalls/ltp.syscalls.splice08.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.splice09.sh b/testcase/syscalls/ltp.syscalls.splice09.sh index e4147bf..fd748cf 100755 --- a/testcase/syscalls/ltp.syscalls.splice09.sh +++ b/testcase/syscalls/ltp.syscalls.splice09.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.ssetmask01.sh b/testcase/syscalls/ltp.syscalls.ssetmask01.sh index 2061aa6..e3b620b 100755 --- a/testcase/syscalls/ltp.syscalls.ssetmask01.sh +++ b/testcase/syscalls/ltp.syscalls.ssetmask01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.stat01.sh b/testcase/syscalls/ltp.syscalls.stat01.sh index f288b29..2be46b7 100755 --- a/testcase/syscalls/ltp.syscalls.stat01.sh +++ b/testcase/syscalls/ltp.syscalls.stat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.stat01_64.sh b/testcase/syscalls/ltp.syscalls.stat01_64.sh index 5fb46be..2db8ffd 100755 --- a/testcase/syscalls/ltp.syscalls.stat01_64.sh +++ b/testcase/syscalls/ltp.syscalls.stat01_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.stat02.sh b/testcase/syscalls/ltp.syscalls.stat02.sh index e2cefb9..0bd1910 100755 --- a/testcase/syscalls/ltp.syscalls.stat02.sh +++ b/testcase/syscalls/ltp.syscalls.stat02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.stat02_64.sh b/testcase/syscalls/ltp.syscalls.stat02_64.sh index f9df9b3..1562c09 100755 --- a/testcase/syscalls/ltp.syscalls.stat02_64.sh +++ b/testcase/syscalls/ltp.syscalls.stat02_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.stat03.sh b/testcase/syscalls/ltp.syscalls.stat03.sh index d9889cb..f734d38 100755 --- a/testcase/syscalls/ltp.syscalls.stat03.sh +++ b/testcase/syscalls/ltp.syscalls.stat03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.stat03_64.sh b/testcase/syscalls/ltp.syscalls.stat03_64.sh index 65f99d7..7449f54 100755 --- a/testcase/syscalls/ltp.syscalls.stat03_64.sh +++ b/testcase/syscalls/ltp.syscalls.stat03_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.stat04.sh b/testcase/syscalls/ltp.syscalls.stat04.sh index 6fea3b3..14d2ad9 100755 --- a/testcase/syscalls/ltp.syscalls.stat04.sh +++ b/testcase/syscalls/ltp.syscalls.stat04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.stat04_64.sh b/testcase/syscalls/ltp.syscalls.stat04_64.sh index 02e21ab..25a319f 100755 --- a/testcase/syscalls/ltp.syscalls.stat04_64.sh +++ b/testcase/syscalls/ltp.syscalls.stat04_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statfs01.sh b/testcase/syscalls/ltp.syscalls.statfs01.sh index 365be12..9a3f699 100755 --- a/testcase/syscalls/ltp.syscalls.statfs01.sh +++ b/testcase/syscalls/ltp.syscalls.statfs01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statfs01_64.sh b/testcase/syscalls/ltp.syscalls.statfs01_64.sh index 752425e..3583593 100755 --- a/testcase/syscalls/ltp.syscalls.statfs01_64.sh +++ b/testcase/syscalls/ltp.syscalls.statfs01_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statfs02.sh b/testcase/syscalls/ltp.syscalls.statfs02.sh index 587fd4c..e456a07 100755 --- a/testcase/syscalls/ltp.syscalls.statfs02.sh +++ b/testcase/syscalls/ltp.syscalls.statfs02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statfs02_64.sh b/testcase/syscalls/ltp.syscalls.statfs02_64.sh index ef686f1..f7704fc 100755 --- a/testcase/syscalls/ltp.syscalls.statfs02_64.sh +++ b/testcase/syscalls/ltp.syscalls.statfs02_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statfs03.sh b/testcase/syscalls/ltp.syscalls.statfs03.sh index 5f27b56..2246ede 100755 --- a/testcase/syscalls/ltp.syscalls.statfs03.sh +++ b/testcase/syscalls/ltp.syscalls.statfs03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statfs03_64.sh b/testcase/syscalls/ltp.syscalls.statfs03_64.sh index 50687f2..ac4e83e 100755 --- a/testcase/syscalls/ltp.syscalls.statfs03_64.sh +++ b/testcase/syscalls/ltp.syscalls.statfs03_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statvfs01.sh b/testcase/syscalls/ltp.syscalls.statvfs01.sh index 926c6b7..4cffed3 100755 --- a/testcase/syscalls/ltp.syscalls.statvfs01.sh +++ b/testcase/syscalls/ltp.syscalls.statvfs01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statvfs02.sh b/testcase/syscalls/ltp.syscalls.statvfs02.sh index a09ba49..9a38531 100755 --- a/testcase/syscalls/ltp.syscalls.statvfs02.sh +++ b/testcase/syscalls/ltp.syscalls.statvfs02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statx01.sh b/testcase/syscalls/ltp.syscalls.statx01.sh index bb231c1..974873a 100755 --- a/testcase/syscalls/ltp.syscalls.statx01.sh +++ b/testcase/syscalls/ltp.syscalls.statx01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statx02.sh b/testcase/syscalls/ltp.syscalls.statx02.sh index 42afd70..aa30f48 100755 --- a/testcase/syscalls/ltp.syscalls.statx02.sh +++ b/testcase/syscalls/ltp.syscalls.statx02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statx03.sh b/testcase/syscalls/ltp.syscalls.statx03.sh index 39196f4..24e64f3 100755 --- a/testcase/syscalls/ltp.syscalls.statx03.sh +++ b/testcase/syscalls/ltp.syscalls.statx03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statx04.sh b/testcase/syscalls/ltp.syscalls.statx04.sh index 1b2062f..c0499a6 100755 --- a/testcase/syscalls/ltp.syscalls.statx04.sh +++ b/testcase/syscalls/ltp.syscalls.statx04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statx05.sh b/testcase/syscalls/ltp.syscalls.statx05.sh index 3ab594d..de16d22 100755 --- a/testcase/syscalls/ltp.syscalls.statx05.sh +++ b/testcase/syscalls/ltp.syscalls.statx05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statx06.sh b/testcase/syscalls/ltp.syscalls.statx06.sh index 53c0e29..0af6c04 100755 --- a/testcase/syscalls/ltp.syscalls.statx06.sh +++ b/testcase/syscalls/ltp.syscalls.statx06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statx07.sh b/testcase/syscalls/ltp.syscalls.statx07.sh index c16a624..544d3c8 100755 --- a/testcase/syscalls/ltp.syscalls.statx07.sh +++ b/testcase/syscalls/ltp.syscalls.statx07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statx08.sh b/testcase/syscalls/ltp.syscalls.statx08.sh index 11caf84..f83288c 100755 --- a/testcase/syscalls/ltp.syscalls.statx08.sh +++ b/testcase/syscalls/ltp.syscalls.statx08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statx09.sh b/testcase/syscalls/ltp.syscalls.statx09.sh index f3c4926..db1a040 100755 --- a/testcase/syscalls/ltp.syscalls.statx09.sh +++ b/testcase/syscalls/ltp.syscalls.statx09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.statx10.sh b/testcase/syscalls/ltp.syscalls.statx10.sh index 891a71e..3dc4824 100755 --- a/testcase/syscalls/ltp.syscalls.statx10.sh +++ b/testcase/syscalls/ltp.syscalls.statx10.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.statx11.sh b/testcase/syscalls/ltp.syscalls.statx11.sh index 70fb42f..2515d92 100755 --- a/testcase/syscalls/ltp.syscalls.statx11.sh +++ b/testcase/syscalls/ltp.syscalls.statx11.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.statx12.sh b/testcase/syscalls/ltp.syscalls.statx12.sh index e587b41..2824776 100755 --- a/testcase/syscalls/ltp.syscalls.statx12.sh +++ b/testcase/syscalls/ltp.syscalls.statx12.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.stime01.sh b/testcase/syscalls/ltp.syscalls.stime01.sh index 13d014c..3676e14 100755 --- a/testcase/syscalls/ltp.syscalls.stime01.sh +++ b/testcase/syscalls/ltp.syscalls.stime01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.stime02.sh b/testcase/syscalls/ltp.syscalls.stime02.sh index 06243ae..d1b56d6 100755 --- a/testcase/syscalls/ltp.syscalls.stime02.sh +++ b/testcase/syscalls/ltp.syscalls.stime02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.string01.sh b/testcase/syscalls/ltp.syscalls.string01.sh index c4c3123..788ce40 100755 --- a/testcase/syscalls/ltp.syscalls.string01.sh +++ b/testcase/syscalls/ltp.syscalls.string01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.swapoff01.sh b/testcase/syscalls/ltp.syscalls.swapoff01.sh index 6ead8f8..9d7e234 100755 --- a/testcase/syscalls/ltp.syscalls.swapoff01.sh +++ b/testcase/syscalls/ltp.syscalls.swapoff01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.swapoff02.sh b/testcase/syscalls/ltp.syscalls.swapoff02.sh index 4c233fd..8c17ca4 100755 --- a/testcase/syscalls/ltp.syscalls.swapoff02.sh +++ b/testcase/syscalls/ltp.syscalls.swapoff02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.swapon01.sh b/testcase/syscalls/ltp.syscalls.swapon01.sh index 63860e0..69d8ce1 100755 --- a/testcase/syscalls/ltp.syscalls.swapon01.sh +++ b/testcase/syscalls/ltp.syscalls.swapon01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.swapon02.sh b/testcase/syscalls/ltp.syscalls.swapon02.sh index 5fad75d..bfbddbc 100755 --- a/testcase/syscalls/ltp.syscalls.swapon02.sh +++ b/testcase/syscalls/ltp.syscalls.swapon02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.swapon03.sh b/testcase/syscalls/ltp.syscalls.swapon03.sh index b3b87d2..b0fc6f8 100755 --- a/testcase/syscalls/ltp.syscalls.swapon03.sh +++ b/testcase/syscalls/ltp.syscalls.swapon03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.switch01.sh b/testcase/syscalls/ltp.syscalls.switch01.sh index 09663fd..80cb1a3 100755 --- a/testcase/syscalls/ltp.syscalls.switch01.sh +++ b/testcase/syscalls/ltp.syscalls.switch01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.symlink01.sh b/testcase/syscalls/ltp.syscalls.symlink01.sh index b32bbcf..4e11233 100755 --- a/testcase/syscalls/ltp.syscalls.symlink01.sh +++ b/testcase/syscalls/ltp.syscalls.symlink01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.symlink02.sh b/testcase/syscalls/ltp.syscalls.symlink02.sh index 744fbed..afc9776 100755 --- a/testcase/syscalls/ltp.syscalls.symlink02.sh +++ b/testcase/syscalls/ltp.syscalls.symlink02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.symlink03.sh b/testcase/syscalls/ltp.syscalls.symlink03.sh index 21be82e..d313c67 100755 --- a/testcase/syscalls/ltp.syscalls.symlink03.sh +++ b/testcase/syscalls/ltp.syscalls.symlink03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.symlink04.sh b/testcase/syscalls/ltp.syscalls.symlink04.sh index 2628e2a..6a66a09 100755 --- a/testcase/syscalls/ltp.syscalls.symlink04.sh +++ b/testcase/syscalls/ltp.syscalls.symlink04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.symlinkat01.sh b/testcase/syscalls/ltp.syscalls.symlinkat01.sh index 28f0527..bbc71e4 100755 --- a/testcase/syscalls/ltp.syscalls.symlinkat01.sh +++ b/testcase/syscalls/ltp.syscalls.symlinkat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sync01.sh b/testcase/syscalls/ltp.syscalls.sync01.sh index 2b0b22a..32088b6 100755 --- a/testcase/syscalls/ltp.syscalls.sync01.sh +++ b/testcase/syscalls/ltp.syscalls.sync01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sync_file_range01.sh b/testcase/syscalls/ltp.syscalls.sync_file_range01.sh index 24edd8b..3debacc 100755 --- a/testcase/syscalls/ltp.syscalls.sync_file_range01.sh +++ b/testcase/syscalls/ltp.syscalls.sync_file_range01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sync_file_range02.sh b/testcase/syscalls/ltp.syscalls.sync_file_range02.sh index b507901..dcb2c81 100755 --- a/testcase/syscalls/ltp.syscalls.sync_file_range02.sh +++ b/testcase/syscalls/ltp.syscalls.sync_file_range02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.syncfs01.sh b/testcase/syscalls/ltp.syscalls.syncfs01.sh index 6eaab4a..aafaf86 100755 --- a/testcase/syscalls/ltp.syscalls.syncfs01.sh +++ b/testcase/syscalls/ltp.syscalls.syncfs01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.syscall01.sh b/testcase/syscalls/ltp.syscalls.syscall01.sh index e65acca..8218734 100755 --- a/testcase/syscalls/ltp.syscalls.syscall01.sh +++ b/testcase/syscalls/ltp.syscalls.syscall01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sysconf01.sh b/testcase/syscalls/ltp.syscalls.sysconf01.sh index 4edca48..c5a7246 100755 --- a/testcase/syscalls/ltp.syscalls.sysconf01.sh +++ b/testcase/syscalls/ltp.syscalls.sysconf01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sysctl01.sh b/testcase/syscalls/ltp.syscalls.sysctl01.sh index e4b6a4e..5ab3583 100755 --- a/testcase/syscalls/ltp.syscalls.sysctl01.sh +++ b/testcase/syscalls/ltp.syscalls.sysctl01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sysctl03.sh b/testcase/syscalls/ltp.syscalls.sysctl03.sh index 486c79d..4b37688 100755 --- a/testcase/syscalls/ltp.syscalls.sysctl03.sh +++ b/testcase/syscalls/ltp.syscalls.sysctl03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sysctl04.sh b/testcase/syscalls/ltp.syscalls.sysctl04.sh index a302f88..27d0067 100755 --- a/testcase/syscalls/ltp.syscalls.sysctl04.sh +++ b/testcase/syscalls/ltp.syscalls.sysctl04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sysfs01.sh b/testcase/syscalls/ltp.syscalls.sysfs01.sh index 8b08beb..10ad9ff 100755 --- a/testcase/syscalls/ltp.syscalls.sysfs01.sh +++ b/testcase/syscalls/ltp.syscalls.sysfs01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sysfs02.sh b/testcase/syscalls/ltp.syscalls.sysfs02.sh index 11df793..126001f 100755 --- a/testcase/syscalls/ltp.syscalls.sysfs02.sh +++ b/testcase/syscalls/ltp.syscalls.sysfs02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sysfs03.sh b/testcase/syscalls/ltp.syscalls.sysfs03.sh index f282bac..fac6ea7 100755 --- a/testcase/syscalls/ltp.syscalls.sysfs03.sh +++ b/testcase/syscalls/ltp.syscalls.sysfs03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sysfs04.sh b/testcase/syscalls/ltp.syscalls.sysfs04.sh index c708996..abac24d 100755 --- a/testcase/syscalls/ltp.syscalls.sysfs04.sh +++ b/testcase/syscalls/ltp.syscalls.sysfs04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sysfs05.sh b/testcase/syscalls/ltp.syscalls.sysfs05.sh index d814139..412bec0 100755 --- a/testcase/syscalls/ltp.syscalls.sysfs05.sh +++ b/testcase/syscalls/ltp.syscalls.sysfs05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sysinfo01.sh b/testcase/syscalls/ltp.syscalls.sysinfo01.sh index e4c2881..d3edd8a 100755 --- a/testcase/syscalls/ltp.syscalls.sysinfo01.sh +++ b/testcase/syscalls/ltp.syscalls.sysinfo01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sysinfo02.sh b/testcase/syscalls/ltp.syscalls.sysinfo02.sh index 9f2327b..0afe705 100755 --- a/testcase/syscalls/ltp.syscalls.sysinfo02.sh +++ b/testcase/syscalls/ltp.syscalls.sysinfo02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.sysinfo03.sh b/testcase/syscalls/ltp.syscalls.sysinfo03.sh index 3479a49..044e7a9 100755 --- a/testcase/syscalls/ltp.syscalls.sysinfo03.sh +++ b/testcase/syscalls/ltp.syscalls.sysinfo03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.syslog11.sh b/testcase/syscalls/ltp.syscalls.syslog11.sh index a9b97ef..d889ae7 100755 --- a/testcase/syscalls/ltp.syscalls.syslog11.sh +++ b/testcase/syscalls/ltp.syscalls.syslog11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.syslog12.sh b/testcase/syscalls/ltp.syscalls.syslog12.sh index 56d4735..8caadf6 100755 --- a/testcase/syscalls/ltp.syscalls.syslog12.sh +++ b/testcase/syscalls/ltp.syscalls.syslog12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.tee01.sh b/testcase/syscalls/ltp.syscalls.tee01.sh index 71cffe2..a58fb69 100755 --- a/testcase/syscalls/ltp.syscalls.tee01.sh +++ b/testcase/syscalls/ltp.syscalls.tee01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.tee02.sh b/testcase/syscalls/ltp.syscalls.tee02.sh index 5e803cd..5d03d9c 100755 --- a/testcase/syscalls/ltp.syscalls.tee02.sh +++ b/testcase/syscalls/ltp.syscalls.tee02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.tgkill01.sh b/testcase/syscalls/ltp.syscalls.tgkill01.sh index 25b7d1b..8a35978 100755 --- a/testcase/syscalls/ltp.syscalls.tgkill01.sh +++ b/testcase/syscalls/ltp.syscalls.tgkill01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.tgkill02.sh b/testcase/syscalls/ltp.syscalls.tgkill02.sh index d2a4c15..a6fc995 100755 --- a/testcase/syscalls/ltp.syscalls.tgkill02.sh +++ b/testcase/syscalls/ltp.syscalls.tgkill02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.tgkill03.sh b/testcase/syscalls/ltp.syscalls.tgkill03.sh index 8993b3d..9448313 100755 --- a/testcase/syscalls/ltp.syscalls.tgkill03.sh +++ b/testcase/syscalls/ltp.syscalls.tgkill03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.time01.sh b/testcase/syscalls/ltp.syscalls.time01.sh index 7efea9e..f381499 100755 --- a/testcase/syscalls/ltp.syscalls.time01.sh +++ b/testcase/syscalls/ltp.syscalls.time01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timer_create01.sh b/testcase/syscalls/ltp.syscalls.timer_create01.sh index 9c87d12..a160b74 100755 --- a/testcase/syscalls/ltp.syscalls.timer_create01.sh +++ b/testcase/syscalls/ltp.syscalls.timer_create01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timer_create02.sh b/testcase/syscalls/ltp.syscalls.timer_create02.sh index ba7db67..791b367 100755 --- a/testcase/syscalls/ltp.syscalls.timer_create02.sh +++ b/testcase/syscalls/ltp.syscalls.timer_create02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timer_create03.sh b/testcase/syscalls/ltp.syscalls.timer_create03.sh index daaca69..3fea998 100755 --- a/testcase/syscalls/ltp.syscalls.timer_create03.sh +++ b/testcase/syscalls/ltp.syscalls.timer_create03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timer_delete01.sh b/testcase/syscalls/ltp.syscalls.timer_delete01.sh index dbeafbf..95756c3 100755 --- a/testcase/syscalls/ltp.syscalls.timer_delete01.sh +++ b/testcase/syscalls/ltp.syscalls.timer_delete01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timer_delete02.sh b/testcase/syscalls/ltp.syscalls.timer_delete02.sh index 2fc9002..9cc18c2 100755 --- a/testcase/syscalls/ltp.syscalls.timer_delete02.sh +++ b/testcase/syscalls/ltp.syscalls.timer_delete02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timer_getoverrun01.sh b/testcase/syscalls/ltp.syscalls.timer_getoverrun01.sh index 419f6f1..c5ee541 100755 --- a/testcase/syscalls/ltp.syscalls.timer_getoverrun01.sh +++ b/testcase/syscalls/ltp.syscalls.timer_getoverrun01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timer_gettime01.sh b/testcase/syscalls/ltp.syscalls.timer_gettime01.sh index 06613d7..b83f106 100755 --- a/testcase/syscalls/ltp.syscalls.timer_gettime01.sh +++ b/testcase/syscalls/ltp.syscalls.timer_gettime01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timer_settime01.sh b/testcase/syscalls/ltp.syscalls.timer_settime01.sh index e44b3d3..d70a876 100755 --- a/testcase/syscalls/ltp.syscalls.timer_settime01.sh +++ b/testcase/syscalls/ltp.syscalls.timer_settime01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timer_settime02.sh b/testcase/syscalls/ltp.syscalls.timer_settime02.sh index fb81149..dc9277d 100755 --- a/testcase/syscalls/ltp.syscalls.timer_settime02.sh +++ b/testcase/syscalls/ltp.syscalls.timer_settime02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timer_settime03.sh b/testcase/syscalls/ltp.syscalls.timer_settime03.sh index 15bb974..311df14 100755 --- a/testcase/syscalls/ltp.syscalls.timer_settime03.sh +++ b/testcase/syscalls/ltp.syscalls.timer_settime03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timerfd01.sh b/testcase/syscalls/ltp.syscalls.timerfd01.sh index 718dcbb..2f57852 100755 --- a/testcase/syscalls/ltp.syscalls.timerfd01.sh +++ b/testcase/syscalls/ltp.syscalls.timerfd01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timerfd02.sh b/testcase/syscalls/ltp.syscalls.timerfd02.sh index 576d893..2284ff5 100755 --- a/testcase/syscalls/ltp.syscalls.timerfd02.sh +++ b/testcase/syscalls/ltp.syscalls.timerfd02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timerfd04.sh b/testcase/syscalls/ltp.syscalls.timerfd04.sh index c8a0466..ac595a9 100755 --- a/testcase/syscalls/ltp.syscalls.timerfd04.sh +++ b/testcase/syscalls/ltp.syscalls.timerfd04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timerfd_create01.sh b/testcase/syscalls/ltp.syscalls.timerfd_create01.sh index 0f6815f..2002068 100755 --- a/testcase/syscalls/ltp.syscalls.timerfd_create01.sh +++ b/testcase/syscalls/ltp.syscalls.timerfd_create01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timerfd_gettime01.sh b/testcase/syscalls/ltp.syscalls.timerfd_gettime01.sh index e3da05b..e9b7779 100755 --- a/testcase/syscalls/ltp.syscalls.timerfd_gettime01.sh +++ b/testcase/syscalls/ltp.syscalls.timerfd_gettime01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timerfd_settime01.sh b/testcase/syscalls/ltp.syscalls.timerfd_settime01.sh index 9c910eb..379f791 100755 --- a/testcase/syscalls/ltp.syscalls.timerfd_settime01.sh +++ b/testcase/syscalls/ltp.syscalls.timerfd_settime01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.timerfd_settime02.sh b/testcase/syscalls/ltp.syscalls.timerfd_settime02.sh index 245627a..5d30280 100755 --- a/testcase/syscalls/ltp.syscalls.timerfd_settime02.sh +++ b/testcase/syscalls/ltp.syscalls.timerfd_settime02.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.times01.sh b/testcase/syscalls/ltp.syscalls.times01.sh index 46b5206..dd8eace 100755 --- a/testcase/syscalls/ltp.syscalls.times01.sh +++ b/testcase/syscalls/ltp.syscalls.times01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.times03.sh b/testcase/syscalls/ltp.syscalls.times03.sh index 8603107..c62187e 100755 --- a/testcase/syscalls/ltp.syscalls.times03.sh +++ b/testcase/syscalls/ltp.syscalls.times03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.tkill01.sh b/testcase/syscalls/ltp.syscalls.tkill01.sh index 64626c9..50e51b1 100755 --- a/testcase/syscalls/ltp.syscalls.tkill01.sh +++ b/testcase/syscalls/ltp.syscalls.tkill01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.tkill02.sh b/testcase/syscalls/ltp.syscalls.tkill02.sh index 2218aa4..47675ad 100755 --- a/testcase/syscalls/ltp.syscalls.tkill02.sh +++ b/testcase/syscalls/ltp.syscalls.tkill02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.truncate02.sh b/testcase/syscalls/ltp.syscalls.truncate02.sh index a5ef9fa..ddb5bce 100755 --- a/testcase/syscalls/ltp.syscalls.truncate02.sh +++ b/testcase/syscalls/ltp.syscalls.truncate02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.truncate02_64.sh b/testcase/syscalls/ltp.syscalls.truncate02_64.sh index fcbb92c..8d4335a 100755 --- a/testcase/syscalls/ltp.syscalls.truncate02_64.sh +++ b/testcase/syscalls/ltp.syscalls.truncate02_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.truncate03.sh b/testcase/syscalls/ltp.syscalls.truncate03.sh index 38c08dc..f6f5a83 100755 --- a/testcase/syscalls/ltp.syscalls.truncate03.sh +++ b/testcase/syscalls/ltp.syscalls.truncate03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.truncate03_64.sh b/testcase/syscalls/ltp.syscalls.truncate03_64.sh index 9d2e0b9..8002347 100755 --- a/testcase/syscalls/ltp.syscalls.truncate03_64.sh +++ b/testcase/syscalls/ltp.syscalls.truncate03_64.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ulimit01.sh b/testcase/syscalls/ltp.syscalls.ulimit01.sh index 6e5e9f5..4bb73d9 100755 --- a/testcase/syscalls/ltp.syscalls.ulimit01.sh +++ b/testcase/syscalls/ltp.syscalls.ulimit01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.umask01.sh b/testcase/syscalls/ltp.syscalls.umask01.sh index 8cfd923..7bf516a 100755 --- a/testcase/syscalls/ltp.syscalls.umask01.sh +++ b/testcase/syscalls/ltp.syscalls.umask01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.umount01.sh b/testcase/syscalls/ltp.syscalls.umount01.sh index dec08cb..1dfcbb5 100755 --- a/testcase/syscalls/ltp.syscalls.umount01.sh +++ b/testcase/syscalls/ltp.syscalls.umount01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.umount02.sh b/testcase/syscalls/ltp.syscalls.umount02.sh index 1be9766..e5ff4f3 100755 --- a/testcase/syscalls/ltp.syscalls.umount02.sh +++ b/testcase/syscalls/ltp.syscalls.umount02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.umount03.sh b/testcase/syscalls/ltp.syscalls.umount03.sh index 5e8086b..6e4f20e 100755 --- a/testcase/syscalls/ltp.syscalls.umount03.sh +++ b/testcase/syscalls/ltp.syscalls.umount03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.umount2_01.sh b/testcase/syscalls/ltp.syscalls.umount2_01.sh index 2bbf7a2..f247779 100755 --- a/testcase/syscalls/ltp.syscalls.umount2_01.sh +++ b/testcase/syscalls/ltp.syscalls.umount2_01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.umount2_02.sh b/testcase/syscalls/ltp.syscalls.umount2_02.sh index 640e8be..46c0991 100755 --- a/testcase/syscalls/ltp.syscalls.umount2_02.sh +++ b/testcase/syscalls/ltp.syscalls.umount2_02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.uname01.sh b/testcase/syscalls/ltp.syscalls.uname01.sh index 6bcbe41..38f194a 100755 --- a/testcase/syscalls/ltp.syscalls.uname01.sh +++ b/testcase/syscalls/ltp.syscalls.uname01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.uname02.sh b/testcase/syscalls/ltp.syscalls.uname02.sh index 9a1e6c4..0d27bc7 100755 --- a/testcase/syscalls/ltp.syscalls.uname02.sh +++ b/testcase/syscalls/ltp.syscalls.uname02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.uname04.sh b/testcase/syscalls/ltp.syscalls.uname04.sh index 462cdfd..81ba60e 100755 --- a/testcase/syscalls/ltp.syscalls.uname04.sh +++ b/testcase/syscalls/ltp.syscalls.uname04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.unlink01.sh b/testcase/syscalls/ltp.syscalls.unlink01.sh index 6eab546..74a017b 100755 --- a/testcase/syscalls/ltp.syscalls.unlink01.sh +++ b/testcase/syscalls/ltp.syscalls.unlink01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.unlink05.sh b/testcase/syscalls/ltp.syscalls.unlink05.sh index 0407d1b..3507318 100755 --- a/testcase/syscalls/ltp.syscalls.unlink05.sh +++ b/testcase/syscalls/ltp.syscalls.unlink05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.unlink07.sh b/testcase/syscalls/ltp.syscalls.unlink07.sh index b780f3f..f5e9bcc 100755 --- a/testcase/syscalls/ltp.syscalls.unlink07.sh +++ b/testcase/syscalls/ltp.syscalls.unlink07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.unlink08.sh b/testcase/syscalls/ltp.syscalls.unlink08.sh index 7432b8b..c06a51c 100755 --- a/testcase/syscalls/ltp.syscalls.unlink08.sh +++ b/testcase/syscalls/ltp.syscalls.unlink08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.unlink09.sh b/testcase/syscalls/ltp.syscalls.unlink09.sh index 1b4426f..f9bc162 100755 --- a/testcase/syscalls/ltp.syscalls.unlink09.sh +++ b/testcase/syscalls/ltp.syscalls.unlink09.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.unlinkat01.sh b/testcase/syscalls/ltp.syscalls.unlinkat01.sh index f3f9dc1..8af61da 100755 --- a/testcase/syscalls/ltp.syscalls.unlinkat01.sh +++ b/testcase/syscalls/ltp.syscalls.unlinkat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.unshare01.sh b/testcase/syscalls/ltp.syscalls.unshare01.sh index 7f17876..1fd31c7 100755 --- a/testcase/syscalls/ltp.syscalls.unshare01.sh +++ b/testcase/syscalls/ltp.syscalls.unshare01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.unshare02.sh b/testcase/syscalls/ltp.syscalls.unshare02.sh index 091358a..237f5c3 100755 --- a/testcase/syscalls/ltp.syscalls.unshare02.sh +++ b/testcase/syscalls/ltp.syscalls.unshare02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.userfaultfd01.sh b/testcase/syscalls/ltp.syscalls.userfaultfd01.sh index fbbcb09..4fef3a3 100755 --- a/testcase/syscalls/ltp.syscalls.userfaultfd01.sh +++ b/testcase/syscalls/ltp.syscalls.userfaultfd01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ustat01.sh b/testcase/syscalls/ltp.syscalls.ustat01.sh index 4ddb8db..1bb8a15 100755 --- a/testcase/syscalls/ltp.syscalls.ustat01.sh +++ b/testcase/syscalls/ltp.syscalls.ustat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.ustat02.sh b/testcase/syscalls/ltp.syscalls.ustat02.sh index de16960..9c2f34f 100755 --- a/testcase/syscalls/ltp.syscalls.ustat02.sh +++ b/testcase/syscalls/ltp.syscalls.ustat02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.utime01.sh b/testcase/syscalls/ltp.syscalls.utime01.sh index 14f3462..c169960 100755 --- a/testcase/syscalls/ltp.syscalls.utime01.sh +++ b/testcase/syscalls/ltp.syscalls.utime01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.utime02.sh b/testcase/syscalls/ltp.syscalls.utime02.sh index 1f41baa..b3db9a4 100755 --- a/testcase/syscalls/ltp.syscalls.utime02.sh +++ b/testcase/syscalls/ltp.syscalls.utime02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.utime03.sh b/testcase/syscalls/ltp.syscalls.utime03.sh index f1bab78..cf3d89e 100755 --- a/testcase/syscalls/ltp.syscalls.utime03.sh +++ b/testcase/syscalls/ltp.syscalls.utime03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.utime04.sh b/testcase/syscalls/ltp.syscalls.utime04.sh index d13579c..1f97a0e 100755 --- a/testcase/syscalls/ltp.syscalls.utime04.sh +++ b/testcase/syscalls/ltp.syscalls.utime04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.utime05.sh b/testcase/syscalls/ltp.syscalls.utime05.sh index df1f6ab..adf2f8a 100755 --- a/testcase/syscalls/ltp.syscalls.utime05.sh +++ b/testcase/syscalls/ltp.syscalls.utime05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.utime06.sh b/testcase/syscalls/ltp.syscalls.utime06.sh index 73ecfad..7dacf66 100755 --- a/testcase/syscalls/ltp.syscalls.utime06.sh +++ b/testcase/syscalls/ltp.syscalls.utime06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.utime07.sh b/testcase/syscalls/ltp.syscalls.utime07.sh index c99fae8..c4fa166 100755 --- a/testcase/syscalls/ltp.syscalls.utime07.sh +++ b/testcase/syscalls/ltp.syscalls.utime07.sh @@ -13,12 +13,12 @@ [ -z "$TST_TS_TOPDIR" ] && { TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/tst_common/lib/common.sh" ] && break + [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" done export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### g_tmpdir="$(mktemp -d)" diff --git a/testcase/syscalls/ltp.syscalls.utimensat01.sh b/testcase/syscalls/ltp.syscalls.utimensat01.sh index 0a12c1c..4601b71 100755 --- a/testcase/syscalls/ltp.syscalls.utimensat01.sh +++ b/testcase/syscalls/ltp.syscalls.utimensat01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.utimes01.sh b/testcase/syscalls/ltp.syscalls.utimes01.sh index 67b52df..e8f91d4 100755 --- a/testcase/syscalls/ltp.syscalls.utimes01.sh +++ b/testcase/syscalls/ltp.syscalls.utimes01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.vfork01.sh b/testcase/syscalls/ltp.syscalls.vfork01.sh index a3b7ea2..8630d01 100755 --- a/testcase/syscalls/ltp.syscalls.vfork01.sh +++ b/testcase/syscalls/ltp.syscalls.vfork01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.vfork02.sh b/testcase/syscalls/ltp.syscalls.vfork02.sh index a1476dd..e24f259 100755 --- a/testcase/syscalls/ltp.syscalls.vfork02.sh +++ b/testcase/syscalls/ltp.syscalls.vfork02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.vhangup01.sh b/testcase/syscalls/ltp.syscalls.vhangup01.sh index d027d30..d78204c 100755 --- a/testcase/syscalls/ltp.syscalls.vhangup01.sh +++ b/testcase/syscalls/ltp.syscalls.vhangup01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.vhangup02.sh b/testcase/syscalls/ltp.syscalls.vhangup02.sh index 2574842..60d6c27 100755 --- a/testcase/syscalls/ltp.syscalls.vhangup02.sh +++ b/testcase/syscalls/ltp.syscalls.vhangup02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.vmsplice01.sh b/testcase/syscalls/ltp.syscalls.vmsplice01.sh index 1b8bbfb..59501cb 100755 --- a/testcase/syscalls/ltp.syscalls.vmsplice01.sh +++ b/testcase/syscalls/ltp.syscalls.vmsplice01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.vmsplice02.sh b/testcase/syscalls/ltp.syscalls.vmsplice02.sh index fd11297..3f9c4f8 100755 --- a/testcase/syscalls/ltp.syscalls.vmsplice02.sh +++ b/testcase/syscalls/ltp.syscalls.vmsplice02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.vmsplice03.sh b/testcase/syscalls/ltp.syscalls.vmsplice03.sh index 6a2628b..ac4f95a 100755 --- a/testcase/syscalls/ltp.syscalls.vmsplice03.sh +++ b/testcase/syscalls/ltp.syscalls.vmsplice03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.vmsplice04.sh b/testcase/syscalls/ltp.syscalls.vmsplice04.sh index 1105df4..b9c44e1 100755 --- a/testcase/syscalls/ltp.syscalls.vmsplice04.sh +++ b/testcase/syscalls/ltp.syscalls.vmsplice04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.wait01.sh b/testcase/syscalls/ltp.syscalls.wait01.sh index 3c1f639..afdf3e8 100755 --- a/testcase/syscalls/ltp.syscalls.wait01.sh +++ b/testcase/syscalls/ltp.syscalls.wait01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.wait02.sh b/testcase/syscalls/ltp.syscalls.wait02.sh index 724aaaa..31f4ab8 100755 --- a/testcase/syscalls/ltp.syscalls.wait02.sh +++ b/testcase/syscalls/ltp.syscalls.wait02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.wait401.sh b/testcase/syscalls/ltp.syscalls.wait401.sh index 6acd962..063ac52 100755 --- a/testcase/syscalls/ltp.syscalls.wait401.sh +++ b/testcase/syscalls/ltp.syscalls.wait401.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.wait402.sh b/testcase/syscalls/ltp.syscalls.wait402.sh index b856c5e..d760f41 100755 --- a/testcase/syscalls/ltp.syscalls.wait402.sh +++ b/testcase/syscalls/ltp.syscalls.wait402.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.wait403.sh b/testcase/syscalls/ltp.syscalls.wait403.sh index bf08906..1733287 100755 --- a/testcase/syscalls/ltp.syscalls.wait403.sh +++ b/testcase/syscalls/ltp.syscalls.wait403.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitid01.sh b/testcase/syscalls/ltp.syscalls.waitid01.sh index 9fdd03d..6e17c61 100755 --- a/testcase/syscalls/ltp.syscalls.waitid01.sh +++ b/testcase/syscalls/ltp.syscalls.waitid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitid02.sh b/testcase/syscalls/ltp.syscalls.waitid02.sh index 8bbe833..70718f7 100755 --- a/testcase/syscalls/ltp.syscalls.waitid02.sh +++ b/testcase/syscalls/ltp.syscalls.waitid02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitid03.sh b/testcase/syscalls/ltp.syscalls.waitid03.sh index 83b2e6f..ee053ce 100755 --- a/testcase/syscalls/ltp.syscalls.waitid03.sh +++ b/testcase/syscalls/ltp.syscalls.waitid03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitid04.sh b/testcase/syscalls/ltp.syscalls.waitid04.sh index 5927c90..4403028 100755 --- a/testcase/syscalls/ltp.syscalls.waitid04.sh +++ b/testcase/syscalls/ltp.syscalls.waitid04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitid05.sh b/testcase/syscalls/ltp.syscalls.waitid05.sh index fe8c408..1d89a4e 100755 --- a/testcase/syscalls/ltp.syscalls.waitid05.sh +++ b/testcase/syscalls/ltp.syscalls.waitid05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitid06.sh b/testcase/syscalls/ltp.syscalls.waitid06.sh index 8d66271..de1c922 100755 --- a/testcase/syscalls/ltp.syscalls.waitid06.sh +++ b/testcase/syscalls/ltp.syscalls.waitid06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitid07.sh b/testcase/syscalls/ltp.syscalls.waitid07.sh index 6864a35..269bc6d 100755 --- a/testcase/syscalls/ltp.syscalls.waitid07.sh +++ b/testcase/syscalls/ltp.syscalls.waitid07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitid08.sh b/testcase/syscalls/ltp.syscalls.waitid08.sh index 4aa423a..2d8af50 100755 --- a/testcase/syscalls/ltp.syscalls.waitid08.sh +++ b/testcase/syscalls/ltp.syscalls.waitid08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitid09.sh b/testcase/syscalls/ltp.syscalls.waitid09.sh index 0b1c116..cf6e392 100755 --- a/testcase/syscalls/ltp.syscalls.waitid09.sh +++ b/testcase/syscalls/ltp.syscalls.waitid09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitid10.sh b/testcase/syscalls/ltp.syscalls.waitid10.sh index b47329d..de732fd 100755 --- a/testcase/syscalls/ltp.syscalls.waitid10.sh +++ b/testcase/syscalls/ltp.syscalls.waitid10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitid11.sh b/testcase/syscalls/ltp.syscalls.waitid11.sh index 1fb4278..b1abc94 100755 --- a/testcase/syscalls/ltp.syscalls.waitid11.sh +++ b/testcase/syscalls/ltp.syscalls.waitid11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitpid01.sh b/testcase/syscalls/ltp.syscalls.waitpid01.sh index 61c2aba..2b0d57d 100755 --- a/testcase/syscalls/ltp.syscalls.waitpid01.sh +++ b/testcase/syscalls/ltp.syscalls.waitpid01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitpid03.sh b/testcase/syscalls/ltp.syscalls.waitpid03.sh index f365576..542d1f8 100755 --- a/testcase/syscalls/ltp.syscalls.waitpid03.sh +++ b/testcase/syscalls/ltp.syscalls.waitpid03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitpid04.sh b/testcase/syscalls/ltp.syscalls.waitpid04.sh index 5fe3da2..094cbe1 100755 --- a/testcase/syscalls/ltp.syscalls.waitpid04.sh +++ b/testcase/syscalls/ltp.syscalls.waitpid04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitpid06.sh b/testcase/syscalls/ltp.syscalls.waitpid06.sh index e9dc173..5e36275 100755 --- a/testcase/syscalls/ltp.syscalls.waitpid06.sh +++ b/testcase/syscalls/ltp.syscalls.waitpid06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitpid07.sh b/testcase/syscalls/ltp.syscalls.waitpid07.sh index 577e049..9b0d5a1 100755 --- a/testcase/syscalls/ltp.syscalls.waitpid07.sh +++ b/testcase/syscalls/ltp.syscalls.waitpid07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitpid08.sh b/testcase/syscalls/ltp.syscalls.waitpid08.sh index e9f4cdb..d0c2125 100755 --- a/testcase/syscalls/ltp.syscalls.waitpid08.sh +++ b/testcase/syscalls/ltp.syscalls.waitpid08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitpid09.sh b/testcase/syscalls/ltp.syscalls.waitpid09.sh index f064abf..8b07505 100755 --- a/testcase/syscalls/ltp.syscalls.waitpid09.sh +++ b/testcase/syscalls/ltp.syscalls.waitpid09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitpid10.sh b/testcase/syscalls/ltp.syscalls.waitpid10.sh index 99ae734..5530ab5 100755 --- a/testcase/syscalls/ltp.syscalls.waitpid10.sh +++ b/testcase/syscalls/ltp.syscalls.waitpid10.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitpid11.sh b/testcase/syscalls/ltp.syscalls.waitpid11.sh index c160a06..8cf84a6 100755 --- a/testcase/syscalls/ltp.syscalls.waitpid11.sh +++ b/testcase/syscalls/ltp.syscalls.waitpid11.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitpid12.sh b/testcase/syscalls/ltp.syscalls.waitpid12.sh index e9a1455..a74cd5a 100755 --- a/testcase/syscalls/ltp.syscalls.waitpid12.sh +++ b/testcase/syscalls/ltp.syscalls.waitpid12.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.waitpid13.sh b/testcase/syscalls/ltp.syscalls.waitpid13.sh index cac775b..68de30a 100755 --- a/testcase/syscalls/ltp.syscalls.waitpid13.sh +++ b/testcase/syscalls/ltp.syscalls.waitpid13.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.write01.sh b/testcase/syscalls/ltp.syscalls.write01.sh index e386da2..5d3ec3f 100755 --- a/testcase/syscalls/ltp.syscalls.write01.sh +++ b/testcase/syscalls/ltp.syscalls.write01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.write02.sh b/testcase/syscalls/ltp.syscalls.write02.sh index 373e187..d85a8f5 100755 --- a/testcase/syscalls/ltp.syscalls.write02.sh +++ b/testcase/syscalls/ltp.syscalls.write02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.write03.sh b/testcase/syscalls/ltp.syscalls.write03.sh index 8b3147c..5574124 100755 --- a/testcase/syscalls/ltp.syscalls.write03.sh +++ b/testcase/syscalls/ltp.syscalls.write03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.write04.sh b/testcase/syscalls/ltp.syscalls.write04.sh index 6c8bfc7..a6a4a49 100755 --- a/testcase/syscalls/ltp.syscalls.write04.sh +++ b/testcase/syscalls/ltp.syscalls.write04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.write05.sh b/testcase/syscalls/ltp.syscalls.write05.sh index 6ebd99c..e346ceb 100755 --- a/testcase/syscalls/ltp.syscalls.write05.sh +++ b/testcase/syscalls/ltp.syscalls.write05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.write06.sh b/testcase/syscalls/ltp.syscalls.write06.sh index a22b28f..46f80ec 100755 --- a/testcase/syscalls/ltp.syscalls.write06.sh +++ b/testcase/syscalls/ltp.syscalls.write06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.writev01.sh b/testcase/syscalls/ltp.syscalls.writev01.sh index 46e52d8..388969a 100755 --- a/testcase/syscalls/ltp.syscalls.writev01.sh +++ b/testcase/syscalls/ltp.syscalls.writev01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.writev02.sh b/testcase/syscalls/ltp.syscalls.writev02.sh index 77b7f5e..086926b 100755 --- a/testcase/syscalls/ltp.syscalls.writev02.sh +++ b/testcase/syscalls/ltp.syscalls.writev02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.writev03.sh b/testcase/syscalls/ltp.syscalls.writev03.sh index e3efdbd..ba9e3b7 100755 --- a/testcase/syscalls/ltp.syscalls.writev03.sh +++ b/testcase/syscalls/ltp.syscalls.writev03.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.writev05.sh b/testcase/syscalls/ltp.syscalls.writev05.sh index 9029215..fe247ef 100755 --- a/testcase/syscalls/ltp.syscalls.writev05.sh +++ b/testcase/syscalls/ltp.syscalls.writev05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.writev06.sh b/testcase/syscalls/ltp.syscalls.writev06.sh index e37664f..a2e926c 100755 --- a/testcase/syscalls/ltp.syscalls.writev06.sh +++ b/testcase/syscalls/ltp.syscalls.writev06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/syscalls/ltp.syscalls.writev07.sh b/testcase/syscalls/ltp.syscalls.writev07.sh index e744e63..0b79bd9 100755 --- a/testcase/syscalls/ltp.syscalls.writev07.sh +++ b/testcase/syscalls/ltp.syscalls.writev07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpm01.sh b/testcase/tpm_tools/ltp.tpm_tools.tpm01.sh index 6fe2275..cfef637 100755 --- a/testcase/tpm_tools/ltp.tpm_tools.tpm01.sh +++ b/testcase/tpm_tools/ltp.tpm_tools.tpm01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpm02.sh b/testcase/tpm_tools/ltp.tpm_tools.tpm02.sh index a9a63cd..913690d 100755 --- a/testcase/tpm_tools/ltp.tpm_tools.tpm02.sh +++ b/testcase/tpm_tools/ltp.tpm_tools.tpm02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpm03.sh b/testcase/tpm_tools/ltp.tpm_tools.tpm03.sh index ba84dd3..9c5ee84 100755 --- a/testcase/tpm_tools/ltp.tpm_tools.tpm03.sh +++ b/testcase/tpm_tools/ltp.tpm_tools.tpm03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpm04.sh b/testcase/tpm_tools/ltp.tpm_tools.tpm04.sh index a92e19f..146d890 100755 --- a/testcase/tpm_tools/ltp.tpm_tools.tpm04.sh +++ b/testcase/tpm_tools/ltp.tpm_tools.tpm04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpm05.sh b/testcase/tpm_tools/ltp.tpm_tools.tpm05.sh index 25d6369..15f149c 100755 --- a/testcase/tpm_tools/ltp.tpm_tools.tpm05.sh +++ b/testcase/tpm_tools/ltp.tpm_tools.tpm05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpm06.sh b/testcase/tpm_tools/ltp.tpm_tools.tpm06.sh index fa0acda..d3cbd90 100755 --- a/testcase/tpm_tools/ltp.tpm_tools.tpm06.sh +++ b/testcase/tpm_tools/ltp.tpm_tools.tpm06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpm07.sh b/testcase/tpm_tools/ltp.tpm_tools.tpm07.sh index 1d3c297..2ed125b 100755 --- a/testcase/tpm_tools/ltp.tpm_tools.tpm07.sh +++ b/testcase/tpm_tools/ltp.tpm_tools.tpm07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpmtoken01.sh b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken01.sh index cff3a2c..0c69ab3 100755 --- a/testcase/tpm_tools/ltp.tpm_tools.tpmtoken01.sh +++ b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpmtoken02.sh b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken02.sh index 4a82a09..de81a37 100755 --- a/testcase/tpm_tools/ltp.tpm_tools.tpmtoken02.sh +++ b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpmtoken03.sh b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken03.sh index 38d2a4e..7cb59cb 100755 --- a/testcase/tpm_tools/ltp.tpm_tools.tpmtoken03.sh +++ b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpmtoken04.sh b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken04.sh index 17292ea..3a2dad5 100755 --- a/testcase/tpm_tools/ltp.tpm_tools.tpmtoken04.sh +++ b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tpm_tools/ltp.tpm_tools.tpmtoken05.sh b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken05.sh index f18531f..1d8e070 100755 --- a/testcase/tpm_tools/ltp.tpm_tools.tpmtoken05.sh +++ b/testcase/tpm_tools/ltp.tpm_tools.tpmtoken05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tracing/ltp.tracing.dynamic_debug01.sh b/testcase/tracing/ltp.tracing.dynamic_debug01.sh index a36aae6..f60d57b 100755 --- a/testcase/tracing/ltp.tracing.dynamic_debug01.sh +++ b/testcase/tracing/ltp.tracing.dynamic_debug01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tracing/ltp.tracing.ftrace-stress-test.sh b/testcase/tracing/ltp.tracing.ftrace-stress-test.sh index 8201f90..1a68cef 100755 --- a/testcase/tracing/ltp.tracing.ftrace-stress-test.sh +++ b/testcase/tracing/ltp.tracing.ftrace-stress-test.sh @@ -12,7 +12,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tracing/ltp.tracing.ftrace_regression01.sh b/testcase/tracing/ltp.tracing.ftrace_regression01.sh index 9a0d528..adc973c 100755 --- a/testcase/tracing/ltp.tracing.ftrace_regression01.sh +++ b/testcase/tracing/ltp.tracing.ftrace_regression01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tracing/ltp.tracing.ftrace_regression02.sh b/testcase/tracing/ltp.tracing.ftrace_regression02.sh index c905026..7c4d150 100755 --- a/testcase/tracing/ltp.tracing.ftrace_regression02.sh +++ b/testcase/tracing/ltp.tracing.ftrace_regression02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tracing/ltp.tracing.pt_disable_branch.sh b/testcase/tracing/ltp.tracing.pt_disable_branch.sh index dc065a9..9dcddf6 100755 --- a/testcase/tracing/ltp.tracing.pt_disable_branch.sh +++ b/testcase/tracing/ltp.tracing.pt_disable_branch.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tracing/ltp.tracing.pt_ex_kernel.sh b/testcase/tracing/ltp.tracing.pt_ex_kernel.sh index 0633d0e..5609a06 100755 --- a/testcase/tracing/ltp.tracing.pt_ex_kernel.sh +++ b/testcase/tracing/ltp.tracing.pt_ex_kernel.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tracing/ltp.tracing.pt_ex_user.sh b/testcase/tracing/ltp.tracing.pt_ex_user.sh index c080b08..4a2029d 100755 --- a/testcase/tracing/ltp.tracing.pt_ex_user.sh +++ b/testcase/tracing/ltp.tracing.pt_ex_user.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tracing/ltp.tracing.pt_full_trace_basic.sh b/testcase/tracing/ltp.tracing.pt_full_trace_basic.sh index e3a9b09..cb37fa9 100755 --- a/testcase/tracing/ltp.tracing.pt_full_trace_basic.sh +++ b/testcase/tracing/ltp.tracing.pt_full_trace_basic.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/tracing/ltp.tracing.pt_snapshot_trace_basic.sh b/testcase/tracing/ltp.tracing.pt_snapshot_trace_basic.sh index 183833d..6b96892 100755 --- a/testcase/tracing/ltp.tracing.pt_snapshot_trace_basic.sh +++ b/testcase/tracing/ltp.tracing.pt_snapshot_trace_basic.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/uevent/ltp.uevent.uevent01.sh b/testcase/uevent/ltp.uevent.uevent01.sh index bd57889..d2e765e 100755 --- a/testcase/uevent/ltp.uevent.uevent01.sh +++ b/testcase/uevent/ltp.uevent.uevent01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/uevent/ltp.uevent.uevent02.sh b/testcase/uevent/ltp.uevent.uevent02.sh index 2183d44..da7d0f1 100755 --- a/testcase/uevent/ltp.uevent.uevent02.sh +++ b/testcase/uevent/ltp.uevent.uevent02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/uevent/ltp.uevent.uevent03.sh b/testcase/uevent/ltp.uevent.uevent03.sh index 3f5b72a..d9d30d1 100755 --- a/testcase/uevent/ltp.uevent.uevent03.sh +++ b/testcase/uevent/ltp.uevent.uevent03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue01.sh b/testcase/watchqueue/ltp.watchqueue.wqueue01.sh index 344899f..1810802 100755 --- a/testcase/watchqueue/ltp.watchqueue.wqueue01.sh +++ b/testcase/watchqueue/ltp.watchqueue.wqueue01.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue02.sh b/testcase/watchqueue/ltp.watchqueue.wqueue02.sh index e890770..aeaf292 100755 --- a/testcase/watchqueue/ltp.watchqueue.wqueue02.sh +++ b/testcase/watchqueue/ltp.watchqueue.wqueue02.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue03.sh b/testcase/watchqueue/ltp.watchqueue.wqueue03.sh index 5baa587..eb7f033 100755 --- a/testcase/watchqueue/ltp.watchqueue.wqueue03.sh +++ b/testcase/watchqueue/ltp.watchqueue.wqueue03.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue04.sh b/testcase/watchqueue/ltp.watchqueue.wqueue04.sh index dac1949..1225745 100755 --- a/testcase/watchqueue/ltp.watchqueue.wqueue04.sh +++ b/testcase/watchqueue/ltp.watchqueue.wqueue04.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue05.sh b/testcase/watchqueue/ltp.watchqueue.wqueue05.sh index 6f67ed1..2ce2565 100755 --- a/testcase/watchqueue/ltp.watchqueue.wqueue05.sh +++ b/testcase/watchqueue/ltp.watchqueue.wqueue05.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue06.sh b/testcase/watchqueue/ltp.watchqueue.wqueue06.sh index ccd8f86..a04aa05 100755 --- a/testcase/watchqueue/ltp.watchqueue.wqueue06.sh +++ b/testcase/watchqueue/ltp.watchqueue.wqueue06.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue07.sh b/testcase/watchqueue/ltp.watchqueue.wqueue07.sh index 939ae6e..ea5bd5c 100755 --- a/testcase/watchqueue/ltp.watchqueue.wqueue07.sh +++ b/testcase/watchqueue/ltp.watchqueue.wqueue07.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue08.sh b/testcase/watchqueue/ltp.watchqueue.wqueue08.sh index 3cece75..2dcbf65 100755 --- a/testcase/watchqueue/ltp.watchqueue.wqueue08.sh +++ b/testcase/watchqueue/ltp.watchqueue.wqueue08.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { diff --git a/testcase/watchqueue/ltp.watchqueue.wqueue09.sh b/testcase/watchqueue/ltp.watchqueue.wqueue09.sh index df6676c..76a08f8 100755 --- a/testcase/watchqueue/ltp.watchqueue.wqueue09.sh +++ b/testcase/watchqueue/ltp.watchqueue.wqueue09.sh @@ -11,7 +11,7 @@ TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" export TST_TS_TOPDIR } -source "${TST_TS_TOPDIR}/tst_common/lib/common.sh" || exit 1 +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 ############################################################################### tc_setup() { -- Gitee From 0fa2f09d6a3cd600278ff62dafed8e451eaf8c2b Mon Sep 17 00:00:00 2001 From: propelluo Date: Tue, 22 Jul 2025 11:15:16 +0800 Subject: [PATCH 6/9] add testcase Signed-off-by: propelluo --- testcase/hugetlb/ltp.hugetlb.hugemmap34.sh | 51 +++++++++++++++++++ testcase/hugetlb/ltp.hugetlb.hugeshmget06.sh | 51 +++++++++++++++++++ testcase/kvm/ltp.kvm.kvm_vmx01.sh | 51 +++++++++++++++++++ testcase/kvm/ltp.kvm.kvm_vmx02.sh | 51 +++++++++++++++++++ testcase/mm/ltp.mm.cpuset02.sh | 51 +++++++++++++++++++ testcase/mm/ltp.mm.mmap21_01.sh | 51 +++++++++++++++++++ testcase/mm/ltp.mm.mmap21_02.sh | 51 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs10_v30_ip4t.sh | 51 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs10_v30_ip4u.sh | 51 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs10_v30_ip6t.sh | 51 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs10_v30_ip6u.sh | 51 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs10_v40_ip4t.sh | 51 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs10_v40_ip6t.sh | 51 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs10_v41_ip4t.sh | 51 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs10_v41_ip6t.sh | 51 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs10_v42_ip4t.sh | 51 +++++++++++++++++++ .../net.nfs/ltp.net.nfs.nfs10_v42_ip6t.sh | 51 +++++++++++++++++++ testcase/net.nfs/ltp.net.nfs.nfsstat02.sh | 51 +++++++++++++++++++ testcase/pty/ltp.pty.ptem02.sh | 51 +++++++++++++++++++ testcase/pty/ltp.pty.ptem03.sh | 51 +++++++++++++++++++ testcase/pty/ltp.pty.ptem04.sh | 51 +++++++++++++++++++ testcase/pty/ltp.pty.ptem05.sh | 51 +++++++++++++++++++ testcase/pty/ltp.pty.ptem06.sh | 51 +++++++++++++++++++ testcase/pty/ltp.pty.pty08.sh | 51 +++++++++++++++++++ testcase/pty/ltp.pty.pty09.sh | 51 +++++++++++++++++++ testcase/sched/ltp.sched.sched_football.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.cachestat01.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.cachestat02.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.cachestat03.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.cachestat04.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.chmod08.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.chmod09.sh | 51 +++++++++++++++++++ .../syscalls/ltp.syscalls.epoll_pwait06.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.fanotify24.sh | 51 +++++++++++++++++++ .../syscalls/ltp.syscalls.fchmodat2_01.sh | 51 +++++++++++++++++++ .../syscalls/ltp.syscalls.fchmodat2_02.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.fchownat03.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl40.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.fcntl40_64.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.flock07.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.getcpu02.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.ioctl10.sh | 51 +++++++++++++++++++ .../syscalls/ltp.syscalls.ioctl_ficlone01.sh | 51 +++++++++++++++++++ .../syscalls/ltp.syscalls.ioctl_ficlone02.sh | 51 +++++++++++++++++++ .../syscalls/ltp.syscalls.ioctl_ficlone03.sh | 51 +++++++++++++++++++ .../ltp.syscalls.ioctl_ficlonerange01.sh | 51 +++++++++++++++++++ .../ltp.syscalls.ioctl_ficlonerange02.sh | 51 +++++++++++++++++++ .../syscalls/ltp.syscalls.ioctl_fiemap01.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.landlock01.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.landlock02.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.landlock03.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.landlock04.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.landlock05.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.landlock06.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.landlock07.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.landlock08.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.landlock09.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.landlock10.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.listmount01.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.listmount02.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.listmount03.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.listmount04.sh | 51 +++++++++++++++++++ .../ltp.syscalls.lsm_get_self_attr01.sh | 51 +++++++++++++++++++ .../ltp.syscalls.lsm_get_self_attr02.sh | 51 +++++++++++++++++++ .../ltp.syscalls.lsm_get_self_attr03.sh | 51 +++++++++++++++++++ .../ltp.syscalls.lsm_list_modules01.sh | 51 +++++++++++++++++++ .../ltp.syscalls.lsm_list_modules02.sh | 51 +++++++++++++++++++ .../ltp.syscalls.lsm_set_self_attr01.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.lstat03.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.lstat03_64.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.madvise12.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.mmap21_01.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.mmap21_02.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.mmap22.sh | 51 +++++++++++++++++++ .../syscalls/ltp.syscalls.move_mount03.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.mseal01.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.mseal02.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.munmap04.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.open15.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.pipeio_1.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.pipeio_2.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.pipeio_3.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.pipeio_4.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.pipeio_5.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.pipeio_6.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.pipeio_7.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.pipeio_8.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.rename15.sh | 51 +++++++++++++++++++ .../syscalls/ltp.syscalls.request_key06.sh | 51 +++++++++++++++++++ .../ltp.syscalls.rt_sigqueueinfo02.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.seccomp01.sh | 51 +++++++++++++++++++ .../ltp.syscalls.set_thread_area02.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.shutdown01.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.shutdown02.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.signalfd02.sh | 51 +++++++++++++++++++ .../syscalls/ltp.syscalls.sigsuspend02.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.statmount01.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.statmount02.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.statmount03.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.statmount04.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.statmount05.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.statmount06.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.statmount07.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.statmount08.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.unlink10.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.unshare03.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.unshare04.sh | 51 +++++++++++++++++++ testcase/syscalls/ltp.syscalls.unshare05.sh | 51 +++++++++++++++++++ 108 files changed, 5508 insertions(+) create mode 100644 testcase/hugetlb/ltp.hugetlb.hugemmap34.sh create mode 100644 testcase/hugetlb/ltp.hugetlb.hugeshmget06.sh create mode 100644 testcase/kvm/ltp.kvm.kvm_vmx01.sh create mode 100644 testcase/kvm/ltp.kvm.kvm_vmx02.sh create mode 100644 testcase/mm/ltp.mm.cpuset02.sh create mode 100644 testcase/mm/ltp.mm.mmap21_01.sh create mode 100644 testcase/mm/ltp.mm.mmap21_02.sh create mode 100644 testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip4t.sh create mode 100644 testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip4u.sh create mode 100644 testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip6t.sh create mode 100644 testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip6u.sh create mode 100644 testcase/net.nfs/ltp.net.nfs.nfs10_v40_ip4t.sh create mode 100644 testcase/net.nfs/ltp.net.nfs.nfs10_v40_ip6t.sh create mode 100644 testcase/net.nfs/ltp.net.nfs.nfs10_v41_ip4t.sh create mode 100644 testcase/net.nfs/ltp.net.nfs.nfs10_v41_ip6t.sh create mode 100644 testcase/net.nfs/ltp.net.nfs.nfs10_v42_ip4t.sh create mode 100644 testcase/net.nfs/ltp.net.nfs.nfs10_v42_ip6t.sh create mode 100644 testcase/net.nfs/ltp.net.nfs.nfsstat02.sh create mode 100644 testcase/pty/ltp.pty.ptem02.sh create mode 100644 testcase/pty/ltp.pty.ptem03.sh create mode 100644 testcase/pty/ltp.pty.ptem04.sh create mode 100644 testcase/pty/ltp.pty.ptem05.sh create mode 100644 testcase/pty/ltp.pty.ptem06.sh create mode 100644 testcase/pty/ltp.pty.pty08.sh create mode 100644 testcase/pty/ltp.pty.pty09.sh create mode 100644 testcase/sched/ltp.sched.sched_football.sh create mode 100644 testcase/syscalls/ltp.syscalls.cachestat01.sh create mode 100644 testcase/syscalls/ltp.syscalls.cachestat02.sh create mode 100644 testcase/syscalls/ltp.syscalls.cachestat03.sh create mode 100644 testcase/syscalls/ltp.syscalls.cachestat04.sh create mode 100644 testcase/syscalls/ltp.syscalls.chmod08.sh create mode 100644 testcase/syscalls/ltp.syscalls.chmod09.sh create mode 100644 testcase/syscalls/ltp.syscalls.epoll_pwait06.sh create mode 100644 testcase/syscalls/ltp.syscalls.fanotify24.sh create mode 100644 testcase/syscalls/ltp.syscalls.fchmodat2_01.sh create mode 100644 testcase/syscalls/ltp.syscalls.fchmodat2_02.sh create mode 100644 testcase/syscalls/ltp.syscalls.fchownat03.sh create mode 100644 testcase/syscalls/ltp.syscalls.fcntl40.sh create mode 100644 testcase/syscalls/ltp.syscalls.fcntl40_64.sh create mode 100644 testcase/syscalls/ltp.syscalls.flock07.sh create mode 100644 testcase/syscalls/ltp.syscalls.getcpu02.sh create mode 100644 testcase/syscalls/ltp.syscalls.ioctl10.sh create mode 100644 testcase/syscalls/ltp.syscalls.ioctl_ficlone01.sh create mode 100644 testcase/syscalls/ltp.syscalls.ioctl_ficlone02.sh create mode 100644 testcase/syscalls/ltp.syscalls.ioctl_ficlone03.sh create mode 100644 testcase/syscalls/ltp.syscalls.ioctl_ficlonerange01.sh create mode 100644 testcase/syscalls/ltp.syscalls.ioctl_ficlonerange02.sh create mode 100644 testcase/syscalls/ltp.syscalls.ioctl_fiemap01.sh create mode 100644 testcase/syscalls/ltp.syscalls.landlock01.sh create mode 100644 testcase/syscalls/ltp.syscalls.landlock02.sh create mode 100644 testcase/syscalls/ltp.syscalls.landlock03.sh create mode 100644 testcase/syscalls/ltp.syscalls.landlock04.sh create mode 100644 testcase/syscalls/ltp.syscalls.landlock05.sh create mode 100644 testcase/syscalls/ltp.syscalls.landlock06.sh create mode 100644 testcase/syscalls/ltp.syscalls.landlock07.sh create mode 100644 testcase/syscalls/ltp.syscalls.landlock08.sh create mode 100644 testcase/syscalls/ltp.syscalls.landlock09.sh create mode 100644 testcase/syscalls/ltp.syscalls.landlock10.sh create mode 100644 testcase/syscalls/ltp.syscalls.listmount01.sh create mode 100644 testcase/syscalls/ltp.syscalls.listmount02.sh create mode 100644 testcase/syscalls/ltp.syscalls.listmount03.sh create mode 100644 testcase/syscalls/ltp.syscalls.listmount04.sh create mode 100644 testcase/syscalls/ltp.syscalls.lsm_get_self_attr01.sh create mode 100644 testcase/syscalls/ltp.syscalls.lsm_get_self_attr02.sh create mode 100644 testcase/syscalls/ltp.syscalls.lsm_get_self_attr03.sh create mode 100644 testcase/syscalls/ltp.syscalls.lsm_list_modules01.sh create mode 100644 testcase/syscalls/ltp.syscalls.lsm_list_modules02.sh create mode 100644 testcase/syscalls/ltp.syscalls.lsm_set_self_attr01.sh create mode 100644 testcase/syscalls/ltp.syscalls.lstat03.sh create mode 100644 testcase/syscalls/ltp.syscalls.lstat03_64.sh create mode 100644 testcase/syscalls/ltp.syscalls.madvise12.sh create mode 100644 testcase/syscalls/ltp.syscalls.mmap21_01.sh create mode 100644 testcase/syscalls/ltp.syscalls.mmap21_02.sh create mode 100644 testcase/syscalls/ltp.syscalls.mmap22.sh create mode 100644 testcase/syscalls/ltp.syscalls.move_mount03.sh create mode 100644 testcase/syscalls/ltp.syscalls.mseal01.sh create mode 100644 testcase/syscalls/ltp.syscalls.mseal02.sh create mode 100644 testcase/syscalls/ltp.syscalls.munmap04.sh create mode 100644 testcase/syscalls/ltp.syscalls.open15.sh create mode 100644 testcase/syscalls/ltp.syscalls.pipeio_1.sh create mode 100644 testcase/syscalls/ltp.syscalls.pipeio_2.sh create mode 100644 testcase/syscalls/ltp.syscalls.pipeio_3.sh create mode 100644 testcase/syscalls/ltp.syscalls.pipeio_4.sh create mode 100644 testcase/syscalls/ltp.syscalls.pipeio_5.sh create mode 100644 testcase/syscalls/ltp.syscalls.pipeio_6.sh create mode 100644 testcase/syscalls/ltp.syscalls.pipeio_7.sh create mode 100644 testcase/syscalls/ltp.syscalls.pipeio_8.sh create mode 100644 testcase/syscalls/ltp.syscalls.rename15.sh create mode 100644 testcase/syscalls/ltp.syscalls.request_key06.sh create mode 100644 testcase/syscalls/ltp.syscalls.rt_sigqueueinfo02.sh create mode 100644 testcase/syscalls/ltp.syscalls.seccomp01.sh create mode 100644 testcase/syscalls/ltp.syscalls.set_thread_area02.sh create mode 100644 testcase/syscalls/ltp.syscalls.shutdown01.sh create mode 100644 testcase/syscalls/ltp.syscalls.shutdown02.sh create mode 100644 testcase/syscalls/ltp.syscalls.signalfd02.sh create mode 100644 testcase/syscalls/ltp.syscalls.sigsuspend02.sh create mode 100644 testcase/syscalls/ltp.syscalls.statmount01.sh create mode 100644 testcase/syscalls/ltp.syscalls.statmount02.sh create mode 100644 testcase/syscalls/ltp.syscalls.statmount03.sh create mode 100644 testcase/syscalls/ltp.syscalls.statmount04.sh create mode 100644 testcase/syscalls/ltp.syscalls.statmount05.sh create mode 100644 testcase/syscalls/ltp.syscalls.statmount06.sh create mode 100644 testcase/syscalls/ltp.syscalls.statmount07.sh create mode 100644 testcase/syscalls/ltp.syscalls.statmount08.sh create mode 100644 testcase/syscalls/ltp.syscalls.unlink10.sh create mode 100644 testcase/syscalls/ltp.syscalls.unshare03.sh create mode 100644 testcase/syscalls/ltp.syscalls.unshare04.sh create mode 100644 testcase/syscalls/ltp.syscalls.unshare05.sh diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap34.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap34.sh new file mode 100644 index 0000000..68bfa28 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugemmap34.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110834-963946127 +# @用例名称: ltp.hugetlb.hugemmap34 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugemmap34 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugemmap34 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmget06.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmget06.sh new file mode 100644 index 0000000..e805b38 --- /dev/null +++ b/testcase/hugetlb/ltp.hugetlb.hugeshmget06.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110835-044120886 +# @用例名称: ltp.hugetlb.hugeshmget06 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.hugetlb.hugeshmget06 + # @预期结果:1: 用例返回0 + ltp_run_testcase hugetlb hugeshmget06 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kvm/ltp.kvm.kvm_vmx01.sh b/testcase/kvm/ltp.kvm.kvm_vmx01.sh new file mode 100644 index 0000000..c22d1cf --- /dev/null +++ b/testcase/kvm/ltp.kvm.kvm_vmx01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110835-126930198 +# @用例名称: ltp.kvm.kvm_vmx01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kvm.kvm_vmx01 + # @预期结果:1: 用例返回0 + ltp_run_testcase kvm kvm_vmx01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/kvm/ltp.kvm.kvm_vmx02.sh b/testcase/kvm/ltp.kvm.kvm_vmx02.sh new file mode 100644 index 0000000..73ea5f8 --- /dev/null +++ b/testcase/kvm/ltp.kvm.kvm_vmx02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110835-212071569 +# @用例名称: ltp.kvm.kvm_vmx02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.kvm.kvm_vmx02 + # @预期结果:1: 用例返回0 + ltp_run_testcase kvm kvm_vmx02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.cpuset02.sh b/testcase/mm/ltp.mm.cpuset02.sh new file mode 100644 index 0000000..7ae69ee --- /dev/null +++ b/testcase/mm/ltp.mm.cpuset02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110835-464502387 +# @用例名称: ltp.mm.cpuset02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.cpuset02 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm cpuset02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmap21_01.sh b/testcase/mm/ltp.mm.mmap21_01.sh new file mode 100644 index 0000000..ab965f3 --- /dev/null +++ b/testcase/mm/ltp.mm.mmap21_01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110835-294604466 +# @用例名称: ltp.mm.mmap21_01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmap21_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmap21_01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/mm/ltp.mm.mmap21_02.sh b/testcase/mm/ltp.mm.mmap21_02.sh new file mode 100644 index 0000000..54d1984 --- /dev/null +++ b/testcase/mm/ltp.mm.mmap21_02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110835-377960667 +# @用例名称: ltp.mm.mmap21_02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.mm.mmap21_02 + # @预期结果:1: 用例返回0 + ltp_run_testcase mm mmap21_02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip4t.sh new file mode 100644 index 0000000..4f3f9e4 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip4t.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110835-635221249 +# @用例名称: ltp.net.nfs.nfs10_v30_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs10_v30_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs10_v30_ip4t + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip4u.sh new file mode 100644 index 0000000..2f56fe9 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip4u.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110835-549900553 +# @用例名称: ltp.net.nfs.nfs10_v30_ip4u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs10_v30_ip4u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs10_v30_ip4u + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip6t.sh new file mode 100644 index 0000000..73b4c83 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip6t.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110836-059390738 +# @用例名称: ltp.net.nfs.nfs10_v30_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs10_v30_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs10_v30_ip6t + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip6u.sh new file mode 100644 index 0000000..b2160f0 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip6u.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110835-969244907 +# @用例名称: ltp.net.nfs.nfs10_v30_ip6u +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs10_v30_ip6u + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs10_v30_ip6u + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v40_ip4t.sh new file mode 100644 index 0000000..a33c68b --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs10_v40_ip4t.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110835-717012334 +# @用例名称: ltp.net.nfs.nfs10_v40_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs10_v40_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs10_v40_ip4t + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v40_ip6t.sh new file mode 100644 index 0000000..1d331b5 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs10_v40_ip6t.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110836-146595054 +# @用例名称: ltp.net.nfs.nfs10_v40_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs10_v40_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs10_v40_ip6t + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v41_ip4t.sh new file mode 100644 index 0000000..a46afcf --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs10_v41_ip4t.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110835-800964090 +# @用例名称: ltp.net.nfs.nfs10_v41_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs10_v41_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs10_v41_ip4t + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v41_ip6t.sh new file mode 100644 index 0000000..3246be7 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs10_v41_ip6t.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110836-233004187 +# @用例名称: ltp.net.nfs.nfs10_v41_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs10_v41_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs10_v41_ip6t + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v42_ip4t.sh new file mode 100644 index 0000000..9e5e520 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs10_v42_ip4t.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110835-886502083 +# @用例名称: ltp.net.nfs.nfs10_v42_ip4t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs10_v42_ip4t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs10_v42_ip4t + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v42_ip6t.sh new file mode 100644 index 0000000..57e0f67 --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfs10_v42_ip6t.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110836-317837354 +# @用例名称: ltp.net.nfs.nfs10_v42_ip6t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfs10_v42_ip6t + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfs10_v42_ip6t + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat02.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat02.sh new file mode 100644 index 0000000..e2f2ddd --- /dev/null +++ b/testcase/net.nfs/ltp.net.nfs.nfsstat02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110836-402859569 +# @用例名称: ltp.net.nfs.nfsstat02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.net.nfs.nfsstat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase net.nfs nfsstat02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/pty/ltp.pty.ptem02.sh b/testcase/pty/ltp.pty.ptem02.sh new file mode 100644 index 0000000..eaebde7 --- /dev/null +++ b/testcase/pty/ltp.pty.ptem02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110836-663010328 +# @用例名称: ltp.pty.ptem02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.pty.ptem02 + # @预期结果:1: 用例返回0 + ltp_run_testcase pty ptem02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/pty/ltp.pty.ptem03.sh b/testcase/pty/ltp.pty.ptem03.sh new file mode 100644 index 0000000..6c91fc7 --- /dev/null +++ b/testcase/pty/ltp.pty.ptem03.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110836-748653147 +# @用例名称: ltp.pty.ptem03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.pty.ptem03 + # @预期结果:1: 用例返回0 + ltp_run_testcase pty ptem03 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/pty/ltp.pty.ptem04.sh b/testcase/pty/ltp.pty.ptem04.sh new file mode 100644 index 0000000..608878c --- /dev/null +++ b/testcase/pty/ltp.pty.ptem04.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110836-832461278 +# @用例名称: ltp.pty.ptem04 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.pty.ptem04 + # @预期结果:1: 用例返回0 + ltp_run_testcase pty ptem04 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/pty/ltp.pty.ptem05.sh b/testcase/pty/ltp.pty.ptem05.sh new file mode 100644 index 0000000..1162bb6 --- /dev/null +++ b/testcase/pty/ltp.pty.ptem05.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110836-918700105 +# @用例名称: ltp.pty.ptem05 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.pty.ptem05 + # @预期结果:1: 用例返回0 + ltp_run_testcase pty ptem05 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/pty/ltp.pty.ptem06.sh b/testcase/pty/ltp.pty.ptem06.sh new file mode 100644 index 0000000..d8c65f6 --- /dev/null +++ b/testcase/pty/ltp.pty.ptem06.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110837-003606882 +# @用例名称: ltp.pty.ptem06 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.pty.ptem06 + # @预期结果:1: 用例返回0 + ltp_run_testcase pty ptem06 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/pty/ltp.pty.pty08.sh b/testcase/pty/ltp.pty.pty08.sh new file mode 100644 index 0000000..55b4e36 --- /dev/null +++ b/testcase/pty/ltp.pty.pty08.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110836-489060726 +# @用例名称: ltp.pty.pty08 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.pty.pty08 + # @预期结果:1: 用例返回0 + ltp_run_testcase pty pty08 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/pty/ltp.pty.pty09.sh b/testcase/pty/ltp.pty.pty09.sh new file mode 100644 index 0000000..d3d21bf --- /dev/null +++ b/testcase/pty/ltp.pty.pty09.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110836-575315593 +# @用例名称: ltp.pty.pty09 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.pty.pty09 + # @预期结果:1: 用例返回0 + ltp_run_testcase pty pty09 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/sched/ltp.sched.sched_football.sh b/testcase/sched/ltp.sched.sched_football.sh new file mode 100644 index 0000000..cb579b4 --- /dev/null +++ b/testcase/sched/ltp.sched.sched_football.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110837-090360966 +# @用例名称: ltp.sched.sched_football +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.sched.sched_football + # @预期结果:1: 用例返回0 + ltp_run_testcase sched sched_football + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.cachestat01.sh b/testcase/syscalls/ltp.syscalls.cachestat01.sh new file mode 100644 index 0000000..93f7ef8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.cachestat01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110837-174948519 +# @用例名称: ltp.syscalls.cachestat01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.cachestat01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls cachestat01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.cachestat02.sh b/testcase/syscalls/ltp.syscalls.cachestat02.sh new file mode 100644 index 0000000..bc21432 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.cachestat02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110837-260240787 +# @用例名称: ltp.syscalls.cachestat02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.cachestat02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls cachestat02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.cachestat03.sh b/testcase/syscalls/ltp.syscalls.cachestat03.sh new file mode 100644 index 0000000..34b297c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.cachestat03.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110837-344532647 +# @用例名称: ltp.syscalls.cachestat03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.cachestat03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls cachestat03 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.cachestat04.sh b/testcase/syscalls/ltp.syscalls.cachestat04.sh new file mode 100644 index 0000000..f0c9b4c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.cachestat04.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110837-429798165 +# @用例名称: ltp.syscalls.cachestat04 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.cachestat04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls cachestat04 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chmod08.sh b/testcase/syscalls/ltp.syscalls.chmod08.sh new file mode 100644 index 0000000..831c584 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chmod08.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110837-512917561 +# @用例名称: ltp.syscalls.chmod08 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chmod08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chmod08 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chmod09.sh b/testcase/syscalls/ltp.syscalls.chmod09.sh new file mode 100644 index 0000000..b89cb34 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.chmod09.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110837-596712040 +# @用例名称: ltp.syscalls.chmod09 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.chmod09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls chmod09 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.epoll_pwait06.sh b/testcase/syscalls/ltp.syscalls.epoll_pwait06.sh new file mode 100644 index 0000000..92b019f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.epoll_pwait06.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110837-681791483 +# @用例名称: ltp.syscalls.epoll_pwait06 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.epoll_pwait06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls epoll_pwait06 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fanotify24.sh b/testcase/syscalls/ltp.syscalls.fanotify24.sh new file mode 100644 index 0000000..a3cc79c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fanotify24.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110838-964120343 +# @用例名称: ltp.syscalls.fanotify24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fanotify24 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fanotify24 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchmodat2_01.sh b/testcase/syscalls/ltp.syscalls.fchmodat2_01.sh new file mode 100644 index 0000000..05cdc40 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchmodat2_01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110837-765165432 +# @用例名称: ltp.syscalls.fchmodat2_01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchmodat2_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchmodat2_01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchmodat2_02.sh b/testcase/syscalls/ltp.syscalls.fchmodat2_02.sh new file mode 100644 index 0000000..16fdf59 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchmodat2_02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110837-849877403 +# @用例名称: ltp.syscalls.fchmodat2_02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchmodat2_02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchmodat2_02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fchownat03.sh b/testcase/syscalls/ltp.syscalls.fchownat03.sh new file mode 100644 index 0000000..76c9899 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fchownat03.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110837-934932745 +# @用例名称: ltp.syscalls.fchownat03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fchownat03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fchownat03 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl40.sh b/testcase/syscalls/ltp.syscalls.fcntl40.sh new file mode 100644 index 0000000..0808e13 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl40.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110838-021233491 +# @用例名称: ltp.syscalls.fcntl40 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl40 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl40 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.fcntl40_64.sh b/testcase/syscalls/ltp.syscalls.fcntl40_64.sh new file mode 100644 index 0000000..47a5bee --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.fcntl40_64.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110838-104131751 +# @用例名称: ltp.syscalls.fcntl40_64 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.fcntl40_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls fcntl40_64 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.flock07.sh b/testcase/syscalls/ltp.syscalls.flock07.sh new file mode 100644 index 0000000..08cddef --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.flock07.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110838-190912265 +# @用例名称: ltp.syscalls.flock07 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.flock07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls flock07 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.getcpu02.sh b/testcase/syscalls/ltp.syscalls.getcpu02.sh new file mode 100644 index 0000000..3b0d23b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.getcpu02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110838-275928950 +# @用例名称: ltp.syscalls.getcpu02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.getcpu02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls getcpu02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl10.sh b/testcase/syscalls/ltp.syscalls.ioctl10.sh new file mode 100644 index 0000000..64a02d5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl10.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110838-361432663 +# @用例名称: ltp.syscalls.ioctl10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl10 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ficlone01.sh b/testcase/syscalls/ltp.syscalls.ioctl_ficlone01.sh new file mode 100644 index 0000000..6066e10 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_ficlone01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110838-446402827 +# @用例名称: ltp.syscalls.ioctl_ficlone01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_ficlone01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_ficlone01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ficlone02.sh b/testcase/syscalls/ltp.syscalls.ioctl_ficlone02.sh new file mode 100644 index 0000000..ffa0137 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_ficlone02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110838-533001967 +# @用例名称: ltp.syscalls.ioctl_ficlone02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_ficlone02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_ficlone02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ficlone03.sh b/testcase/syscalls/ltp.syscalls.ioctl_ficlone03.sh new file mode 100644 index 0000000..8195d63 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_ficlone03.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110838-618134068 +# @用例名称: ltp.syscalls.ioctl_ficlone03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_ficlone03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_ficlone03 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ficlonerange01.sh b/testcase/syscalls/ltp.syscalls.ioctl_ficlonerange01.sh new file mode 100644 index 0000000..af9a278 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_ficlonerange01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110838-704057462 +# @用例名称: ltp.syscalls.ioctl_ficlonerange01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_ficlonerange01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_ficlonerange01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ficlonerange02.sh b/testcase/syscalls/ltp.syscalls.ioctl_ficlonerange02.sh new file mode 100644 index 0000000..2be24f2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_ficlonerange02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110838-789954665 +# @用例名称: ltp.syscalls.ioctl_ficlonerange02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_ficlonerange02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_ficlonerange02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.ioctl_fiemap01.sh b/testcase/syscalls/ltp.syscalls.ioctl_fiemap01.sh new file mode 100644 index 0000000..c0d36e9 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.ioctl_fiemap01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110838-878354666 +# @用例名称: ltp.syscalls.ioctl_fiemap01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.ioctl_fiemap01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls ioctl_fiemap01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.landlock01.sh b/testcase/syscalls/ltp.syscalls.landlock01.sh new file mode 100644 index 0000000..115635b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.landlock01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110839-050216253 +# @用例名称: ltp.syscalls.landlock01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.landlock01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls landlock01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.landlock02.sh b/testcase/syscalls/ltp.syscalls.landlock02.sh new file mode 100644 index 0000000..37b4ddb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.landlock02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110839-137066326 +# @用例名称: ltp.syscalls.landlock02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.landlock02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls landlock02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.landlock03.sh b/testcase/syscalls/ltp.syscalls.landlock03.sh new file mode 100644 index 0000000..a41fd42 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.landlock03.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110839-222447213 +# @用例名称: ltp.syscalls.landlock03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.landlock03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls landlock03 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.landlock04.sh b/testcase/syscalls/ltp.syscalls.landlock04.sh new file mode 100644 index 0000000..3158c91 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.landlock04.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110839-308059133 +# @用例名称: ltp.syscalls.landlock04 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.landlock04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls landlock04 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.landlock05.sh b/testcase/syscalls/ltp.syscalls.landlock05.sh new file mode 100644 index 0000000..2608bfe --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.landlock05.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110839-391050380 +# @用例名称: ltp.syscalls.landlock05 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.landlock05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls landlock05 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.landlock06.sh b/testcase/syscalls/ltp.syscalls.landlock06.sh new file mode 100644 index 0000000..e8ac63c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.landlock06.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110839-472104381 +# @用例名称: ltp.syscalls.landlock06 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.landlock06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls landlock06 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.landlock07.sh b/testcase/syscalls/ltp.syscalls.landlock07.sh new file mode 100644 index 0000000..5918418 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.landlock07.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110839-555480550 +# @用例名称: ltp.syscalls.landlock07 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.landlock07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls landlock07 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.landlock08.sh b/testcase/syscalls/ltp.syscalls.landlock08.sh new file mode 100644 index 0000000..6a3a2c5 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.landlock08.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110839-636864883 +# @用例名称: ltp.syscalls.landlock08 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.landlock08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls landlock08 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.landlock09.sh b/testcase/syscalls/ltp.syscalls.landlock09.sh new file mode 100644 index 0000000..87e5de4 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.landlock09.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110839-717929043 +# @用例名称: ltp.syscalls.landlock09 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.landlock09 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls landlock09 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.landlock10.sh b/testcase/syscalls/ltp.syscalls.landlock10.sh new file mode 100644 index 0000000..bde6be1 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.landlock10.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110839-802267743 +# @用例名称: ltp.syscalls.landlock10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.landlock10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls landlock10 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.listmount01.sh b/testcase/syscalls/ltp.syscalls.listmount01.sh new file mode 100644 index 0000000..3142fe6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.listmount01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110839-883584527 +# @用例名称: ltp.syscalls.listmount01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.listmount01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls listmount01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.listmount02.sh b/testcase/syscalls/ltp.syscalls.listmount02.sh new file mode 100644 index 0000000..0dedf2f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.listmount02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110839-968877214 +# @用例名称: ltp.syscalls.listmount02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.listmount02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls listmount02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.listmount03.sh b/testcase/syscalls/ltp.syscalls.listmount03.sh new file mode 100644 index 0000000..5dde475 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.listmount03.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110840-054946395 +# @用例名称: ltp.syscalls.listmount03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.listmount03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls listmount03 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.listmount04.sh b/testcase/syscalls/ltp.syscalls.listmount04.sh new file mode 100644 index 0000000..56ad726 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.listmount04.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110840-140933987 +# @用例名称: ltp.syscalls.listmount04 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.listmount04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls listmount04 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lsm_get_self_attr01.sh b/testcase/syscalls/ltp.syscalls.lsm_get_self_attr01.sh new file mode 100644 index 0000000..e043df0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lsm_get_self_attr01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110840-227056147 +# @用例名称: ltp.syscalls.lsm_get_self_attr01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lsm_get_self_attr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lsm_get_self_attr01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lsm_get_self_attr02.sh b/testcase/syscalls/ltp.syscalls.lsm_get_self_attr02.sh new file mode 100644 index 0000000..5e9608c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lsm_get_self_attr02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110840-309427699 +# @用例名称: ltp.syscalls.lsm_get_self_attr02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lsm_get_self_attr02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lsm_get_self_attr02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lsm_get_self_attr03.sh b/testcase/syscalls/ltp.syscalls.lsm_get_self_attr03.sh new file mode 100644 index 0000000..9b5ec87 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lsm_get_self_attr03.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110840-392590622 +# @用例名称: ltp.syscalls.lsm_get_self_attr03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lsm_get_self_attr03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lsm_get_self_attr03 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lsm_list_modules01.sh b/testcase/syscalls/ltp.syscalls.lsm_list_modules01.sh new file mode 100644 index 0000000..51006eb --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lsm_list_modules01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110840-477852421 +# @用例名称: ltp.syscalls.lsm_list_modules01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lsm_list_modules01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lsm_list_modules01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lsm_list_modules02.sh b/testcase/syscalls/ltp.syscalls.lsm_list_modules02.sh new file mode 100644 index 0000000..5dcdb2c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lsm_list_modules02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110840-561021754 +# @用例名称: ltp.syscalls.lsm_list_modules02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lsm_list_modules02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lsm_list_modules02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lsm_set_self_attr01.sh b/testcase/syscalls/ltp.syscalls.lsm_set_self_attr01.sh new file mode 100644 index 0000000..fb6c4ef --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lsm_set_self_attr01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110840-644965542 +# @用例名称: ltp.syscalls.lsm_set_self_attr01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lsm_set_self_attr01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lsm_set_self_attr01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lstat03.sh b/testcase/syscalls/ltp.syscalls.lstat03.sh new file mode 100644 index 0000000..a7dc274 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lstat03.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110840-728005519 +# @用例名称: ltp.syscalls.lstat03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lstat03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lstat03 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lstat03_64.sh b/testcase/syscalls/ltp.syscalls.lstat03_64.sh new file mode 100644 index 0000000..6f0bebe --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.lstat03_64.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110840-814018531 +# @用例名称: ltp.syscalls.lstat03_64 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.lstat03_64 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls lstat03_64 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.madvise12.sh b/testcase/syscalls/ltp.syscalls.madvise12.sh new file mode 100644 index 0000000..d719280 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.madvise12.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110841-567735743 +# @用例名称: ltp.syscalls.madvise12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.madvise12 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls madvise12 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap21_01.sh b/testcase/syscalls/ltp.syscalls.mmap21_01.sh new file mode 100644 index 0000000..e95e721 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap21_01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110840-900185799 +# @用例名称: ltp.syscalls.mmap21_01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap21_01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap21_01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap21_02.sh b/testcase/syscalls/ltp.syscalls.mmap21_02.sh new file mode 100644 index 0000000..3737856 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap21_02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110840-981547353 +# @用例名称: ltp.syscalls.mmap21_02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap21_02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap21_02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mmap22.sh b/testcase/syscalls/ltp.syscalls.mmap22.sh new file mode 100644 index 0000000..a1775fc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mmap22.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110841-061921718 +# @用例名称: ltp.syscalls.mmap22 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mmap22 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mmap22 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.move_mount03.sh b/testcase/syscalls/ltp.syscalls.move_mount03.sh new file mode 100644 index 0000000..0137317 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.move_mount03.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110841-143352479 +# @用例名称: ltp.syscalls.move_mount03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.move_mount03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls move_mount03 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mseal01.sh b/testcase/syscalls/ltp.syscalls.mseal01.sh new file mode 100644 index 0000000..8e93d80 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mseal01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110841-228902811 +# @用例名称: ltp.syscalls.mseal01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mseal01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mseal01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.mseal02.sh b/testcase/syscalls/ltp.syscalls.mseal02.sh new file mode 100644 index 0000000..4879bf7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.mseal02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110841-314451434 +# @用例名称: ltp.syscalls.mseal02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.mseal02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls mseal02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.munmap04.sh b/testcase/syscalls/ltp.syscalls.munmap04.sh new file mode 100644 index 0000000..edb710e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.munmap04.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110841-401041103 +# @用例名称: ltp.syscalls.munmap04 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.munmap04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls munmap04 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open15.sh b/testcase/syscalls/ltp.syscalls.open15.sh new file mode 100644 index 0000000..c727cf3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.open15.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110841-485756854 +# @用例名称: ltp.syscalls.open15 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.open15 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls open15 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipeio_1.sh b/testcase/syscalls/ltp.syscalls.pipeio_1.sh new file mode 100644 index 0000000..d3df634 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipeio_1.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110841-653470351 +# @用例名称: ltp.syscalls.pipeio_1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipeio_1 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipeio_1 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipeio_2.sh b/testcase/syscalls/ltp.syscalls.pipeio_2.sh new file mode 100644 index 0000000..fb56e26 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipeio_2.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110841-739058382 +# @用例名称: ltp.syscalls.pipeio_2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipeio_2 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipeio_2 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipeio_3.sh b/testcase/syscalls/ltp.syscalls.pipeio_3.sh new file mode 100644 index 0000000..45d925d --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipeio_3.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110841-821235698 +# @用例名称: ltp.syscalls.pipeio_3 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipeio_3 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipeio_3 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipeio_4.sh b/testcase/syscalls/ltp.syscalls.pipeio_4.sh new file mode 100644 index 0000000..4db4554 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipeio_4.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110841-908127100 +# @用例名称: ltp.syscalls.pipeio_4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipeio_4 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipeio_4 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipeio_5.sh b/testcase/syscalls/ltp.syscalls.pipeio_5.sh new file mode 100644 index 0000000..670a3c2 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipeio_5.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110841-989914465 +# @用例名称: ltp.syscalls.pipeio_5 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipeio_5 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipeio_5 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipeio_6.sh b/testcase/syscalls/ltp.syscalls.pipeio_6.sh new file mode 100644 index 0000000..1e30ab8 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipeio_6.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110842-077242068 +# @用例名称: ltp.syscalls.pipeio_6 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipeio_6 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipeio_6 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipeio_7.sh b/testcase/syscalls/ltp.syscalls.pipeio_7.sh new file mode 100644 index 0000000..60dbc35 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipeio_7.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110842-161888750 +# @用例名称: ltp.syscalls.pipeio_7 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipeio_7 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipeio_7 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pipeio_8.sh b/testcase/syscalls/ltp.syscalls.pipeio_8.sh new file mode 100644 index 0000000..8cd3b6e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.pipeio_8.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110842-245065543 +# @用例名称: ltp.syscalls.pipeio_8 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.pipeio_8 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls pipeio_8 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rename15.sh b/testcase/syscalls/ltp.syscalls.rename15.sh new file mode 100644 index 0000000..374a39c --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rename15.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110842-330189284 +# @用例名称: ltp.syscalls.rename15 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rename15 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rename15 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.request_key06.sh b/testcase/syscalls/ltp.syscalls.request_key06.sh new file mode 100644 index 0000000..c4cbe80 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.request_key06.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110842-412038597 +# @用例名称: ltp.syscalls.request_key06 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.request_key06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls request_key06 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rt_sigqueueinfo02.sh b/testcase/syscalls/ltp.syscalls.rt_sigqueueinfo02.sh new file mode 100644 index 0000000..6fb41f3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.rt_sigqueueinfo02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110842-493859851 +# @用例名称: ltp.syscalls.rt_sigqueueinfo02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.rt_sigqueueinfo02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls rt_sigqueueinfo02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.seccomp01.sh b/testcase/syscalls/ltp.syscalls.seccomp01.sh new file mode 100644 index 0000000..2fda543 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.seccomp01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110842-578230239 +# @用例名称: ltp.syscalls.seccomp01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.seccomp01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls seccomp01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.set_thread_area02.sh b/testcase/syscalls/ltp.syscalls.set_thread_area02.sh new file mode 100644 index 0000000..a4422ae --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.set_thread_area02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110842-662467810 +# @用例名称: ltp.syscalls.set_thread_area02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.set_thread_area02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls set_thread_area02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shutdown01.sh b/testcase/syscalls/ltp.syscalls.shutdown01.sh new file mode 100644 index 0000000..4e28cce --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shutdown01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110842-745449068 +# @用例名称: ltp.syscalls.shutdown01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shutdown01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shutdown01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.shutdown02.sh b/testcase/syscalls/ltp.syscalls.shutdown02.sh new file mode 100644 index 0000000..1b7a19a --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.shutdown02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110842-829200769 +# @用例名称: ltp.syscalls.shutdown02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.shutdown02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls shutdown02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.signalfd02.sh b/testcase/syscalls/ltp.syscalls.signalfd02.sh new file mode 100644 index 0000000..8704c93 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.signalfd02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110842-914237362 +# @用例名称: ltp.syscalls.signalfd02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.signalfd02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls signalfd02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.sigsuspend02.sh b/testcase/syscalls/ltp.syscalls.sigsuspend02.sh new file mode 100644 index 0000000..95d1f6b --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.sigsuspend02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110843-000035578 +# @用例名称: ltp.syscalls.sigsuspend02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.sigsuspend02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls sigsuspend02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statmount01.sh b/testcase/syscalls/ltp.syscalls.statmount01.sh new file mode 100644 index 0000000..ff51b96 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statmount01.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110843-084978174 +# @用例名称: ltp.syscalls.statmount01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statmount01 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statmount01 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statmount02.sh b/testcase/syscalls/ltp.syscalls.statmount02.sh new file mode 100644 index 0000000..8cad1a0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statmount02.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110843-170558295 +# @用例名称: ltp.syscalls.statmount02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statmount02 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statmount02 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statmount03.sh b/testcase/syscalls/ltp.syscalls.statmount03.sh new file mode 100644 index 0000000..2575acc --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statmount03.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110843-258580313 +# @用例名称: ltp.syscalls.statmount03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statmount03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statmount03 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statmount04.sh b/testcase/syscalls/ltp.syscalls.statmount04.sh new file mode 100644 index 0000000..374f654 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statmount04.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110843-344129526 +# @用例名称: ltp.syscalls.statmount04 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statmount04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statmount04 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statmount05.sh b/testcase/syscalls/ltp.syscalls.statmount05.sh new file mode 100644 index 0000000..81e0ae3 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statmount05.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110843-428291698 +# @用例名称: ltp.syscalls.statmount05 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statmount05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statmount05 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statmount06.sh b/testcase/syscalls/ltp.syscalls.statmount06.sh new file mode 100644 index 0000000..06981c6 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statmount06.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110843-513921658 +# @用例名称: ltp.syscalls.statmount06 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statmount06 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statmount06 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statmount07.sh b/testcase/syscalls/ltp.syscalls.statmount07.sh new file mode 100644 index 0000000..37d732f --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statmount07.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110843-598366234 +# @用例名称: ltp.syscalls.statmount07 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statmount07 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statmount07 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.statmount08.sh b/testcase/syscalls/ltp.syscalls.statmount08.sh new file mode 100644 index 0000000..895f088 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.statmount08.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110843-683226971 +# @用例名称: ltp.syscalls.statmount08 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.statmount08 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls statmount08 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.unlink10.sh b/testcase/syscalls/ltp.syscalls.unlink10.sh new file mode 100644 index 0000000..b46bb92 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.unlink10.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110843-766795787 +# @用例名称: ltp.syscalls.unlink10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.unlink10 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls unlink10 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.unshare03.sh b/testcase/syscalls/ltp.syscalls.unshare03.sh new file mode 100644 index 0000000..da71de7 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.unshare03.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110843-854262687 +# @用例名称: ltp.syscalls.unshare03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.unshare03 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls unshare03 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.unshare04.sh b/testcase/syscalls/ltp.syscalls.unshare04.sh new file mode 100644 index 0000000..fdd1e7e --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.unshare04.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110843-937589527 +# @用例名称: ltp.syscalls.unshare04 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.unshare04 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls unshare04 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.unshare05.sh b/testcase/syscalls/ltp.syscalls.unshare05.sh new file mode 100644 index 0000000..09053e0 --- /dev/null +++ b/testcase/syscalls/ltp.syscalls.unshare05.sh @@ -0,0 +1,51 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20250722-110844-020052917 +# @用例名称: ltp.syscalls.unshare05 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: TODO: 简要描述用例测试的内容 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + # @预置条件: + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行用例ltp.syscalls.unshare05 + # @预期结果:1: 用例返回0 + ltp_run_testcase syscalls unshare05 + assert_true [ $? -eq 0 ] + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### -- Gitee From 2eb2230bdeb36a2dfaba022e716eaedc68e9a208 Mon Sep 17 00:00:00 2001 From: propelluo Date: Tue, 22 Jul 2025 11:21:38 +0800 Subject: [PATCH 7/9] add execute permission for added testcase Signed-off-by: propelluo --- testcase/hugetlb/ltp.hugetlb.hugemmap34.sh | 0 testcase/hugetlb/ltp.hugetlb.hugeshmget06.sh | 0 testcase/kvm/ltp.kvm.kvm_vmx01.sh | 0 testcase/kvm/ltp.kvm.kvm_vmx02.sh | 0 testcase/mm/ltp.mm.cpuset02.sh | 0 testcase/mm/ltp.mm.mmap21_01.sh | 0 testcase/mm/ltp.mm.mmap21_02.sh | 0 testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip4t.sh | 0 testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip4u.sh | 0 testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip6t.sh | 0 testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip6u.sh | 0 testcase/net.nfs/ltp.net.nfs.nfs10_v40_ip4t.sh | 0 testcase/net.nfs/ltp.net.nfs.nfs10_v40_ip6t.sh | 0 testcase/net.nfs/ltp.net.nfs.nfs10_v41_ip4t.sh | 0 testcase/net.nfs/ltp.net.nfs.nfs10_v41_ip6t.sh | 0 testcase/net.nfs/ltp.net.nfs.nfs10_v42_ip4t.sh | 0 testcase/net.nfs/ltp.net.nfs.nfs10_v42_ip6t.sh | 0 testcase/net.nfs/ltp.net.nfs.nfsstat02.sh | 0 testcase/pty/ltp.pty.ptem02.sh | 0 testcase/pty/ltp.pty.ptem03.sh | 0 testcase/pty/ltp.pty.ptem04.sh | 0 testcase/pty/ltp.pty.ptem05.sh | 0 testcase/pty/ltp.pty.ptem06.sh | 0 testcase/pty/ltp.pty.pty08.sh | 0 testcase/pty/ltp.pty.pty09.sh | 0 testcase/sched/ltp.sched.sched_football.sh | 0 testcase/syscalls/ltp.syscalls.cachestat01.sh | 0 testcase/syscalls/ltp.syscalls.cachestat02.sh | 0 testcase/syscalls/ltp.syscalls.cachestat03.sh | 0 testcase/syscalls/ltp.syscalls.cachestat04.sh | 0 testcase/syscalls/ltp.syscalls.chmod08.sh | 0 testcase/syscalls/ltp.syscalls.chmod09.sh | 0 testcase/syscalls/ltp.syscalls.epoll_pwait06.sh | 0 testcase/syscalls/ltp.syscalls.fanotify24.sh | 0 testcase/syscalls/ltp.syscalls.fchmodat2_01.sh | 0 testcase/syscalls/ltp.syscalls.fchmodat2_02.sh | 0 testcase/syscalls/ltp.syscalls.fchownat03.sh | 0 testcase/syscalls/ltp.syscalls.fcntl40.sh | 0 testcase/syscalls/ltp.syscalls.fcntl40_64.sh | 0 testcase/syscalls/ltp.syscalls.flock07.sh | 0 testcase/syscalls/ltp.syscalls.getcpu02.sh | 0 testcase/syscalls/ltp.syscalls.ioctl10.sh | 0 testcase/syscalls/ltp.syscalls.ioctl_ficlone01.sh | 0 testcase/syscalls/ltp.syscalls.ioctl_ficlone02.sh | 0 testcase/syscalls/ltp.syscalls.ioctl_ficlone03.sh | 0 testcase/syscalls/ltp.syscalls.ioctl_ficlonerange01.sh | 0 testcase/syscalls/ltp.syscalls.ioctl_ficlonerange02.sh | 0 testcase/syscalls/ltp.syscalls.ioctl_fiemap01.sh | 0 testcase/syscalls/ltp.syscalls.landlock01.sh | 0 testcase/syscalls/ltp.syscalls.landlock02.sh | 0 testcase/syscalls/ltp.syscalls.landlock03.sh | 0 testcase/syscalls/ltp.syscalls.landlock04.sh | 0 testcase/syscalls/ltp.syscalls.landlock05.sh | 0 testcase/syscalls/ltp.syscalls.landlock06.sh | 0 testcase/syscalls/ltp.syscalls.landlock07.sh | 0 testcase/syscalls/ltp.syscalls.landlock08.sh | 0 testcase/syscalls/ltp.syscalls.landlock09.sh | 0 testcase/syscalls/ltp.syscalls.landlock10.sh | 0 testcase/syscalls/ltp.syscalls.listmount01.sh | 0 testcase/syscalls/ltp.syscalls.listmount02.sh | 0 testcase/syscalls/ltp.syscalls.listmount03.sh | 0 testcase/syscalls/ltp.syscalls.listmount04.sh | 0 testcase/syscalls/ltp.syscalls.lsm_get_self_attr01.sh | 0 testcase/syscalls/ltp.syscalls.lsm_get_self_attr02.sh | 0 testcase/syscalls/ltp.syscalls.lsm_get_self_attr03.sh | 0 testcase/syscalls/ltp.syscalls.lsm_list_modules01.sh | 0 testcase/syscalls/ltp.syscalls.lsm_list_modules02.sh | 0 testcase/syscalls/ltp.syscalls.lsm_set_self_attr01.sh | 0 testcase/syscalls/ltp.syscalls.lstat03.sh | 0 testcase/syscalls/ltp.syscalls.lstat03_64.sh | 0 testcase/syscalls/ltp.syscalls.madvise12.sh | 0 testcase/syscalls/ltp.syscalls.mmap21_01.sh | 0 testcase/syscalls/ltp.syscalls.mmap21_02.sh | 0 testcase/syscalls/ltp.syscalls.mmap22.sh | 0 testcase/syscalls/ltp.syscalls.move_mount03.sh | 0 testcase/syscalls/ltp.syscalls.mseal01.sh | 0 testcase/syscalls/ltp.syscalls.mseal02.sh | 0 testcase/syscalls/ltp.syscalls.munmap04.sh | 0 testcase/syscalls/ltp.syscalls.open15.sh | 0 testcase/syscalls/ltp.syscalls.pipeio_1.sh | 0 testcase/syscalls/ltp.syscalls.pipeio_2.sh | 0 testcase/syscalls/ltp.syscalls.pipeio_3.sh | 0 testcase/syscalls/ltp.syscalls.pipeio_4.sh | 0 testcase/syscalls/ltp.syscalls.pipeio_5.sh | 0 testcase/syscalls/ltp.syscalls.pipeio_6.sh | 0 testcase/syscalls/ltp.syscalls.pipeio_7.sh | 0 testcase/syscalls/ltp.syscalls.pipeio_8.sh | 0 testcase/syscalls/ltp.syscalls.rename15.sh | 0 testcase/syscalls/ltp.syscalls.request_key06.sh | 0 testcase/syscalls/ltp.syscalls.rt_sigqueueinfo02.sh | 0 testcase/syscalls/ltp.syscalls.seccomp01.sh | 0 testcase/syscalls/ltp.syscalls.set_thread_area02.sh | 0 testcase/syscalls/ltp.syscalls.shutdown01.sh | 0 testcase/syscalls/ltp.syscalls.shutdown02.sh | 0 testcase/syscalls/ltp.syscalls.signalfd02.sh | 0 testcase/syscalls/ltp.syscalls.sigsuspend02.sh | 0 testcase/syscalls/ltp.syscalls.statmount01.sh | 0 testcase/syscalls/ltp.syscalls.statmount02.sh | 0 testcase/syscalls/ltp.syscalls.statmount03.sh | 0 testcase/syscalls/ltp.syscalls.statmount04.sh | 0 testcase/syscalls/ltp.syscalls.statmount05.sh | 0 testcase/syscalls/ltp.syscalls.statmount06.sh | 0 testcase/syscalls/ltp.syscalls.statmount07.sh | 0 testcase/syscalls/ltp.syscalls.statmount08.sh | 0 testcase/syscalls/ltp.syscalls.unlink10.sh | 0 testcase/syscalls/ltp.syscalls.unshare03.sh | 0 testcase/syscalls/ltp.syscalls.unshare04.sh | 0 testcase/syscalls/ltp.syscalls.unshare05.sh | 0 108 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 testcase/hugetlb/ltp.hugetlb.hugemmap34.sh mode change 100644 => 100755 testcase/hugetlb/ltp.hugetlb.hugeshmget06.sh mode change 100644 => 100755 testcase/kvm/ltp.kvm.kvm_vmx01.sh mode change 100644 => 100755 testcase/kvm/ltp.kvm.kvm_vmx02.sh mode change 100644 => 100755 testcase/mm/ltp.mm.cpuset02.sh mode change 100644 => 100755 testcase/mm/ltp.mm.mmap21_01.sh mode change 100644 => 100755 testcase/mm/ltp.mm.mmap21_02.sh mode change 100644 => 100755 testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip4t.sh mode change 100644 => 100755 testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip4u.sh mode change 100644 => 100755 testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip6t.sh mode change 100644 => 100755 testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip6u.sh mode change 100644 => 100755 testcase/net.nfs/ltp.net.nfs.nfs10_v40_ip4t.sh mode change 100644 => 100755 testcase/net.nfs/ltp.net.nfs.nfs10_v40_ip6t.sh mode change 100644 => 100755 testcase/net.nfs/ltp.net.nfs.nfs10_v41_ip4t.sh mode change 100644 => 100755 testcase/net.nfs/ltp.net.nfs.nfs10_v41_ip6t.sh mode change 100644 => 100755 testcase/net.nfs/ltp.net.nfs.nfs10_v42_ip4t.sh mode change 100644 => 100755 testcase/net.nfs/ltp.net.nfs.nfs10_v42_ip6t.sh mode change 100644 => 100755 testcase/net.nfs/ltp.net.nfs.nfsstat02.sh mode change 100644 => 100755 testcase/pty/ltp.pty.ptem02.sh mode change 100644 => 100755 testcase/pty/ltp.pty.ptem03.sh mode change 100644 => 100755 testcase/pty/ltp.pty.ptem04.sh mode change 100644 => 100755 testcase/pty/ltp.pty.ptem05.sh mode change 100644 => 100755 testcase/pty/ltp.pty.ptem06.sh mode change 100644 => 100755 testcase/pty/ltp.pty.pty08.sh mode change 100644 => 100755 testcase/pty/ltp.pty.pty09.sh mode change 100644 => 100755 testcase/sched/ltp.sched.sched_football.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.cachestat01.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.cachestat02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.cachestat03.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.cachestat04.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.chmod08.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.chmod09.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.epoll_pwait06.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.fanotify24.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.fchmodat2_01.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.fchmodat2_02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.fchownat03.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.fcntl40.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.fcntl40_64.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.flock07.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.getcpu02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.ioctl10.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.ioctl_ficlone01.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.ioctl_ficlone02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.ioctl_ficlone03.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.ioctl_ficlonerange01.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.ioctl_ficlonerange02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.ioctl_fiemap01.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.landlock01.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.landlock02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.landlock03.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.landlock04.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.landlock05.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.landlock06.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.landlock07.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.landlock08.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.landlock09.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.landlock10.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.listmount01.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.listmount02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.listmount03.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.listmount04.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.lsm_get_self_attr01.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.lsm_get_self_attr02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.lsm_get_self_attr03.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.lsm_list_modules01.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.lsm_list_modules02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.lsm_set_self_attr01.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.lstat03.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.lstat03_64.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.madvise12.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.mmap21_01.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.mmap21_02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.mmap22.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.move_mount03.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.mseal01.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.mseal02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.munmap04.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.open15.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.pipeio_1.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.pipeio_2.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.pipeio_3.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.pipeio_4.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.pipeio_5.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.pipeio_6.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.pipeio_7.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.pipeio_8.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.rename15.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.request_key06.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.rt_sigqueueinfo02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.seccomp01.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.set_thread_area02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.shutdown01.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.shutdown02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.signalfd02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.sigsuspend02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.statmount01.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.statmount02.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.statmount03.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.statmount04.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.statmount05.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.statmount06.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.statmount07.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.statmount08.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.unlink10.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.unshare03.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.unshare04.sh mode change 100644 => 100755 testcase/syscalls/ltp.syscalls.unshare05.sh diff --git a/testcase/hugetlb/ltp.hugetlb.hugemmap34.sh b/testcase/hugetlb/ltp.hugetlb.hugemmap34.sh old mode 100644 new mode 100755 diff --git a/testcase/hugetlb/ltp.hugetlb.hugeshmget06.sh b/testcase/hugetlb/ltp.hugetlb.hugeshmget06.sh old mode 100644 new mode 100755 diff --git a/testcase/kvm/ltp.kvm.kvm_vmx01.sh b/testcase/kvm/ltp.kvm.kvm_vmx01.sh old mode 100644 new mode 100755 diff --git a/testcase/kvm/ltp.kvm.kvm_vmx02.sh b/testcase/kvm/ltp.kvm.kvm_vmx02.sh old mode 100644 new mode 100755 diff --git a/testcase/mm/ltp.mm.cpuset02.sh b/testcase/mm/ltp.mm.cpuset02.sh old mode 100644 new mode 100755 diff --git a/testcase/mm/ltp.mm.mmap21_01.sh b/testcase/mm/ltp.mm.mmap21_01.sh old mode 100644 new mode 100755 diff --git a/testcase/mm/ltp.mm.mmap21_02.sh b/testcase/mm/ltp.mm.mmap21_02.sh old mode 100644 new mode 100755 diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip4t.sh old mode 100644 new mode 100755 diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip4u.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip4u.sh old mode 100644 new mode 100755 diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip6t.sh old mode 100644 new mode 100755 diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip6u.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v30_ip6u.sh old mode 100644 new mode 100755 diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v40_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v40_ip4t.sh old mode 100644 new mode 100755 diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v40_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v40_ip6t.sh old mode 100644 new mode 100755 diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v41_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v41_ip4t.sh old mode 100644 new mode 100755 diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v41_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v41_ip6t.sh old mode 100644 new mode 100755 diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v42_ip4t.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v42_ip4t.sh old mode 100644 new mode 100755 diff --git a/testcase/net.nfs/ltp.net.nfs.nfs10_v42_ip6t.sh b/testcase/net.nfs/ltp.net.nfs.nfs10_v42_ip6t.sh old mode 100644 new mode 100755 diff --git a/testcase/net.nfs/ltp.net.nfs.nfsstat02.sh b/testcase/net.nfs/ltp.net.nfs.nfsstat02.sh old mode 100644 new mode 100755 diff --git a/testcase/pty/ltp.pty.ptem02.sh b/testcase/pty/ltp.pty.ptem02.sh old mode 100644 new mode 100755 diff --git a/testcase/pty/ltp.pty.ptem03.sh b/testcase/pty/ltp.pty.ptem03.sh old mode 100644 new mode 100755 diff --git a/testcase/pty/ltp.pty.ptem04.sh b/testcase/pty/ltp.pty.ptem04.sh old mode 100644 new mode 100755 diff --git a/testcase/pty/ltp.pty.ptem05.sh b/testcase/pty/ltp.pty.ptem05.sh old mode 100644 new mode 100755 diff --git a/testcase/pty/ltp.pty.ptem06.sh b/testcase/pty/ltp.pty.ptem06.sh old mode 100644 new mode 100755 diff --git a/testcase/pty/ltp.pty.pty08.sh b/testcase/pty/ltp.pty.pty08.sh old mode 100644 new mode 100755 diff --git a/testcase/pty/ltp.pty.pty09.sh b/testcase/pty/ltp.pty.pty09.sh old mode 100644 new mode 100755 diff --git a/testcase/sched/ltp.sched.sched_football.sh b/testcase/sched/ltp.sched.sched_football.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.cachestat01.sh b/testcase/syscalls/ltp.syscalls.cachestat01.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.cachestat02.sh b/testcase/syscalls/ltp.syscalls.cachestat02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.cachestat03.sh b/testcase/syscalls/ltp.syscalls.cachestat03.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.cachestat04.sh b/testcase/syscalls/ltp.syscalls.cachestat04.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.chmod08.sh b/testcase/syscalls/ltp.syscalls.chmod08.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.chmod09.sh b/testcase/syscalls/ltp.syscalls.chmod09.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.epoll_pwait06.sh b/testcase/syscalls/ltp.syscalls.epoll_pwait06.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.fanotify24.sh b/testcase/syscalls/ltp.syscalls.fanotify24.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.fchmodat2_01.sh b/testcase/syscalls/ltp.syscalls.fchmodat2_01.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.fchmodat2_02.sh b/testcase/syscalls/ltp.syscalls.fchmodat2_02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.fchownat03.sh b/testcase/syscalls/ltp.syscalls.fchownat03.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.fcntl40.sh b/testcase/syscalls/ltp.syscalls.fcntl40.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.fcntl40_64.sh b/testcase/syscalls/ltp.syscalls.fcntl40_64.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.flock07.sh b/testcase/syscalls/ltp.syscalls.flock07.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.getcpu02.sh b/testcase/syscalls/ltp.syscalls.getcpu02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.ioctl10.sh b/testcase/syscalls/ltp.syscalls.ioctl10.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ficlone01.sh b/testcase/syscalls/ltp.syscalls.ioctl_ficlone01.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ficlone02.sh b/testcase/syscalls/ltp.syscalls.ioctl_ficlone02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ficlone03.sh b/testcase/syscalls/ltp.syscalls.ioctl_ficlone03.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ficlonerange01.sh b/testcase/syscalls/ltp.syscalls.ioctl_ficlonerange01.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.ioctl_ficlonerange02.sh b/testcase/syscalls/ltp.syscalls.ioctl_ficlonerange02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.ioctl_fiemap01.sh b/testcase/syscalls/ltp.syscalls.ioctl_fiemap01.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.landlock01.sh b/testcase/syscalls/ltp.syscalls.landlock01.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.landlock02.sh b/testcase/syscalls/ltp.syscalls.landlock02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.landlock03.sh b/testcase/syscalls/ltp.syscalls.landlock03.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.landlock04.sh b/testcase/syscalls/ltp.syscalls.landlock04.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.landlock05.sh b/testcase/syscalls/ltp.syscalls.landlock05.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.landlock06.sh b/testcase/syscalls/ltp.syscalls.landlock06.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.landlock07.sh b/testcase/syscalls/ltp.syscalls.landlock07.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.landlock08.sh b/testcase/syscalls/ltp.syscalls.landlock08.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.landlock09.sh b/testcase/syscalls/ltp.syscalls.landlock09.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.landlock10.sh b/testcase/syscalls/ltp.syscalls.landlock10.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.listmount01.sh b/testcase/syscalls/ltp.syscalls.listmount01.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.listmount02.sh b/testcase/syscalls/ltp.syscalls.listmount02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.listmount03.sh b/testcase/syscalls/ltp.syscalls.listmount03.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.listmount04.sh b/testcase/syscalls/ltp.syscalls.listmount04.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.lsm_get_self_attr01.sh b/testcase/syscalls/ltp.syscalls.lsm_get_self_attr01.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.lsm_get_self_attr02.sh b/testcase/syscalls/ltp.syscalls.lsm_get_self_attr02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.lsm_get_self_attr03.sh b/testcase/syscalls/ltp.syscalls.lsm_get_self_attr03.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.lsm_list_modules01.sh b/testcase/syscalls/ltp.syscalls.lsm_list_modules01.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.lsm_list_modules02.sh b/testcase/syscalls/ltp.syscalls.lsm_list_modules02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.lsm_set_self_attr01.sh b/testcase/syscalls/ltp.syscalls.lsm_set_self_attr01.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.lstat03.sh b/testcase/syscalls/ltp.syscalls.lstat03.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.lstat03_64.sh b/testcase/syscalls/ltp.syscalls.lstat03_64.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.madvise12.sh b/testcase/syscalls/ltp.syscalls.madvise12.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.mmap21_01.sh b/testcase/syscalls/ltp.syscalls.mmap21_01.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.mmap21_02.sh b/testcase/syscalls/ltp.syscalls.mmap21_02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.mmap22.sh b/testcase/syscalls/ltp.syscalls.mmap22.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.move_mount03.sh b/testcase/syscalls/ltp.syscalls.move_mount03.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.mseal01.sh b/testcase/syscalls/ltp.syscalls.mseal01.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.mseal02.sh b/testcase/syscalls/ltp.syscalls.mseal02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.munmap04.sh b/testcase/syscalls/ltp.syscalls.munmap04.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.open15.sh b/testcase/syscalls/ltp.syscalls.open15.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.pipeio_1.sh b/testcase/syscalls/ltp.syscalls.pipeio_1.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.pipeio_2.sh b/testcase/syscalls/ltp.syscalls.pipeio_2.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.pipeio_3.sh b/testcase/syscalls/ltp.syscalls.pipeio_3.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.pipeio_4.sh b/testcase/syscalls/ltp.syscalls.pipeio_4.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.pipeio_5.sh b/testcase/syscalls/ltp.syscalls.pipeio_5.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.pipeio_6.sh b/testcase/syscalls/ltp.syscalls.pipeio_6.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.pipeio_7.sh b/testcase/syscalls/ltp.syscalls.pipeio_7.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.pipeio_8.sh b/testcase/syscalls/ltp.syscalls.pipeio_8.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.rename15.sh b/testcase/syscalls/ltp.syscalls.rename15.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.request_key06.sh b/testcase/syscalls/ltp.syscalls.request_key06.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.rt_sigqueueinfo02.sh b/testcase/syscalls/ltp.syscalls.rt_sigqueueinfo02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.seccomp01.sh b/testcase/syscalls/ltp.syscalls.seccomp01.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.set_thread_area02.sh b/testcase/syscalls/ltp.syscalls.set_thread_area02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.shutdown01.sh b/testcase/syscalls/ltp.syscalls.shutdown01.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.shutdown02.sh b/testcase/syscalls/ltp.syscalls.shutdown02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.signalfd02.sh b/testcase/syscalls/ltp.syscalls.signalfd02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.sigsuspend02.sh b/testcase/syscalls/ltp.syscalls.sigsuspend02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.statmount01.sh b/testcase/syscalls/ltp.syscalls.statmount01.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.statmount02.sh b/testcase/syscalls/ltp.syscalls.statmount02.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.statmount03.sh b/testcase/syscalls/ltp.syscalls.statmount03.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.statmount04.sh b/testcase/syscalls/ltp.syscalls.statmount04.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.statmount05.sh b/testcase/syscalls/ltp.syscalls.statmount05.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.statmount06.sh b/testcase/syscalls/ltp.syscalls.statmount06.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.statmount07.sh b/testcase/syscalls/ltp.syscalls.statmount07.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.statmount08.sh b/testcase/syscalls/ltp.syscalls.statmount08.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.unlink10.sh b/testcase/syscalls/ltp.syscalls.unlink10.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.unshare03.sh b/testcase/syscalls/ltp.syscalls.unshare03.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.unshare04.sh b/testcase/syscalls/ltp.syscalls.unshare04.sh old mode 100644 new mode 100755 diff --git a/testcase/syscalls/ltp.syscalls.unshare05.sh b/testcase/syscalls/ltp.syscalls.unshare05.sh old mode 100644 new mode 100755 -- Gitee From 3a20e07e23112ecfe246c3111587cbea1db1326c Mon Sep 17 00:00:00 2001 From: propelluo Date: Tue, 22 Jul 2025 11:25:00 +0800 Subject: [PATCH 8/9] delete testcase Signed-off-by: propelluo --- .../commands/ltp.commands.logrotate_sh.sh | 41 --------------- testcase/ipc/ltp.ipc.pipeio_1.sh | 41 --------------- testcase/ipc/ltp.ipc.pipeio_3.sh | 41 --------------- testcase/ipc/ltp.ipc.pipeio_4.sh | 41 --------------- testcase/ipc/ltp.ipc.pipeio_5.sh | 41 --------------- testcase/ipc/ltp.ipc.pipeio_6.sh | 41 --------------- testcase/ipc/ltp.ipc.pipeio_8.sh | 41 --------------- testcase/mm/ltp.mm.mm01.sh | 41 --------------- testcase/mm/ltp.mm.mm02.sh | 41 --------------- testcase/mm/ltp.mm.mmap10_2.sh | 41 --------------- testcase/mm/ltp.mm.mmap10_3.sh | 41 --------------- testcase/mm/ltp.mm.mmap10_4.sh | 41 --------------- testcase/mm/ltp.mm.shmt06.sh | 41 --------------- testcase/net.tcp_cmds/ltp.net.tcp_cmds.ftp.sh | 42 --------------- testcase/smoketest/ltp.smoketest.rename01A.sh | 41 --------------- testcase/smoketest/ltp.smoketest.symlink01.sh | 41 --------------- testcase/smoketest/ltp.smoketest.utime07.sh | 52 ------------------- testcase/syscalls/ltp.syscalls.chdir01A.sh | 41 --------------- testcase/syscalls/ltp.syscalls.chmod01A.sh | 41 --------------- testcase/syscalls/ltp.syscalls.kill07.sh | 41 --------------- testcase/syscalls/ltp.syscalls.kill09.sh | 41 --------------- testcase/syscalls/ltp.syscalls.link01.sh | 41 --------------- testcase/syscalls/ltp.syscalls.lstat01A.sh | 41 --------------- testcase/syscalls/ltp.syscalls.lstat01A_64.sh | 41 --------------- .../syscalls/ltp.syscalls.modify_ldt03.sh | 41 --------------- testcase/syscalls/ltp.syscalls.munmap02.sh | 41 --------------- testcase/syscalls/ltp.syscalls.open01A.sh | 41 --------------- testcase/syscalls/ltp.syscalls.pause03.sh | 41 --------------- testcase/syscalls/ltp.syscalls.prctl04.sh | 41 --------------- testcase/syscalls/ltp.syscalls.qmm01.sh | 41 --------------- testcase/syscalls/ltp.syscalls.readlink01A.sh | 41 --------------- testcase/syscalls/ltp.syscalls.rename01A.sh | 41 --------------- testcase/syscalls/ltp.syscalls.rmdir03A.sh | 41 --------------- testcase/syscalls/ltp.syscalls.symlink01.sh | 41 --------------- testcase/syscalls/ltp.syscalls.unlink01.sh | 41 --------------- 35 files changed, 1447 deletions(-) delete mode 100755 testcase/commands/ltp.commands.logrotate_sh.sh delete mode 100755 testcase/ipc/ltp.ipc.pipeio_1.sh delete mode 100755 testcase/ipc/ltp.ipc.pipeio_3.sh delete mode 100755 testcase/ipc/ltp.ipc.pipeio_4.sh delete mode 100755 testcase/ipc/ltp.ipc.pipeio_5.sh delete mode 100755 testcase/ipc/ltp.ipc.pipeio_6.sh delete mode 100755 testcase/ipc/ltp.ipc.pipeio_8.sh delete mode 100755 testcase/mm/ltp.mm.mm01.sh delete mode 100755 testcase/mm/ltp.mm.mm02.sh delete mode 100755 testcase/mm/ltp.mm.mmap10_2.sh delete mode 100755 testcase/mm/ltp.mm.mmap10_3.sh delete mode 100755 testcase/mm/ltp.mm.mmap10_4.sh delete mode 100755 testcase/mm/ltp.mm.shmt06.sh delete mode 100755 testcase/net.tcp_cmds/ltp.net.tcp_cmds.ftp.sh delete mode 100755 testcase/smoketest/ltp.smoketest.rename01A.sh delete mode 100755 testcase/smoketest/ltp.smoketest.symlink01.sh delete mode 100755 testcase/smoketest/ltp.smoketest.utime07.sh delete mode 100755 testcase/syscalls/ltp.syscalls.chdir01A.sh delete mode 100755 testcase/syscalls/ltp.syscalls.chmod01A.sh delete mode 100755 testcase/syscalls/ltp.syscalls.kill07.sh delete mode 100755 testcase/syscalls/ltp.syscalls.kill09.sh delete mode 100755 testcase/syscalls/ltp.syscalls.link01.sh delete mode 100755 testcase/syscalls/ltp.syscalls.lstat01A.sh delete mode 100755 testcase/syscalls/ltp.syscalls.lstat01A_64.sh delete mode 100755 testcase/syscalls/ltp.syscalls.modify_ldt03.sh delete mode 100755 testcase/syscalls/ltp.syscalls.munmap02.sh delete mode 100755 testcase/syscalls/ltp.syscalls.open01A.sh delete mode 100755 testcase/syscalls/ltp.syscalls.pause03.sh delete mode 100755 testcase/syscalls/ltp.syscalls.prctl04.sh delete mode 100755 testcase/syscalls/ltp.syscalls.qmm01.sh delete mode 100755 testcase/syscalls/ltp.syscalls.readlink01A.sh delete mode 100755 testcase/syscalls/ltp.syscalls.rename01A.sh delete mode 100755 testcase/syscalls/ltp.syscalls.rmdir03A.sh delete mode 100755 testcase/syscalls/ltp.syscalls.symlink01.sh delete mode 100755 testcase/syscalls/ltp.syscalls.unlink01.sh diff --git a/testcase/commands/ltp.commands.logrotate_sh.sh b/testcase/commands/ltp.commands.logrotate_sh.sh deleted file mode 100755 index f6a403e..0000000 --- a/testcase/commands/ltp.commands.logrotate_sh.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-212947-765514747 -# @用例名称: ltp.commands.logrotate_sh -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.commands.logrotate_sh - # @预期结果:1: 用例返回0 - ltp_run_testcase commands logrotate_sh - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/ipc/ltp.ipc.pipeio_1.sh b/testcase/ipc/ltp.ipc.pipeio_1.sh deleted file mode 100755 index 37e2086..0000000 --- a/testcase/ipc/ltp.ipc.pipeio_1.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-212955-879124844 -# @用例名称: ltp.ipc.pipeio_1 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.ipc.pipeio_1 - # @预期结果:1: 用例返回0 - ltp_run_testcase ipc pipeio_1 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/ipc/ltp.ipc.pipeio_3.sh b/testcase/ipc/ltp.ipc.pipeio_3.sh deleted file mode 100755 index e1bd43f..0000000 --- a/testcase/ipc/ltp.ipc.pipeio_3.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-212955-893927236 -# @用例名称: ltp.ipc.pipeio_3 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.ipc.pipeio_3 - # @预期结果:1: 用例返回0 - ltp_run_testcase ipc pipeio_3 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/ipc/ltp.ipc.pipeio_4.sh b/testcase/ipc/ltp.ipc.pipeio_4.sh deleted file mode 100755 index 085ded5..0000000 --- a/testcase/ipc/ltp.ipc.pipeio_4.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-212955-904547332 -# @用例名称: ltp.ipc.pipeio_4 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.ipc.pipeio_4 - # @预期结果:1: 用例返回0 - ltp_run_testcase ipc pipeio_4 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/ipc/ltp.ipc.pipeio_5.sh b/testcase/ipc/ltp.ipc.pipeio_5.sh deleted file mode 100755 index 03f4832..0000000 --- a/testcase/ipc/ltp.ipc.pipeio_5.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-212955-915119648 -# @用例名称: ltp.ipc.pipeio_5 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.ipc.pipeio_5 - # @预期结果:1: 用例返回0 - ltp_run_testcase ipc pipeio_5 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/ipc/ltp.ipc.pipeio_6.sh b/testcase/ipc/ltp.ipc.pipeio_6.sh deleted file mode 100755 index 9bec961..0000000 --- a/testcase/ipc/ltp.ipc.pipeio_6.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-212955-925739233 -# @用例名称: ltp.ipc.pipeio_6 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.ipc.pipeio_6 - # @预期结果:1: 用例返回0 - ltp_run_testcase ipc pipeio_6 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/ipc/ltp.ipc.pipeio_8.sh b/testcase/ipc/ltp.ipc.pipeio_8.sh deleted file mode 100755 index 0482732..0000000 --- a/testcase/ipc/ltp.ipc.pipeio_8.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-212955-940376326 -# @用例名称: ltp.ipc.pipeio_8 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.ipc.pipeio_8 - # @预期结果:1: 用例返回0 - ltp_run_testcase ipc pipeio_8 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/mm/ltp.mm.mm01.sh b/testcase/mm/ltp.mm.mm01.sh deleted file mode 100755 index e994d3c..0000000 --- a/testcase/mm/ltp.mm.mm01.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213000-423089635 -# @用例名称: ltp.mm.mm01 -# @用例级别: 0 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.mm.mm01 - # @预期结果:1: 用例返回0 - ltp_run_testcase mm mm01 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/mm/ltp.mm.mm02.sh b/testcase/mm/ltp.mm.mm02.sh deleted file mode 100755 index ccdbdc6..0000000 --- a/testcase/mm/ltp.mm.mm02.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213000-435066689 -# @用例名称: ltp.mm.mm02 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.mm.mm02 - # @预期结果:1: 用例返回0 - ltp_run_testcase mm mm02 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/mm/ltp.mm.mmap10_2.sh b/testcase/mm/ltp.mm.mmap10_2.sh deleted file mode 100755 index d4a2c62..0000000 --- a/testcase/mm/ltp.mm.mmap10_2.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213000-771211136 -# @用例名称: ltp.mm.mmap10_2 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.mm.mmap10_2 - # @预期结果:1: 用例返回0 - ltp_run_testcase mm mmap10_2 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/mm/ltp.mm.mmap10_3.sh b/testcase/mm/ltp.mm.mmap10_3.sh deleted file mode 100755 index b983cb1..0000000 --- a/testcase/mm/ltp.mm.mmap10_3.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213000-779856887 -# @用例名称: ltp.mm.mmap10_3 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.mm.mmap10_3 - # @预期结果:1: 用例返回0 - ltp_run_testcase mm mmap10_3 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/mm/ltp.mm.mmap10_4.sh b/testcase/mm/ltp.mm.mmap10_4.sh deleted file mode 100755 index fcdeff1..0000000 --- a/testcase/mm/ltp.mm.mmap10_4.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213000-788390167 -# @用例名称: ltp.mm.mmap10_4 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.mm.mmap10_4 - # @预期结果:1: 用例返回0 - ltp_run_testcase mm mmap10_4 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/mm/ltp.mm.shmt06.sh b/testcase/mm/ltp.mm.shmt06.sh deleted file mode 100755 index 568ecbb..0000000 --- a/testcase/mm/ltp.mm.shmt06.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213000-596924437 -# @用例名称: ltp.mm.shmt06 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.mm.shmt06 - # @预期结果:1: 用例返回0 - ltp_run_testcase mm shmt06 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ftp.sh b/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ftp.sh deleted file mode 100755 index 684274f..0000000 --- a/testcase/net.tcp_cmds/ltp.net.tcp_cmds.ftp.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213009-200190738 -# @用例名称: ltp.net.tcp_cmds.ftp -# @用例级别: 4 -# @用例标签: 待分析 -# @超时时间: 180 -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.net.tcp_cmds.ftp - # @预期结果:1: 用例返回0 - ltp_run_testcase net.tcp_cmds ftp - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.rename01A.sh b/testcase/smoketest/ltp.smoketest.rename01A.sh deleted file mode 100755 index 755283b..0000000 --- a/testcase/smoketest/ltp.smoketest.rename01A.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213011-674150180 -# @用例名称: ltp.smoketest.rename01A -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.smoketest.rename01A - # @预期结果:1: 用例返回0 - ltp_run_testcase smoketest rename01A - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.symlink01.sh b/testcase/smoketest/ltp.smoketest.symlink01.sh deleted file mode 100755 index 0bc052b..0000000 --- a/testcase/smoketest/ltp.smoketest.symlink01.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213011-648146584 -# @用例名称: ltp.smoketest.symlink01 -# @用例级别: 0 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.smoketest.symlink01 - # @预期结果:1: 用例返回0 - ltp_run_testcase smoketest symlink01 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/smoketest/ltp.smoketest.utime07.sh b/testcase/smoketest/ltp.smoketest.utime07.sh deleted file mode 100755 index f6dd4bb..0000000 --- a/testcase/smoketest/ltp.smoketest.utime07.sh +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20240719-172837-722644026 -# @用例名称: ltp.smoketest.utime07 -# @用例级别: 3 -# @用例标签: -# @扩展属性: -# @用例类型: 功能测试 -# @自动化: 1 -# @超时时间: 0 -# @用例描述: TODO: 简要描述用例测试的内容 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" - while [ "$TST_TS_TOPDIR" != "/" ]; do - [ -f "${TST_TS_TOPDIR}/common/lib/common.sh" ] && break - TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" - done - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -g_tmpdir="$(mktemp -d)" - -tc_setup() { - msg "this is tc_setup" - - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.smoketest.utime07 - # @预期结果:1: 用例返回0 - ltp_run_testcase smoketest utime07 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - rm -rfv "$g_tmpdir" || return 1 - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chdir01A.sh b/testcase/syscalls/ltp.syscalls.chdir01A.sh deleted file mode 100755 index fe28221..0000000 --- a/testcase/syscalls/ltp.syscalls.chdir01A.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213012-144534188 -# @用例名称: ltp.syscalls.chdir01A -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.chdir01A - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls chdir01A - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.chmod01A.sh b/testcase/syscalls/ltp.syscalls.chmod01A.sh deleted file mode 100755 index ea84450..0000000 --- a/testcase/syscalls/ltp.syscalls.chmod01A.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213012-172377536 -# @用例名称: ltp.syscalls.chmod01A -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.chmod01A - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls chmod01A - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.kill07.sh b/testcase/syscalls/ltp.syscalls.kill07.sh deleted file mode 100755 index 002a345..0000000 --- a/testcase/syscalls/ltp.syscalls.kill07.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213016-619174237 -# @用例名称: ltp.syscalls.kill07 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.kill07 - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls kill07 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.kill09.sh b/testcase/syscalls/ltp.syscalls.kill09.sh deleted file mode 100755 index b0e6567..0000000 --- a/testcase/syscalls/ltp.syscalls.kill09.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213016-636428518 -# @用例名称: ltp.syscalls.kill09 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.kill09 - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls kill09 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.link01.sh b/testcase/syscalls/ltp.syscalls.link01.sh deleted file mode 100755 index bfaa82c..0000000 --- a/testcase/syscalls/ltp.syscalls.link01.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213016-754572876 -# @用例名称: ltp.syscalls.link01 -# @用例级别: 0 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.link01 - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls link01 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lstat01A.sh b/testcase/syscalls/ltp.syscalls.lstat01A.sh deleted file mode 100755 index f7d2ea4..0000000 --- a/testcase/syscalls/ltp.syscalls.lstat01A.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213016-973917832 -# @用例名称: ltp.syscalls.lstat01A -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.lstat01A - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls lstat01A - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.lstat01A_64.sh b/testcase/syscalls/ltp.syscalls.lstat01A_64.sh deleted file mode 100755 index 4490671..0000000 --- a/testcase/syscalls/ltp.syscalls.lstat01A_64.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213016-982423180 -# @用例名称: ltp.syscalls.lstat01A_64 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.lstat01A_64 - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls lstat01A_64 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.modify_ldt03.sh b/testcase/syscalls/ltp.syscalls.modify_ldt03.sh deleted file mode 100755 index 115c830..0000000 --- a/testcase/syscalls/ltp.syscalls.modify_ldt03.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213017-607313085 -# @用例名称: ltp.syscalls.modify_ldt03 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.modify_ldt03 - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls modify_ldt03 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.munmap02.sh b/testcase/syscalls/ltp.syscalls.munmap02.sh deleted file mode 100755 index f83258b..0000000 --- a/testcase/syscalls/ltp.syscalls.munmap02.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213018-266818905 -# @用例名称: ltp.syscalls.munmap02 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.munmap02 - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls munmap02 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.open01A.sh b/testcase/syscalls/ltp.syscalls.open01A.sh deleted file mode 100755 index b5af261..0000000 --- a/testcase/syscalls/ltp.syscalls.open01A.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213018-400228392 -# @用例名称: ltp.syscalls.open01A -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.open01A - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls open01A - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.pause03.sh b/testcase/syscalls/ltp.syscalls.pause03.sh deleted file mode 100755 index 719dd76..0000000 --- a/testcase/syscalls/ltp.syscalls.pause03.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213018-764612368 -# @用例名称: ltp.syscalls.pause03 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.pause03 - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls pause03 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.prctl04.sh b/testcase/syscalls/ltp.syscalls.prctl04.sh deleted file mode 100755 index 49c24d7..0000000 --- a/testcase/syscalls/ltp.syscalls.prctl04.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213019-065659730 -# @用例名称: ltp.syscalls.prctl04 -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.prctl04 - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls prctl04 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.qmm01.sh b/testcase/syscalls/ltp.syscalls.qmm01.sh deleted file mode 100755 index 656e41f..0000000 --- a/testcase/syscalls/ltp.syscalls.qmm01.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213017-431728637 -# @用例名称: ltp.syscalls.qmm01 -# @用例级别: 0 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.qmm01 - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls qmm01 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.readlink01A.sh b/testcase/syscalls/ltp.syscalls.readlink01A.sh deleted file mode 100755 index 5ac942e..0000000 --- a/testcase/syscalls/ltp.syscalls.readlink01A.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213019-814798639 -# @用例名称: ltp.syscalls.readlink01A -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.readlink01A - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls readlink01A - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rename01A.sh b/testcase/syscalls/ltp.syscalls.rename01A.sh deleted file mode 100755 index 25334ee..0000000 --- a/testcase/syscalls/ltp.syscalls.rename01A.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213020-025887834 -# @用例名称: ltp.syscalls.rename01A -# @用例级别: 0 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.rename01A - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls rename01A - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.rmdir03A.sh b/testcase/syscalls/ltp.syscalls.rmdir03A.sh deleted file mode 100755 index 0d42f96..0000000 --- a/testcase/syscalls/ltp.syscalls.rmdir03A.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213020-255117969 -# @用例名称: ltp.syscalls.rmdir03A -# @用例级别: 1 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.rmdir03A - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls rmdir03A - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.symlink01.sh b/testcase/syscalls/ltp.syscalls.symlink01.sh deleted file mode 100755 index 4e11233..0000000 --- a/testcase/syscalls/ltp.syscalls.symlink01.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213022-936001692 -# @用例名称: ltp.syscalls.symlink01 -# @用例级别: 0 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.symlink01 - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls symlink01 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### diff --git a/testcase/syscalls/ltp.syscalls.unlink01.sh b/testcase/syscalls/ltp.syscalls.unlink01.sh deleted file mode 100755 index 74a017b..0000000 --- a/testcase/syscalls/ltp.syscalls.unlink01.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -############################################################################### -# @用例ID: 20220630-213023-618357024 -# @用例名称: ltp.syscalls.unlink01 -# @用例级别: 0 -# @用例标签: -# @用例类型: 功能测试 -# @自动化: 1 -############################################################################### -[ -z "$TST_TS_TOPDIR" ] && { - TST_TS_TOPDIR="$(realpath "$(dirname "$0")/../..")" - export TST_TS_TOPDIR -} -source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 -############################################################################### - -tc_setup() { - msg "this is tc_setup" - # @预置条件: - return 0 -} - -do_test() { - msg "this is do_test" - - # @测试步骤:1: 执行用例ltp.syscalls.unlink01 - # @预期结果:1: 用例返回0 - ltp_run_testcase syscalls unlink01 - assert_true [ $? -eq 0 ] - - return 0 -} - -tc_teardown() { - msg "this is tc_teardown" - return 0 -} - -############################################################################### -tst_main "$@" -############################################################################### -- Gitee From ad06ef833e75edb6960194c181eee7a2a0e43425 Mon Sep 17 00:00:00 2001 From: propelluo Date: Tue, 22 Jul 2025 11:48:26 +0800 Subject: [PATCH 9/9] update README.md Signed-off-by: propelluo --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 32b2b0c..01640b5 100644 --- a/README.md +++ b/README.md @@ -1 +1,11 @@ -# 自研测试套 \ No newline at end of file +# 自研测试套 + +#### 安装运行路径 +``` +tst-ltp/ +├── ltp.test/ -- 执行测试用例后,测试过程日志保存在此路径 +│   └── run/ +├── tst-open-ltp/ +│   ├── ltp/ +│   ├── ltp.install/ -- 编译后的文件安装在此路径 +``` \ No newline at end of file -- Gitee